Choose The Statement Which Defines The Nullable Type Correctly #856
Choose the statement which defines the Nullable type Correctly:
This multiple choice question (MCQ) is related to the book/course gs gs108 CSharp. It can also be found in gs gs108 Miscellaneous Topics - Pointers Operation - Quiz No.2.
Choose the statement which defines the Nullable type Correctly:
A special version of a value type that is represented by a structure
A nullable type can also store the value null
Nullable types are objects of System.Nullable, where T must be a non nullable value type
All of the mentioned