Leave a Reply 7

Your email address will not be published. Required fields are marked *


mrtsilva

mrtsilva

Correct Answer: B
In the next line is missing the third argument
int d = (a < b) ? (a < c) ? a: (b <c)? b: c;
change it to somehing like ( I add :c at the end)
int d = (a < b) ? (a < c) ? a: (b <c)? b: c : c;

In this case it will be 100. Because will always print a.
a=100;
b=102;
c=102;
x=102;

Kanke

Kanke

Definitely B.

Javier Miranda

Javier Miranda

B se pierde el false del primero

Tomas

Tomas

Answer: B
Tested

Vendetta

Vendetta

Did exam MAY 17, 2017…This question was seen

Ans: B

Jessy

Jessy

B.Compilation fails