Google News
logo
C# - Quiz(MCQ)
Which of the following is correct about nullable types in C#?
A)
You can assign true, false, or null in a Nullable variable.
B)
You can store any value from -2,147,483,648 to 2,147,483,647 or null in a Nullable variable.
C)
C# provides a special data types, the nullable types, to which you can assign normal range of values as well as null values.
D)
All of the Above.

Correct Answer :   All of the Above.

Advertisement