Why Over riding is Run Time Polymorphism?
Answer Posted / mani
Overriding method resolution always take care by JVM based
on runtime object. Hence overriding is consider as runtime
or dynamic orlatebinding.
| Is This Answer Correct ? | 16 Yes | 3 No |
Post New Answer View All Answers
What is the difference between an interface and an abstract class?
Explain the difference between association, aggregation and inheritance relationships.
How destructors are defined in java?
What is stringbuffer in java?
Is call by reference possible in java?
Can anonymous class have constructor?
What are the escape sequences in java?
Why can't we use static class instead of singleton?
Explain oops concepts in detail?
What’s the difference between constructors and other methods?
What restrictions are placed on method overloading in java programming?
What are the advantages of exception handling in java?
Explain about java sdk?
how we can use debug in myeclipse 6.0 in order solve the problems that exist in our program when there are 900 to 1000 pages in a web application
4.1 Supply contracts (in the form of comments specifying pre- and post conditions) for the enqueue() method of the LinkedQueue class given in the Appendix. (2) 4.2 Let Thing be a class which is capable of cloning objects, and consider the code fragment: Thing thing1 = new Thing(); //(1) Thing thing2 = thing1; //(2) Thing thing3 = (Thing) thing1.clone(); //(3) Explain how the objects thing2 and thing3 differ from each other after execution of the statements. (