⏱00:00Question #1What will be the output of the following program? public class Program { public static void Main() { Person per = new Person(); Console.WriteLine(per.Id); } } public class Person { public int Id; } A""B0CCompile-time errorDRuntime error PreviousNext