杭州天丽科技有限企业 JAVA 高级程序员选择题 1: 1
What will be the result of executing the following code
boolean a = true; 3
boolean b = false; 4
boolean c = true; 5
if (a == true) 6
if (b == true) 7
if (c == true) System
println("Some things are true in this world"); 8
else System
println("Nothing is true in this world
else if (a && (b = c)) System
println("It's too confusing to tell what is true and what is false"); 10
else System
println("Hey this won't compile"); 11
Choices: A
The code won't compile B
"Some things are true in this world" will be printed C
"Hey this won't compile" will be printed D
None of these 2: Which of the following statements are true
The automatic garbage collection of the JVM prevents programs from ever running out of m