Computer Applications
How do you map an abstraction into software ?
OOP Intro Java
3 Likes
Answer
We map an abstraction into software form by depicting all its physical characteristics through data items and all its functionality i.e., behaviour through functions which are called methods.

Thus, in an object:
- there are variables to hold data, called member variables.
- the values of these member variables define the state of an object.
- there are member functions/operations/methods that define the behaviour of objects.
Answered By
2 Likes