Which of the following statements are correct?
Which of the following does not store a sign?
Which of the following statements are correct about datatypes in C#.NET?
Which of the following statements are correct about data types?
Which of the following is the correct ways to set a value 3.14 in a variable pi such that it cannot be modified?
What is the size of a Decimal?
What will be the output of the following code snippet when it is executed?
int x =
float y = 1.1f;
short z = Console.WriteLine((float) x + y * z - (x += (short) y));Which of the following is the correct default value of a Boolean type?
Which of the following is an 8-byte Integer?
Which of the following statements are correct about data types?
Which of the following statements is correct about the C#.NET code snippet given below?
short s1 =short s2 =int a;
a = s1 * s2;Which of the following is NOT an Integer?
Which of the following are the correct way to initialise the variables i and j to a valueeach?
int i =int j = 10;
int i, j;
i =: j = 10;
int i =j = 10;
int i, j = 10;
int i = j = 10;
Which of the following is the correct size of a Decimal datatype?
Which of the following statements is correct?
Which of the following statement correctly assigns a value 33 to a variable c?
byte a =b =c;Which of the following are value types?