the C language - 3

logistic_guy

Senior Member
Joined
Apr 17, 2024
Messages
2,214
Fill in the blanks in each of the following statements:

\(\displaystyle \bold{a)}\) Objects have the property of ---------- although objects may know how to communicate with one another across well-defined interfaces, they normally are not allowed to know how other objects are implemented.
\(\displaystyle \bold{b)}\) In object-oriented programming languages, we create --------- to house the set of methods that perform tasks.
\(\displaystyle \bold{c)}\) With ---------- , new classes of objects are derived by absorbing characteristics of existing classes, then adding unique characteristics of their own.
\(\displaystyle \bold{d)}\) The size, shape, color and weight of an object are considered ------------ of the object’s class.
 
\(\displaystyle \bold{a)}\) Objects have the property of \(\displaystyle \textcolor{blue}{\text{information hiding}}\) although objects may know how to communicate with one another across well-defined interfaces, they normally are not allowed to know how other objects are implemented.
 
\(\displaystyle \bold{b)}\) In object-oriented programming languages, we create \(\displaystyle \textcolor{blue}{\text{classes}}\) to house the set of methods that perform tasks.
 
\(\displaystyle \bold{c)}\) With \(\displaystyle \textcolor{blue}{\text{inheritance}}\), new classes of objects are derived by absorbing characteristics of existing classes, then adding unique characteristics of their own.
 
\(\displaystyle \bold{d)}\) The size, shape, color and weight of an object are considered \(\displaystyle \textcolor{blue}{\text{attributes}}\) of the object’s class.
 
Top