Skip to main content
JourneyUncommon
Toggle theme
Sign In
Sign Up
Toggle theme
Home
/
Practice
/
C#
easy
C#
nullable types
Single-choice MCQ
For `int? x = 5;`, what does `x.GetType()` return?
int? x = 5; Console.WriteLine(x.GetType());