Java SE 8 Programmer 1Z0–808 Practice Full Test 1

© examsiri.com
Question : 13 of 84
 
Marks: +1, -0
Given the code fragment: int x = 100;
int a = x++;
int b = ++x;
int c = x++;
int d = (a < b) ? (a < c) ? a: ( b < c ) ? b: c;
System.out.println(d);
What is the result?
Go to Question: