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. q = x<y ? 0 : 1;
_____ if (x<y)q = 0;elseq = 1;
_____ if (x<y)q = a + b;elseq = x * 2;
_____ if (x<y)q = x * 2;elseq = 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.