PROBLEM: What output is produced by the following program? public class ParameterMystery { public static void main(String[] args) { String major = "fred"; String fred = "computer"; String computer = "department"; String department = "student"; String student = "major"; sentence(major, fred, department); sentence(student, computer, fred); sentence("fred", "honor", computer); sentence("foo", "bar", "baz"); } public static void sentence(String major, String fred, String foo) { System.out.println("Many a " + foo + " in the " + fred + " of " + major); } } SOLUTION: Many a student in the computer of fred Many a computer in the department of major Many a department in the honor of fred Many a baz in the bar of foo