Edit Game
Polymorphism in Java
 Delete

Use commas to add multiple tags

 Private  Unlisted  Public



 Save

Delimiter between question and answer:

Tips:

  • No column headers.
  • Each line maps to a question.
  • If the delimiter is used in a question, the question should be surrounded by double quotes: "My, question","My, answer"
  • The first answer in the multiple choice question must be the correct answer.






 Save   7  Close
True or False: To override a superclass method in a subclass, the subclass method must use the same method name and the same parameter types..
True
True or False: To override a superclass method in a subclass, the subclass method must use a different method name.
False
What is polymorphism in object-oriented programming?
When a class implements one or more interfaces and may also extend a superclass.
What is required to use polymorphism?
inheritance
Polymorphism supports _______________, which is several methods with the same name but different arguments.
overloading
True or False: Polymorphism is when one class inherits from another class.
False
True or False: Polymorphism is when objects of different classes can respond to the same message.
True