Java - Methods and Code Reusability
Given this method:
What will
public static String checkNumber(int n) {
if (n > 0) return "Positive";
else if (n < 0) return "Negative";
else return "Zero";
}What will
checkNumber(0) return?