I have a class which is abstract which contains only the
abstract methods. This is similar to an interface. Then, if
i have given a choice to choose one of them. Which one i
have to choose and why?

Answers were Sorted based on User's Feedback



I have a class which is abstract which contains only the abstract methods. This is similar to an in..

Answer / venu

i preferred to choose interface bcoz
if i implement interface still i have a chance to extend
another class

Is This Answer Correct ?    5 Yes 0 No

I have a class which is abstract which contains only the abstract methods. This is similar to an in..

Answer / harikrishna

you never get a chance to choose a method from abstract
class,because if you are writing a abstract class you
have to provide implementation to all the methods in
subclass otherwise you should declare that subclass as
Abstractclass.

Is This Answer Correct ?    2 Yes 1 No

I have a class which is abstract which contains only the abstract methods. This is similar to an in..

Answer / madhav

Interface is preferable to Abstract class as when ever in
instance is created for subclasses of this,constructors
will be called hirarchially consuming some time for each
constructor call..

Is This Answer Correct ?    0 Yes 0 No

I have a class which is abstract which contains only the abstract methods. This is similar to an in..

Answer / ashoka

Better to choose Abstract class. Because it contains not
only the abstract methods but also implemented methods but
in interfaces only unimplemented methods will be there and
all final variables will be there.

Is This Answer Correct ?    0 Yes 1 No

Post New Answer

More Core Java Interview Questions

How do you write a scanner class in java?

0 Answers  


What is an interoperable application in java ?

0 Answers   HCL,


Difference between throw and throws?

0 Answers  


what is difference betwenn Access Specifier and Access Modifier ????

2 Answers  


How the elements are organized in CardLayout?

5 Answers  






Why are the methods of the math class static?

0 Answers  


int a=1,b=10; System.out.println(a+b--);

12 Answers   HCL,


What is the use of runnable interface?

0 Answers  


What is the middleware?

2 Answers  


What is jit compiler in java?

0 Answers  


Explain class A{} class B{} class C{} all the three classes are saved in a single file name, what the name should i provide to the file ,in what file name should i run the program? Ple Explain

9 Answers   DNS, Infosys, TCS,


What is difference between pointer and reference?

0 Answers  


Categories