Suppose that x is an int variable and y is a double variable. The input is:
?
10 20.7
?
Choose the values after the following statement executes: cin >> x >> y;.

A. x = 10, y = 20
B. x = 10, y = 20.0
C. x = 10, y = 20.7
D. x = 10, y = 21.0


Answer: C

Computer Science & Information Technology

You might also like to view...

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

1) Each recursion causes a new activation frame to be placed on the stack. 2) Each activation frame contains all the function’s code, as well as the automatic variables and formal parameters. 3) The activation frames in nested function calls are handled in a last-in/ first-out order. 4) A binary search works with any array of numbers. 5) For the binary search in the text to work, the element searched for must actually be present in the array.

Computer Science & Information Technology

What is x after the following statements?

``` int x = 1; x *= x + 1; ``` a. x is 1. b. x is 2. c. x is 3. d. x is 4.

Computer Science & Information Technology

Discuss three proper ways in which you can assign superclass and subclass references to vari- ables of superclass and subclass types.

What will be an ideal response?

Computer Science & Information Technology

?Modified True/False A vortal provides a gateway for visitors with more specific interests, such as gardening, children's activities, and social issues. _______________________

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

Computer Science & Information Technology