InterviewSolution
Saved Bookmarks
| 1. |
Which of the given stream methods provide access to the output console by default in C#.NET?(a) Console.In(b) Console.Out(c) Console.Error(d) All of the mentioned |
|
Answer» Correct answer is (b) Console.Out The best I can explain: The standard output stream Console.Out sends output to the screen by default. |
|