System.out.println(name.toUpperCase() + " IS RIDING THE HORSE");
}
}
public class Test {
public static void main(String[] args) {
Animal horse = new Horse();
/*INSERT*/
}
}
Which of the following options, if used to replace /*INSERT*/, will compile successfully and on execution will print EMMA IS RIDING THE HORSE on to the console?