The ____ operator can be used to return the address of a private data member of a class.

A. dereferencing
B. destructor
C. address of
D. member access


Answer: C

Computer Science & Information Technology

You might also like to view...

A(n) ________ is a special value that marks the end of a list of values.

A) counter B) accumulator C) sentinel D) total E) loop control variable

Computer Science & Information Technology

The simplest approach to managing memory for multiple, concurrent programs, fixed- partition memory management, divides the available space into fixedlength __________ each of which holds one program.

a. regions b. clusters c. segments d. partitions

Computer Science & Information Technology

A collection of related data about a particular topic or purpose is called a(n) ________

Fill in the blank(s) with correct word

Computer Science & Information Technology

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

1. The for statement performs the same functions as the while statement, but uses a different form. 2. The construction for ( ; count <= 20 ; ) is invalid. 3. In C++, continue produces the same action for both while and for statements. 4. Entering data interactively in a loop is a general technique that’s applicable to for loops. 5. The do statement is particularly useful in filtering user-entered input and providing data validation checks.

Computer Science & Information Technology