int a = 3, b = 4; int x = a>b?a:b; System.out.println("x: " + x);
find the output
Answers
Answered by
0
Output:
x: 4
Explanation:
a>b evaluates false.
So, x= b=4
Similar questions