81. Which method in Console enables to read individual inputs directly from the keyboard in a non line buffered manner?
82. Select the objects of the class TextWriter which is/are not used to perform the write operations to the console?
83. Choose the methods provided by Console.Out and Console.Error?
84. What will be the output of the following C# code snippet?
static void Main(string[] args)
{
string h = "i lovelife";
string h1 = new string(h.Reverse().ToArray());
Console.WriteLine(h1);
Console.ReadLine();
}
static void Main(string[] args)
{
string h = "i lovelife";
string h1 = new string(h.Reverse().ToArray());
Console.WriteLine(h1);
Console.ReadLine();
}
85. From which of these classes, the character based output stream class Stream Writer is derived?
86. Which among the following is used for storage of memory aspects?
87. Select the correct methodS provided by Console.In?
88. Which of the given stream methods provide access to the input console in C#.NET?
89. Select the namespace/namespaces which consists of methods like Length(), Indexer(), Append() for manipulating the strings.
90. The number of input methods defined by the stream method Console.In in C#.NET is?
Read More Section(File Handling and Input Output in C Sharp)
Each Section contains maximum 100 MCQs question on File Handling and Input Output in C Sharp. To get more questions visit other sections.