What does the following code depicts?
i. System.Nullable count;
ii. bool? done;
i. System.Nullable count;
ii. bool? done;
A. Code i declares the objects of nullable of type Nullable
B. Code ii declares a nullable type in much shorter and in more commonly used way using '?'
C. Both Code i declares the objects of nullable of type Nullable
D. None of the mentioned
Answer: Option C
Join The Discussion