Question: Language/Type: Java parameters return The following console program uses parameters and produces four lines of output. What are they? public class Parameter MysteryExam6 { public

Language/Type: Java parameters return The following console program uses parameters and produces four lines of output. What are they? public class Parameter MysteryExam6 { public static void main(String[] args) { String scarlett = "mustard"; String suspect = "peacock"; String lounge = "ballroom"; String pipe "study"; String dagger = "pipe"; String weapon = "dagger"; clue (weapon, suspect, pipe); clue (scarlett, pipe, suspect); dagger = clue (dagger, "lounge", scarlett); clue(dagger, lounge, "dagger"); } public static String clue (String suspect, String room, String weapon) { System.out.println(room + " in the " + weapon + " with the " + suspect); return room; } }
Step by Step Solution
There are 3 Steps involved in it
Lets analyze the code line by line to identify the four lines of output clueweapo... View full answer
Get step-by-step solutions from verified subject matter experts
