Analyze the if-else condition in this Java code:
int score = 76;
if (score >= 75) {
System.out.println("Pass");
} else {
System.out.println("Fail");
}
Analyze the if-else condition in this Java code:
int score = 76;
if (score >= 75) {
System.out.println("Pass");
} else {
System.out.println("Fail");
}