Ask Question

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

+1
Answers (2)
  1. 7 September, 00:49
    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. 7 September, 01:16
    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?
Find 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 the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers