With ____, you make a request to a method without knowing the details of how the method works.

A. implementation masking
B. method masking
C. method hiding
D. implementation hiding


Answer: D

Computer Science & Information Technology

You might also like to view...

Consider the function definition and array declarations. Which are incorrect calls to the function make_2? Why?

(In considering this code, you are to ignore the a) b), and so on, at the start of the lines, and consider that this code is to be embedded in a complete and correct program.) ``` void make_2 ( int a[], int size ) { for (int i = 0; i < size; i++ ) a[i] = 2; } int array1[20]; ``` a) ``` make_2( array, 30 ); ``` b) ``` make_2( array, 10 ); >>>>>replace array with array1 two places ``` c) ``` "Hey, make_2, come change array1. Its size is 20." //A declaration for parts e) through h). int array2[50]; ``` d) ``` make_2( array2, 50 ); ``` e) ``` make_2( array2[5],50 ); ```

Computer Science & Information Technology

When the database is an ACCDE database, a padlock displays with the Access database icon to indicate the file's "locked-down" status

Indicate whether the statement is true or false

Computer Science & Information Technology

Animated moviemaking is both processor and memory intensive.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

You will probably build your web site on the same computer that hosts your site.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology