G Show the code that you write to answer each question. (Copy & paste to this document). Submit .java files along with the word document. Suppose that Fruit , Apple , Orange , GoldenDelicious , and McIntosh are defined in the following inheritance hierarchy: Assume that the following code is given: Fruit fruit = new GoldenDelicious(); Orange orange = new Orange(); Answer the following questions: a. Is fruit instanceof Fruit ? b. Is fruit instanceof Orange ? c. Is fruit instanceof Apple ? d. Is fruit instanceof GoldenDelicious ? e. Is fruit instanceof McIntosh ? f. Is orange instanceof Orange ? g. Is orange instanceof Fruit ? h. Is orange instanceof Apple ? i. Suppose the method makeAppleCider is defined in the Apple class. Can fruit invoke this method? Can orange invoke this method?

Solved
Show answers

Ask an AI advisor a question