What are concepts of OOPS and how are they implemented in
Java?
Answer Posted / ravikiran(aptech mumbai)
abstartcion
inheritence
polymorhism
encapsulation
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
What about abstract classes in java?
What does split function do in java?
Can we declare main () method as non static?
What does percent mean in java?
Can a class be private in java?
What is meant by interface?
Is string an object?
How do you add an element to a hashset in java?
How many static init can you have?
What is the different between get and post?
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. (
What is the purpose of using break in each case of switch statement?
Name and explain the types of ways which are used to pass arguments in any function in java.
In the below example, what will be the output?
What data type is a string?