logo Practice-It logo

parameter mystery

Author: Eric Spishak (on 2010/12/28)

What output is produced by the following program?

public class Mystery {
    public static void main(String[] args) {
        String hear = "bad";
        String song = "good";
        String good = "hear";
        String walk = "talk";
        String talk = "feel";
        String feel = "walk";
        claim(feel, song, feel);
        claim(good, hear, song);
        claim(talk, "song", feel);
        claim("claim", talk, walk);
    }

    public static void claim(String hear, String good, String song) {
        System.out.println("to " + hear + " the " + song + " is " + good);
    }
}
claim(feel, song, feel);
claim(good, hear, song);
claim(talk, "song", feel);
claim("claim", talk, walk);

You must log in before you can solve this problem.


Log In

If you do not understand how to solve a problem or why your solution doesn't work, please contact your TA or instructor.
If something seems wrong with the site (errors, slow performance, incorrect problems/tests, etc.), please

Is there a problem? Contact a site administrator.