📚 Practice Mode
JavaScript and Java Fundamentals Quiz
Learn at your own pace with hints and detailed explanations
1 / 20
Multiple Choice
What is the output of following block of program ? boolean var = false; if(var = true) { System.out.println(“TRUE”); } else { System.out.println(“FALSE”); }
- TRUE
- true
- FALSE
- Compilation Error
- Run time Error