What is true about the following lines of code?
boolean b = false; int i = 90; System.out.println(i >= b);
Click to view the answer
d
The code will fail to compile; hence, it can't execute.
You can't compare incomparable types, such as a boolean value with a number.