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 |
What are order of precedence and associativity, and how are they used?
Difference between current previous versions of Java?
What is the difference between the jdk 1.02 event model and the event-delegation model introduced with jdk 1.1?
Can we override singleton class?
What is the SimpleTimeZone class?
What is hashing principle in java?
can u override the start() method of Thread class
Can an interface extands a class?
Which way a developer should use for creating thread, i.e. Sub classing thread or implementing runnable.
What are the types of strings?
Can i have abstract class with no abstract methods?
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"); } } }