Explain about OOPS concepts and fundamentals.



Explain about OOPS concepts and fundamentals...

Answer / Roshan Rajnish Bage

OOPS stands for Object-Oriented Programming System. Fundamental concepts include Encapsulation (hiding internal details from the user), Inheritance (reusing the code of a superclass in subclasses), Polymorphism (the ability to use an object of a superclass as a subclass object), and Abstraction (providing only essential details and hiding complex ones).

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Core Java Interview Questions

What are order of precedence and associativity, and how are they used?

1 Answers  


Difference between current previous versions of Java?

1 Answers   Atos Origin,


What is the difference between the jdk 1.02 event model and the event-delegation model introduced with jdk 1.1?

1 Answers  


Can we override singleton class?

1 Answers  


What is the SimpleTimeZone class?

1 Answers  


What is hashing principle in java?

1 Answers  


can u override the start() method of Thread class

5 Answers  


Can an interface extands a class?

5 Answers  


Which way a developer should use for creating thread, i.e. Sub classing thread or implementing runnable.

1 Answers  


What are the types of strings?

1 Answers  


Can i have abstract class with no abstract methods?

22 Answers   CTS,


How to excute - Interface - Inner class- method can any one tell how to execute/ call this main method public interface abc { static int i=0; void dd(); class a1 { a1() { int j; System.out.println("inside"); }; public static void main(String a1[]) { System.out.println("in interfia"); } } }

1 Answers  


Categories