Computer Science, asked by japagangadhar7027, 1 year ago

The concept of multiple inheritance is implemented in Java by
I. Extending two or more classes.
II. Extending one class and implementing one or more interfaces.
III. Implementing two or more interfaces.
A.Only (II)
B.(I) and (II)
C.(II) and (III)
D.Only (I)

Answers

Answered by Saykasayyed
6
correct answer is option:- C
this is ur answer...☺️☺️

u need any further help ask me...okk,!!!
Answered by letmeanswer12
0

"The concept of multiple inheritance is implemented in Java by  (C) Extending one class and implementing one or more interfaces and Implementing two or more interfaces"

More about Multipla Inheritance:

               Object Oriented Programming supply a user the feature of multiple inheritance, wherein a class can inherit the properties of more than a single parent class. In simple words, multiple inheritance means a class extending more than one class.

The programming language of java is unable to make use of this feature directly. It can be achieved indirectly through the utilization of interfaces.

Multiple inheritance of implementation is the capacity to inherit method definitions from multiple classes. Problems appear with this type of multiple inheritance, such as name conflicts and ambiguity.

Similar questions