Vidyalelo
C Programming · Q91

Control Structures

Programming · C Programming · question 91

Q91

The C statement ""if (a == 1 || b == 2) "" can be re-written as . . . . . . . .

A.
if (a == 1)
if (b == 2){}
B.
if (a == 1){}
if (b == 2){}
C.
if (a == 1){}
else if (b == 2){}
D.
none of the mentioned
Answer

Answer: Option D

Solution

Answer: Option D
No explanation is given for this question Let's Discuss on Board