In a ____ copy, two or more pointers of the same type point to the same memory.

A. static
B. shallow
C. dynamic
D. deep

Answer: B

Computer Science & Information Technology

You might also like to view...

A form's ________ determines how objects on a form will appear

A) criteria B) layout C) validation rule D) view

Computer Science & Information Technology

Are the following array initializations correct? If not, why not?

a)``` int x[4] = {8, 7, 6, 5, 4}; ``` b)``` int x[] = {8, 7, 6, 5, 4}; ``` c)``` int x[4] = {8, 7, 6}; ``` d)``` const int SIZE =4; int x[SIZE]; ``` e)``` const int SIZE =4; int x[SIZE-4]; ```

Computer Science & Information Technology