InterviewSolution
Saved Bookmarks
| 1. |
Select the correct methodS provided by Console.In?(a) Read(), ReadLine()(b) ReadKey(), ReadLine()(c) Read(), ReadLine(), ReadKey()(d) ReadKey(), ReadLine() |
|
Answer» Right option is (c) Read(), ReadLine(), ReadKey() For explanation: The two method Read() and ReadLine() available in .NET Framework 1.0 and Third method ReadKey() was added by .NET Framework 2.0. |
|