Consider the following class definition.
public class AnimalPrinter
public void printDog()
System.out.println("dog");
public void printCat()
System.out.println("cat");
/* constructors not shown */
The method myMethod appears in a class other than AnimalPrinter. The method is intended to produce the following output.
dog
cat
Assume that an AnimalPrinter object myPrinter has been properly declared and initialized inside myMethod. Which of the following code segments, if located in myMethod, will produce the intended output?
1) AnimalPrinter myPrinter = new AnimalPrinter();
myPrinter.printDog();
myPrinter.printCat();
2) AnimalPrinter myPrinter = new AnimalPrinter();
myPrinter.printDog();
3) AnimalPrinter myPrinter = new AnimalPrinter();
myPrinter.printCat();
4) printDog();
printCat();