Why java is not a pure object oriented language?
Answer Posted / manikiran
Java fails in multiple inheritance. It is one of the feature
in OOPS concept .Java does not follow all rules of OOPS concepts
| Is This Answer Correct ? | 5 Yes | 2 No |
Post New Answer View All Answers
Explain the transient field modifier?
What is method in java ?
Can a class have an interface?
Can arraylist hold different types java?
What is t type java?
Which of the classes will have more memory allocated?
How to retrieve data from database in java using arraylist?
Explain about public and private access specifiers?
Why is logger singleton?
What are the two types of java?
What does system.gc() and runtime.gc() methods do?
How will you serialize a singleton class without violating singleton pattern?
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. (
Is it possible to instantiate the abstract class?
What do you mean by object?