where u use Abstraction and Interface in real time

Answers were Sorted based on User's Feedback



where u use Abstraction and Interface in real time..

Answer / praveen

If a user want to interact with my application he need an
interface. With the interface the user can access the
specific methods of a class that implemented the interface.
For example user want to call a method. He already know the
specific class implemented that interface, then he can call
the method through reference object.

Abstract class is used whenever a user restricted to
inheritance but not taking instance of a class or if any
methods are there that should be implement by the user.

Is This Answer Correct ?    6 Yes 0 No

where u use Abstraction and Interface in real time..

Answer / narasimha

Abstraction is used in framework and interfaces are used in
specification

Is This Answer Correct ?    4 Yes 0 No

where u use Abstraction and Interface in real time..

Answer / teja

When ever there is need of having same common features
among the subclasses of of super class we have to go for
AbstractClass,
When ever there is no common features for subclasses of
super class we have to go for interface

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More Core Java Interview Questions

Which is best ide for java?

0 Answers  


What is meant by Static query and Dynamic query?

2 Answers  


Why does the integer quotient -0/3 yield 0, but the double quotient -0.0/3.0 yields – 0.0?

0 Answers  


Is a boolean variable?

0 Answers  


What is java class writing rules?

1 Answers   Oracle,






What is multiple inheritance? Is it supported by java?

0 Answers  


Explain cookies?

2 Answers   Canon,


Which is the class in java?

0 Answers  


Is JRE required to compile Java files ?

4 Answers   HCL,


Can a java program have 2 main methods?

0 Answers  


What is the char data type?

0 Answers  


What is meant by anonymous class?

0 Answers  


Categories