Inle Choices
(Choose 1 answer)
delegate void D1():class Program
{
static void Print() { Console.Write("A"):
}
static void Show()
{
}
Console.Write("B");
static void Main(string[] args)
{
D1 d = new D1(Print):
d += new D1(Show):d():
}
}
The output will be:
A. BA
B. B
C. A
D. AB
Q: 24