Question: What is the missing keyword in the program below? public class Batman { public static int minFunction(int n1, int n2) { int min; if (n1

What is the missing keyword in the program below?

public class Batman {

public static int minFunction(int n1, int n2) {

int min;

if (n1 > n2)

min = n2;

else

min = n1;

return min; //This is the value that will be returned from the minFunction method.

//The value after the keyword return must match the return type from the method header. Ours is OK because they are both int.

} // end the public method named minFunction

} // end the public class of Batman

public class MyClass {

public static void main(String args[]) {

Batman Bruce = ___ Batman();{ <------ missing keyword?

int BatmanRounds = Batman.minFunction(3,4); {

System.out.println(BatmanRounds);

}//end the minFunction

}//end the Bruce Batman object

}//end main method

}// end of MyClass class

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!