OOPs Concepts
Programming and Technical
Programming
Technical
Explain abstraction.
Read Solution (Total 9)
-
- Abstraction is a process of hiding the implementation details and showing only functionality to the user.
For example:ATM we doesn't know what are all the internal processes that are going when we access it.. instead we know only the inquiries, deposit, withdrawal etc
Abstraction lets you focus on what the object does instead of how it does it. - 10 years agoHelpfull: Yes(16) No(0)
- hiding unnecessary details from the user
- 10 years agoHelpfull: Yes(3) No(0)
- Abstraction is the act of representing essential features without including the background details or explanations.
In the computer science and software engineering domain, the abstraction principle is used to reduce complexity and allow efficient design and implementation of complex software systems. - 10 years agoHelpfull: Yes(1) No(1)
- Abstraction means representing only the simple functionalities while hiding the implementation details
- 9 years agoHelpfull: Yes(1) No(0)
- the process of representing essential features with out any background implementation
- 10 years agoHelpfull: Yes(0) No(0)
- Its process of hiding the implementation details and showing only functionality to the user.
- 10 years agoHelpfull: Yes(0) No(0)
- Hiding unneccesory details from user ae well as encapulation is incomplete without abstraction
- 9 years agoHelpfull: Yes(0) No(0)
- The actual definition of abstraction is : The process of visualizing necessary data and hiding unnecessary data is called abstraction.
> I f abstraction is present automatically encapsulation will be there both are co-existed
- 8 years agoHelpfull: Yes(0) No(0)
- abtraction:: i hidding the implements details of method and its provides access only method signature
this acheived two wayes
1.abstract class
2.interface - 5 years agoHelpfull: Yes(0) No(0)
OOPs Concepts Other Question