

MCQOPTIONS
Saved Bookmarks
1. |
Which of the following statements are correct about the C#.NET code snippet given below? if (age > 18 || no < 11) a = 25;The condition no < 11 will get evaluated only if age > 18 evaluates to False. The condition no < 11 will get evaluated if age > 18 evaluates to True. The statement a = 25 will get evaluated if any one one of the two conditions is True. || is known as a short circuiting logical operator. The statement a = 25 will get evaluated only if both the conditions are True. |
A. | 1, 4, 5 |
B. | 2, 4 |
C. | 1, 3, 4 |
D. | 2, 3, 5 |
E. | None of these |
Answer» D. 2, 3, 5 | |