A shallow copy refers to

a. the copying of small objects
b. the copying of pointers
c. the copying of objects that are being pointed at
d. the copying of basic types, such as integers
e. call by value


B

Computer Science & Information Technology

You might also like to view...

This is called a cast operation. When the preceding statement executes, it prints the value 65 (on systems that use the ASCII character set). Write a program that prints the integer equivalent of a character typed at the keyboard. Store the input in a variable of type char. Test your program several times using uppercase letters, lowercase letters, dig- its and special characters (like $).

Here is a peek ahead. In this chapter you learned about integers and the type int. C++ can also represent uppercase letters, lowercase letters and a consider- able variety of special symbols. C++ uses small integers internally to represent each different character. The set of characters a computer uses and the corresponding integer representations for those characters are called that computer’s character set. You can print a character by enclosing that char- acter in single quotes, as with cout << 'A'; // print an uppercase A You can print the integer equivalent of a character using static_cast as follows: cout << static_cast< int >( 'A' ); // print 'A' as an integer

Computer Science & Information Technology

A computer has Windows 7 installed from the factory. Another computer has been built and the Windows 7 from the first computer _______ [ can | cannot ] be used on the second computer

Fill in the blank(s) with correct word

Computer Science & Information Technology

There are rare occasions when both the second and third argument of an IF function are executed.

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

Computer Science & Information Technology

The software that requests mail delivery from the mail server to an Internet device is known as mail ____ software.?

A. ?server B. ?user C. ?client D. ?box

Computer Science & Information Technology