Match the conditional expression with the if/else statement that performs the same operation.
A) q = x<y? a + b: x * 2;
B) q = x<y? x * 2: a + b;
C) x<y? q = 0: q = 1;
___ if (x<y)
q = 0;
else
q = 1;
___ if (x<y)
q = a + b;
else
q = x * 2;
___ if (x<y)
q = x * 2;
else
q = a + b;
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.