0
0
The concept of multiple inheritance is implemented in Java byI. Extending two or more classes.II. Extending one class and implementing one or more interfaces.III. Implementing two or more interfaces.
The concept of multiple inheritance is implemented in Java byI. 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). (II) and (III)
C). (II) and (III)
D). Only (I)
E). Only (III)
This Question has 1 answers.
(II) and (III)
Similar Questions
- A and B can complete a piece of work in 80 and 120 days respectively. They together start the work but A left after 20 days. After another 12 days C joined B and now they complete the work in 28 more days. In how many days C can complete the work, working
- Train A takes 45 minutes more than train B to travel a distance of 450 km. Due to engine trouble speed of train B falls by a quarter, so it takes 30 minutes more than Train A to complete the same journey. What is the speed of Train A (in km/hr)?
- The distance between two places, A and B, is 300 km. Two riders, on scooters start simultaneously from A and B towards each other. The distance between them after 2.5 hrs is 25 km. If the speed of one scooter of one scooter is 10 km/hr more than the other
- Two trains crosses each other in 14 sec when they are moving in opposite direction, and when they are moving in same direction they crosses each other in 3 min 2 sec. Find the speed of the faster train by what percent more than the speed of the slower tra
- Suppose A is an abstract class, B is a concrete subclass of A, and both A and B have a default constructor. Which of the following is correct?1. A a = new A();2. A a = new B();3. B b = new A();4. B b = new B();