Parameter Mystery
Category: Parameter Mystery
Author: Benson Limketkai and Marty Stepp
Book Chapter: 3.1
Problem: Parameter Mystery
At the bottom of the page, write the output produced by the following program, as it would appear on the console:
public class ParameterMystery {
public static void main(String[] args) {
String butters = "kenny";
String friends = "butters";
String kenny = "friends";
String kyle = "stan";
String ike = "cartman";
stotch(kenny, friends, butters);
stotch(ike, friends, kyle);
stotch(kyle, ike, "ike");
stotch(friends, "kyle", kenny);
}
public static void stotch(String kenny, String butters, String friends) {
System.out.println(butters + " is " + friends + " with " + kenny);
}
}
1) stotch(kenny, friends, butters);
2) stotch(ike, friends, kyle);
3) stotch(kyle, ike, "ike");
4) stotch(friends, "kyle", kenny);