What is the output of the following code?

```
boolean even = false;
System.out.println((even ? "true" : "false"));
```
a. true
b. false
c. nothing
d. true false

b. false

Computer Science & Information Technology

You might also like to view...

What would the command sudo apt-get install screen -s do?

A) Install screen B. Download screen C. Simulate installing screen D. Remove screen

Computer Science & Information Technology

An identifier’s storage class

a) determines the period during which that identifier exists in memory b) determines whether an identifier in a multiple-source-file program is known only in the current source file or in any source file with proper definitions c) determines where the identifier can be referenced in a program (d) all of the above

Computer Science & Information Technology