C# DataType MCQs

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

public static void Main(string[] args)
{
    var x = "5";
    Console.Write(x.GetType());
}

Question 12: __________ is the process of converting a value type to the reference type.

Question 13: The following is an example of ________.

object val = 123;
int i = (int)val;

Question 14:  Which of the following symbol is used to display a string without using escape characters inside a string?

Question 15: Which of the following data type does not store a sign?