JAVA Flow Control
What will be the output?public class Test{ public static void main(String[] args){ int x=10, y=0; if(x && y){ System.out.print("TRUE"); } else{ System.out.print("FALSE"); } }}

Runtime Error
FALSE
TRUE
Compilation Error

ANSWER DOWNLOAD EXAMIANS APP