What will be the output of this ternary operation?
int a = 10, b = 20; int min = (a < b) ? a : b; System.out.println(min);
10
20
Compilation Error
Undefined Behavior
This question is part of this quiz :