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
FALSE
Compilation Error
Run-time Error