9. (A) Method call I works because Class3 inherits all the methods of Class2. Method call II fails because Class2, the superclass, does not inherit the methods of Class3, its subclass. Method call III uses a parameter that fails the is-a test: ob2 is not a Class3, which the parameter requires.