Java OCA OCP Practice Question 1183

Question

Which of the following keywords is used to invoke a method in the parent class?

  • A. this
  • B. super
  • C. final
  • D. static


B.

Note

The super keyword is used to invoke a method or constructor in a parent class.




PreviousNext

Related