Discussion :: Control Instructions - c#
-
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 will be evaluated only if age > 18 evaluates to True.
- The statement a = 25 will get executed if any one condition is True.
- The condition no will be evaluated only if age > 18 evaluates to False.
- The statement a = 25 will get executed if both the conditions are True.
- && is known as a short circuiting logical operator.
Answer : Option C
Explanation :
No answer description available for this question.
Be The First To Comment