logo Practice-It logo

BJP3 Self-Check 3.7: parameterMysteryWho

Author: Leslie Ferguson (on 2013/04/01)

Given the following program:

public class MysteryWho {
    public static void main(String[] args) {
        String whom = "her";
        String who = "him";
        String it = "who";
        String he = "it";
        String she = "whom";

        sentence(he, she, it);
        sentence(she, he, who);
        sentence(who, she, who);
        sentence(it, "stu", "boo");
        sentence(it, whom, who);
    }

    public static void sentence(String she, String who, String whom) {
        System.out.println(who + " and " + whom + " like " + she);
    }
}

Write the output of each of the following calls.

sentence(he, she, it);
sentence(she, he, who);
sentence(who, she, who);
sentence(it, "stu", "boo");
sentence(it, whom, who);

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.