InterviewSolution
Saved Bookmarks
| 1. |
File class is ____________________________(a) An abstract of file representation only(b) An abstract of path names only(c) An abstract which can be used to represent path names or file(d) An abstract which can represent a file in any format |
|
Answer» Correct answer is (c) An abstract which can be used to represent path names or file Easy explanation - The File class is made to operate with the files. The file can be of any type. All the input and output operations that have to be performed on a file can be done using File class object. |
|