Difference between Interface & Abstract class?

Answers were Sorted based on User's Feedback



Difference between Interface & Abstract class?..

Answer / ravikiran(aptech mumbai)

Interface is purely abstract.all the methods declared inside
the interfaqce are by default abstract and public.

where as an abstract class can have abstarct as well as non
abstact methods.

And an abstract class may heve no abstract methods at all.
we will do like this to restrict the creation of instance
ofthat particular class.

Is This Answer Correct ?    3 Yes 1 No

Difference between Interface & Abstract class?..

Answer / sads

dsadsa

Is This Answer Correct ?    3 Yes 2 No

Difference between Interface & Abstract class?..

Answer / abnish kumar rajput

Abstract class is a class with may having abstract methods
or not.Whereas Interface supports multiple inheritences of
classes note that java does not directly support this concept.

Is This Answer Correct ?    1 Yes 0 No

Difference between Interface & Abstract class?..

Answer / janet

1.All the methods declared inside an interface are abstract
where as abstract class must have atleast one abstract
method and others may be concrete or abstract.

2.In abstract class ,keyword abstract must be used for the
methods where as interface we need not use that keyword for
the methods.

3. Abstract class must have subclass where as interface
can't have subclasses.

Is This Answer Correct ?    3 Yes 3 No

Difference between Interface & Abstract class?..

Answer / anjani kumar jha

Interface means 100% abstracness............
Abstract class means may be 100% abstracness............

There r lots of difference b/w but 2 major difference is

1)Abstract class is Tightly coupled with class and
interface is loosely coupled.

2)Interface is used to support multiple inheritance in
java...think hard.......

Thanks and Regards
Anjani Kumar Jha
9623154095

Is This Answer Correct ?    1 Yes 3 No

Post New Answer

More Core Java Interview Questions

Explain the features of interfaces in java?

0 Answers  


What is jvm? How its run?

0 Answers  


Who developed java?

0 Answers  


what is the use of reference variable

6 Answers  


Write a program to create a binary Tree ?

2 Answers  






What are the two ways of implementing multi-threading in java?

1 Answers  


Difference between hashCode() & equals()?

3 Answers   HCL,


What is class forname?

0 Answers  


Explain thread in java?

0 Answers  


Why we used vector class?

0 Answers  


What are legal modifiers that we can use to declare an inner class?

1 Answers   Infosys,


Can you declare an interface method static?

0 Answers  


Categories