What does the following code depicts?

i. System.Nullable count; ii. bool? done; a) Code i declares the objects of nullable of type Nullable<T> defined in the System namespace 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<T> defined in the … Read more