C# Variable MCQs

Question 11: What will be the output of the following program?

public static void Main()
{
    var str = null;
	Console.Write(str);
}