Suppose that x and y are int variables, and z is a double variable. The input is:
?
28 32.6 12
?
Choose the values of x, y, and z after the following statement executes:
?
cin >> x >> y >> z;
?

A. x = 28, y = 32, z = 0.6
B. x = 28, y = 32, z = 12.0
C. x = 28, y = 12, z = 32.6
D. x = 28, y = 12, z = 0.6


Answer: A

Computer Science & Information Technology

You might also like to view...

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

1. True/False: IfNumber = 3, indicate whether the following statement istrue orfalse: Floor(Random() * Number) may be 0, 1, 2, or 3 2. True/False: AFor loop may not be nested within aWhileloop. 3. True/False: Given thatNumber = 3: Floor(Random() * Number) + 4 may be 7, 8, 9, 10, 11, 12, or 13

Computer Science & Information Technology

____________________ is sometimes referred to as mirroring.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

When the arrow on a JComboBox is clicked:

a. an ItemEvent occurs. b. a scrollbar always appears. c. an ActionEvent occurs. d. The JComboBox expands to a list.

Computer Science & Information Technology

Swiping up with three fingers on Mac OS X launches what?

A. Dashboard B. Mission Control C. Spotlight D. System Preferences

Computer Science & Information Technology