.NET Programming MCQs | Page - 3
Dear candidates you will find MCQ questions of .NET Programming here. Learn these questions and prepare yourself for coming examinations and interviews. You can check the right answer of any question by clicking on any option or by clicking view answer button.
M
Q. Type of Conversion in which compiler is unable to convert the datatype implicitly is ?
M
Q. Scope of variable is related to definition of variable as:
1. Region of code within which variable value is valid and hence can be accessed.
2. No, relation with region where variable is declared its value is valid in entire scope.
M
Q. What will be output of the following conversion ?
Code:
static void Main(string[] args) { char a = 'A'; string b = "a"; Console.WriteLine(Convert.ToInt32(a)); Console.WriteLine(Convert.ToInt32(Convert.Tochar(b))); Console.ReadLine(); }
M
Q. Which datatype should be more preferred for storing a simple number like 35 to improve execution speed of a program?
M
Q. Minimum and Maximum range of values supported by ‘float’ data type are ?
M
Q. Which does the solution explorer not display?
M
Q. Which sequence of char data types is listed from lowest to highest?
Jump to