1statement ? true : false
2 ^ | ^ ^
3condition | (instruction)
4 | If the statement:
5 | is true | is false
6--------------------------------------------------------------------------------
7 Example:
8int i = 10;
9
10String out = i > 8 ? "Bigger than Eight!" : "Smaller than Eight!";
11System.out.println(out);
12