Parameter Mystery
At the bottom of the page, write the output produced by the following program, as it would appear on the console.
(Though the program uses words related to arithmetic, the output does not necessarily follow the rules of addition.)
public class ParameterMystery {
public static void main(String[] args) {
String i = "j";
int j = -1;
int k = 2;
String x = "5";
int y = 7;
silly(k, i, j);
silly(y, x, k);
silly(k, "y", 4);
silly(j + 1, x + 1, j);
}
public static void silly(int k, String i, int j) {
System.out.println(j + " + " + k + " + " + i);
}
}
Correct Answer:
Verified
Unlock this Answer For Free Now!
View this answer and more for free by performing one of the following actions
Scan the QR code to install the App and get 2 free unlocks
Unlock quizzes for free by uploading documents