Você está na página 1de 2

OOPS Concept Q1) What is polymorphism? Ans) Polymorphism gives us the ultimate flexibility in extensibility.

The abilti y to define more than one function with the same name is called Polymorphism. In java,c++ there are two type of polymorphism: compile time polymorphism (overloa ding) and runtime polymorphism (overriding). When you override methods, JVM determines the proper methods to call at the prog rams run time, not at the compile time. Overriding occurs when a class method has the same name and signature as a method in parent class. Overloading occurs when several methods have same names with Overloading is determined at the compile time. Different method signature and different number or type of parameters. Same method signature but different number of parameters. Same method signature and same number of parameters but of different type Example of Overloading int add(int a,int b) float add(float a,int b) float add(int a ,float b) void add(float a) int add(int a) void add(int a) t a) Example: Overloading

//error conflict with the method int add(in

Class BookDetails{ String title; String publisher; float price; setBook(String title){ } setBook(String title, String publisher){ } setBook(String title, String publisher,float price){ } } Example: Overriding class BookDetails{ String title; setBook(String title){ } } class ScienceBook extends BookDetails{ setBook(String title){} //overriding setBook(String title, String publisher,float price){ } //overloading } Q2) What is inheritance? Ans) Inheritance is the property which allows a Child class to inherit some prop erties from its parent class. In Java this is achieved by using extends keyword. Only properties with access modifier public and protected can be accessed in ch ild class. public class Parent{ public String parentName; public int parentage; public String familyName; } public class Child extends Parent{ public String childName;

public int childAge; public void printMyName(){ System.out.println( My name is + chidName+ +familyName) } } In above example the child has inherit its family name from the parent class jus t by inheriting the class. Q3) What is multiple inheritance and does java support? Ans) If a child class inherits the property from multiple classes is known as mu ltiple inheritance. Java does not allow to extend multiple classes but to overcome this problem it a llows to implement multiple Interfaces. Q4) What is abstraction? Ans) Abstraction is way of converting real world objects in terms of class. For example creating a class Vehicle and injecting properties into it. E.g public class Vehicle { public String colour; public String model; } Q5) What is encapsulation? Ans) The encapsulation is achieved by combining the methods and attribute into a class. The class acts like a container encapsulating the properties. The users are exposed mainly public methods.The idea behind is to hide how thinigs work an d just exposing the requests a user can do. Q6) What is Association? Ans) Association is a relationship between two classes. In this relationship the object of one instance perform an action on behalf of the other class. The typi cal behaviour can be invoking the method of other class and using the member of the other class. public class MyMainClass{ public void init(){ new OtherClass.init(); } } Q7) What is Aggregation? Ans) Aggregation has a relationship between two classes. In this relationship th e object of one class is a member of the other class. Aggregation always insists for a direction. public class MyMainClass{ OtherClass otherClassObj = new OtherClass(); } Q8) What is Composition? Ans) Composition is a special type of aggregation relationship with a difference that its the compulsion for the OtherClass object (in previous example) to exis t for the existence of MyMainClass. Q9)What is the difference between abstraction and encapsulation ? Abstraction focuses on the outside view of an object (i.e. the interface) Encaps ulation (information hiding) prevents clients from seeing it?s inside view, wher e the behavior of the abstraction is implemented. Abstraction solves the problem in the design side while Encapsulation is the Imp lementation. Encapsulation is the deliverables of Abstraction. Encapsulation barely talks abo ut grouping up your abstraction to suit the developer needs.

Você também pode gostar