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
Quiz 13: Working with Files
Path 4
Access For Free
Share
All types
Filters
Study Flashcards
Practice Exam
Learn
Question 21
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 22
True/False
The File,FileInfo,Directory,and DirectoryInfo classes are considered utility classes.They normally work with stream objects,allowing you to manipulate files and directory structures.
Question 23
Multiple Choice
The ____ class has implementations for Write( ) and WriteLine( ) methods similar to the Console class methods.
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 ____.