What is the approach of oo ? Select one: a. Bundle method seperated from data b. Bundle data and method c. Bundle data only for security d. Bundle data seperated from method
Answers
Answer:
OO means Object Oriented
Explanation:
In the object-oriented approach, the focus is on capturing the structure and behavior of information systems into small modules that combines both data and process.This is why it can be able to select one:a. bundle method separated from b. Bundles data and method c. Bundles data only for security d. Bundle data separated from method.
Answer- b. Bundle data and method
Explanation:
oo stands for obected oriented. Encapsulation, inheritance and polymorphism are the three principles of object oriented languages. Encapsulation gives the idea of bundling or encapsulating the data and methods in one unit called class. Only the methods of the class have read or write access to the data. The idea has been described to hide the internal state of the object from outside known as information hiding.