Basic Core Java Interview Questions | Core java | Java Questions | Core Basics | Interview Questions | Java Questions | Core Java Basics | OOP in java | Object oriented programming | Object oriented programming in java
Basic Core Java Interview Questions | Core java | Java Questions | Core Basics | Interview Questions | Java Questions | Core Java Basics | OOP in java | Object oriented programming | Object oriented programming in java 1. What is OOP? A. OOP extends for Object oriented programming. It is a paradigm of programming which works on object. In object oriented programming everything is in the form of object. In java except primitives everything in the form of object. For converting primitives to object we can use wrapper classes concept in java. 2. What is Abstraction? A. Abstraction is nothing but hiding the internal implementation and showing some set of services to the end user is called abstraction. 3. How can we use abstraction in java? A. We can use abstraction in java with the help of Interface and Abstract class. 4. What is Abstract class? A. Abstract class is special type of class which is declared by abstract keyword and used to achieve abstraction....