C# Programming - Datatypes

Exercise : Datatypes - General Questions
  • Datatypes - General Questions
6.
Which of the following does not store a sign?
Short
Integer
Long
Byte
Single
Answer: Option
Explanation:
No answer description is available. Let's discuss.

7.
What is the size of a Decimal?
4 byte
8 byte
16 byte
32 byte
Answer: Option
Explanation:
No answer description is available. Let's discuss.

8.
What will be the output of the following code snippet when it is executed?
    int x = 1; 
    float y = 1.1f;
    short z = 1;
    Console.WriteLine((float) x + y * z - (x += (short) y));
0.1
1.0
1.1
11
Answer: Option
Explanation:
No answer description is available. Let's discuss.

9.

Which of the following statements is correct about the C#.NET code snippet given below?

short s1 = 20;
short s2 = 400;
int a;
a = s1 * s2;
A value 8000 will be assigned to a.
A negative value will be assigned to a.
During arithmetic if the result exceeds the high or low value of the range the value wraps around till the other side of the range.
An error is reported as widening conversion cannot takes place.
An overflow error will be reported since the result of the multiplication exceeds the range of a Short Integer.
Answer: Option
Explanation:
No answer description is available. Let's discuss.

10.
Which of the following is the correct size of a Decimal datatype?
8 Bytes
4 Bytes
10 Bytes
16 Bytes
None of the above.
Answer: Option
Explanation:
No answer description is available. Let's discuss.