Class A extends Class B but Class A also inherit Super Class
Object so it is multiple inheritence give reason in support of
your answer
Answers were Sorted based on User's Feedback
Answer / srinivas
class A extends class B so that class A points the object
of object class through class B object. there fore it will
be called as maltilevel inheritence but not multipul
inheritence.
| Is This Answer Correct ? | 10 Yes | 2 No |
Answer / sandhya reddy
For every class, Object class is the super class.
class A extends class B and at the same time class A is sub
class of object class and super class of class B. But class
B is only sub class of Class A. SO here MultiLevel
Inheritance is happening not multiple inheritance happen.
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / skpttanayak
How come classs A be super class of class B dear...Class b
is not the subclass here...but superclass.
| Is This Answer Correct ? | 0 Yes | 0 No |
Can we catch more than one exception in a single catch block?
How can we access some class in another class in java?
What java ide should I use?
What Is Resource Leak?
public class BatchTest { public static void main(String[] args) { Runtime run = Runtime.getRuntime(); try { Process p = run.exec("cmd start /c D:/test.bat"); System.out.println(p.exitValue()); } catch (Exception e) { e.printStackTrace(); } System.out.println("FINISHED"); } }
Why does java not support pointers?
when a servlet sends request for first time it uses the follwing methods a)init b)doget() c)dopost() d)service
What is a native method in java programming?
If an object is garbage collected, can it become reachable again?
Why java is free from garbage values??
How would you format a date in java? I.e. In the ddmmyyy format?
what is difference between prepare stetement and callable starement with example?