Q. What is the output of the Java program?
Code:int marks=29;
if(marks > 29);
System.out.print("PASS ");
System.out.println("RANK");
β
Correct Answer: (C)
PASS RANK
int marks=29;
if(marks > 29);
System.out.print("PASS ");
System.out.println("RANK");
You must be Logged in to update hint/solution