InterviewSolution
Saved Bookmarks
| 1. |
Choose the class on which all stream classes are defined?(a) System.IO.stream(b) Sytem.Input.stream(c) System.Output.stream(d) All of the mentioned |
|
Answer» Correct answer is (a) System.IO.stream The best explanation: The core stream class is System.IO.Stream. Stream represents a byte stream and is a base class for all other stream classes. It is also abstract, which means that you cannot instantiate a Stream object. Stream defines a set of standard stream operations. |
|