Ask Question
12 June, 10:29

What technique allows a programmer to change the way in which a method works internally without affecting programs that utilize the method?

+2
Answers (2)
  1. 12 June, 11:28
    0
    Implementation hiding.

    Explanation:

    A method is a group of one or more statements, defined in a class. The class holds the attributes and behaviours of objects in its class and implements the defined method from an interface.

    To avoid the method statements from been seen, it is encapsulated, hidden internally but functional when called upon. This encapsulation process is called implementation hiding.
  2. 12 June, 13:12
    0
    implementation hiding allows the programmer to change the way in which a method works internally without affecting the programs that utilize the method.

    Explanation:

    Implementation hiding is an example of encapsulation in OOP which enables a programmer or coder to hide method implementation from outside world and in this technique the program is also not affected by the method that it is using
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “What technique allows a programmer to change the way in which a method works internally without affecting programs that utilize the method? ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers