C# Delegate & Event MCQs

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

public delegate void Print(int value);

static void Main(string[] args)
{
    Print print = delegate(int val) { 
        Console.WriteLine("Value: {0}", val); 
    };

    print(50);
}

Question 17: Which of the following statement(s) are TRUE?