Question 1  of   14

What is the output of the program below? class Program { delegate bool D(double x); static void Main() { double num = 5.0; D[] rules = { x => x >= 0, x => x % 1==0, x => x % 2 ==0}; foreach (D validator in rules) { Console.Write($"{validator(num)} "); } } }

A. True
B. False
C. True True False
D. True False False