Services
Discover
Homeschooling
Ask a Question
Log in
Sign up
Filters
Done
Question type:
Essay
Multiple Choice
Short Answer
True False
Matching
Topic
Computing
Study Set
C# Programming From Problem Analysis to Program Design Study Set 1
Quiz 13: Working With Files
Path 4
Access For Free
Share
All types
Filters
Study Flashcards
Practice Exam
Learn
Question 21
Multiple Choice
The ____ class has implementations for Write( ) and WriteLine( ) methods similar to the Console class methods.
Question 22
True/False
To invoke File's Copy( ) method to make a copy of "source.txt", naming the new file "target.txt", you would write: File.Copy("source.txt", "target.txt"); because Copy is a static member of the File class.
Question 23
True/False
Instead of hard coding the actual filename and file path, you could prompt the user for the name of the file using subclasses of the FileDialog class.
Question 24
Multiple Choice
StreamWriter outputFile = new StreamWriter("someOutputFileName") ; StreamReader inputFile = new StreamReader("someInputFileName") ; The identifier that can be referenced in a WriteLine( ) method with the declaration above is ____.