‹ Back to the paper
The keyword that allows multi-level inheritance in Java programming is:
- (a)implements
- (b)super
- (c)extends
- (d)this
Answer
Answer
AICorrect option: (c)
Answer: (c) extends
A class inherits from another class with extends; a chain such as class B extends A and class C extends B gives multi-level inheritance.
From ISC 2023 Computer Science Paper 1, question 1(v).