📚 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”); }

  1. TRUE
  2. true
  3. FALSE
  4. Compilation Error
  5. Run time Error