Saved Bookmarks
| 1. |
How many methods are there to modify the program in computer |
|
Answer» Explanation: Accessor, mutator and manager methods Mutator methods are used to modify the data of an OBJECT. Manager methods are used to INITIALIZE and destroy objects of a class, e.g. CONSTRUCTORS and DESTRUCTORS. These methods provide an abstraction layer that facilitates encapsulation and MODULARITY. |
|