//What is the output of the short program below? Explain your answer.
using System;
public class Program
{
static String location;
static DateTime time;
public static void Main() {
//Console.WriteLine(location == null ? "location is null" : location);
//Console.WriteLine(time == null ? "time is null" : time.ToString());
}