- A FALSE
- B TRUE
- C Compilation Error
- D Runtime Error
Java Programming Language MCQ Java Control Flow
⚠ Report ✓ Question Verified Copy Link
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");
}
}
}
Learn More MCQ Questions from Java Programming Language MCQ Java Control Flow