"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. Top of Form sentence(he, she, it); whom and who like it sentence(she, he, who); it and him like whom sentence(who…
Words 618 - Pages 3