InterviewSolution
Saved Bookmarks
| 1. |
Choose the object of TextReader class.(a) Console.In(b) Console.Out(c) Console.Error(d) None of the mentioned |
|
Answer» Correct choice is (a) Console.In The best I can explain: Console.In is an instance(object) of TextReader class and we can use the methods and properties defined by TextReader to invoke the object console.in. |
|