C# DataType MCQs

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

public static void Main()
{
	dynamic num = 100;
	
	num = "Hello World!!";
	Console.WriteLine( num.GetType().Name);
}

Question 42: What is the following type?

(int id, string fName, string lName) person = (1, "James", "Bond");