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 mentionedThis question was posed to me in unit test.My question is taken from Introduction of Console I/O Operations in division Console I/O Operations and Stream Classes of C# |
|
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. |
|