Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


In real time project when will we use Abstract class. and
what are the difference between abstract and interface.

Answers were Sorted based on User's Feedback



In real time project when will we use Abstract class. and what are the difference between abstract ..

Answer / aravind

Depending upon the requirement.

Abstract class---->it contains zero or more abstract methods.

ex HttpServlet and GenericServlet
HttpServlet contains all sre concrete methods but it
declared as a Abstract class.

InterFace--->It contains all abstract methods.

if we extends the abstract class .there is chance to extend
another class.

if we implements the interface we can extends another class

Is This Answer Correct ?    17 Yes 5 No

In real time project when will we use Abstract class. and what are the difference between abstract ..

Answer / avinash

In Real time,we use Abstract class when we want the
implemented functionality to be used . In Abstract class ,
there may contain Abstract methods or non abstract
methods(concrete methods).

When we dont want the functionality provided by the abstract
class then we are going to make use of Interface. we
directly implement the interface and provide functionalities
for the abstract methods.

Is This Answer Correct ?    7 Yes 2 No

In real time project when will we use Abstract class. and what are the difference between abstract ..

Answer / satish

In real time when u extend Abstract class no need t provide
implementation f all methods & it contains one abstract
method remaining al r concrete methods
whereas interface we have t provide implementation f all
methods & by default al r abstract methods

Is This Answer Correct ?    10 Yes 9 No

In real time project when will we use Abstract class. and what are the difference between abstract ..

Answer / meena

in real time project we can use the abstract class so that
the subclasses can be extended so the functionality of the
project becomes easy as per the needs of the things required
in the project
in case of interfaces we can make use of the abstract
methods which means that we can make use of the other class
as interface (which means we can make use of the interface
class by adding the word implements) so that the methods of
the implemented class can be used in our project.
which in turn makes the work more easier.

Is This Answer Correct ?    2 Yes 1 No

In real time project when will we use Abstract class. and what are the difference between abstract ..

Answer / gopi

abstract class means--it has atmost one abstract
method.remaining might be abstract or not.

interface means ---it has almostall abstract methods.u have
only the method specification.

In real time if u want to share the some common features in
the abstract class u have to extends the abstract class.
so, u need not wrote the body to the all the methods.
if u implement interface u should write body to the all
the methods.

Is This Answer Correct ?    12 Yes 13 No

In real time project when will we use Abstract class. and what are the difference between abstract ..

Answer / naveen verma

Abstract Class:- its should have declared as abstract and must contain atleast one abstract method. an abstract class can be extended from either an abstract class or the class which is extending the abstract class should implement all methods of abstract method.

Interface:- In interface the methods are only declared not define the class which implementing the interface can define the method body as per its need. its not mendatory to define every method of the interface.


In really time application we extend abstract class only we when we need to modify the class. where as interface can be used to implements its method.

Is This Answer Correct ?    1 Yes 3 No

Post New Answer

More Advanced Java Interview Questions

function of extends and implements keywords?

2 Answers  


How is serialization used generally ?

3 Answers  


What is ripple effect?

0 Answers  


Why RMI required an interface?

1 Answers  


Which class is the immediate superclass of the menucomponent class?

0 Answers  


Explain the different types of memory used by jvm?

0 Answers  


What is scalable, portability in the view of J2EE?

0 Answers  


Is System.err.println(""Statement"); is execute the output on console . Example: System.err.println("Hello JAVA");

8 Answers  


Explain the purposes of methods wait(), notify(), notifyAll ()?

2 Answers  


difference between applicationserver and webserver

4 Answers   SolutionNET,


How task's priority is used in scheduling?

0 Answers   HCL,


What are the methods used for inter-thread communication? and in what class these methods are defined?

2 Answers  


Categories