what is ABSTRACTION and what are using in real time project?



what is ABSTRACTION and what are using in real time project?..

Answer / tarun

Abstraction is a concept of hiding complex implementation and providing required functionality to the user is known as abstraction.
in real time
1.service provider creates an Abstract Data Type(ADT).
2.Abstract datatype contains only the operation name not the implementation.
3.Implementation for those operations are provided in sub type.
4.Service user uses ADT and call methods because of polymorphisam implementation execute based on exact instance provided at run time.

Is This Answer Correct ?    7 Yes 0 No

Post New Answer

More Core Java Interview Questions

wahts is mean by thread?

22 Answers   HCL, TCS,


Is java a super set of javascript?

0 Answers  


when asub class inherits a super class and overrides a public method of super class in sub class(public method in super class). why these methods needs to be public in sub class. (otherwise compile time error).

3 Answers  


Explain the polymorphism principle?

0 Answers  


What are the library functions in java?

0 Answers  






What is the covariant return type?

0 Answers  


Can applet in different page/s communicate with each other?

1 Answers  


What is difference between array and arraylist in java?

0 Answers  


Given: 1. package test; 2. 3. class Target { 4. public String name = “hello”; 5. } What can directly access and change the value of the variable name? 1 any class 2 only the Target class 3 any class in the test package 4 any class that extends Target

7 Answers   Infosys, WW,


What does java stand for?

0 Answers  


Is 0 true or is 1 true?

0 Answers  


why abstract class will have a constructor?

4 Answers  


Categories