if (a > 10) if (b > 10) if (c > 10) result = 1; else if (b > 100) result = 2; elseresult = 3; else result = 4; else result = 5;
Using the above code segment, what is stored in result when a, b and c are equal to 200?
A. 1
B. 2
C. 3
D. 4
Answer: A
Computer Science & Information Technology