Q91
The C statement ""if (a == 1 || b == 2) "" can be re-written as . . . . . . . .
A.
if (a == 1)
if (b == 2){}
if (b == 2){}
B.
if (a == 1){}
if (b == 2){}
if (b == 2){}
C.
if (a == 1){}
else if (b == 2){}
else if (b == 2){}
D.
none of the mentioned
AnswerAnswer: Option D
Solution
Answer: Option D
No explanation is given for this question Let's Discuss on Board