CSharp
What is a nullable type in C# and how is it used?
A nullable type allows value types to hold null values. It's used with '?' (e.g., int? x = null) to represent an undefined or absent value.
2