C++ Programming Unit 3 Quiz

Quiz
•
Computers
•
10th - 12th Grade
•
Hard
Lynn Hadley
Used 17+ times
FREE Resource
25 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Suppose that x is an int variable and y is a double variable and the input is: 10 20.7. Choose the values after the following statement executes:
cin >> x >> y;
x = 10, y = 20
x = 10, y = 20.0
x = 10, y = 20.7
x = 10, y = 21.0
2.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Suppose that x and y are int variables. Which of the following is a valid input statement
cin >> x >> cin >> y;
cin >> x >> y;
cin << x << y;
cout << x << y;
3.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Suppose that x is an int variable, y is a double variable and ch is a char variable and the input is:
15A 73.2. Choose the values after the following statement executes:
cin >> x >> ch >> y;
x = 15, ch = 'A', y = 73.2
x = 15, ch = 'A', y = 73.0
x = 15, ch = 'a', y = 73.0
This statement results in an error because there is no space between 15 and A.
4.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Suppose that alpha is an int variable and ch is a char variable and the input is:
17 A
What are the values after the following statements execute?
cin >> alpha;
cin >> ch;
alpha = 17, ch = ' ‘
alpha = 1, ch = 7
alpha = 17, ch = 'A‘
alpha = 17, ch = 'a‘
5.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Suppose that x is an int variable, y is a double variable, z is an int variable, and the input is:
15 76.3 14
Choose the values after the following statement executes:
cin >> x >> y >> z;
x = 15, y = 76, z = 14
x = 15, y = 76, z = 0
x = 15, y = 76.3, z = 14
x = 15.0, y = 76.3, z = 14.0
6.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Suppose that ch1, ch2, and ch3 are variables of the type char and the input is:
A B
C
Choose the value of ch3 after the following statement executes:
cin >> ch1 >> ch2 >> ch3;
'A'
'B'
'C'
'\n'
7.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Suppose that x and y are int variables, z is a double variable, and the input is:
28 32.6 12
Choose the values of x, y, and z after the following statement executes:
cin >> x >> y >> z;
x = 28, y = 32, z = 0.6
x = 28, y = 32, z = 12.0
x = 28, y = 12, z = 32.6
x = 28, y = 12, z = 0.6
Create a free account and access millions of resources
Similar Resources on Wayground
20 questions
Ulangan C++ Class XI TKJ

Quiz
•
11th Grade
20 questions
QUIS PERULANGAN & PERCABANGAN

Quiz
•
10th Grade
20 questions
Python Quiz

Quiz
•
12th Grade
20 questions
Balises HTML & CSS

Quiz
•
8th Grade - University
20 questions
Jago PHP

Quiz
•
11th Grade
20 questions
Iteration

Quiz
•
11th Grade
24 questions
HTML & CSS Review

Quiz
•
7th - 10th Grade
20 questions
AQA GCSE Computer Science - 3.3.3 Units of Information

Quiz
•
8th - 10th Grade
Popular Resources on Wayground
10 questions
Lab Safety Procedures and Guidelines

Interactive video
•
6th - 10th Grade
10 questions
Nouns, nouns, nouns

Quiz
•
3rd Grade
10 questions
9/11 Experience and Reflections

Interactive video
•
10th - 12th Grade
25 questions
Multiplication Facts

Quiz
•
5th Grade
11 questions
All about me

Quiz
•
Professional Development
22 questions
Adding Integers

Quiz
•
6th Grade
15 questions
Subtracting Integers

Quiz
•
7th Grade
9 questions
Tips & Tricks

Lesson
•
6th - 8th Grade
Discover more resources for Computers
10 questions
Exploring Digital Citizenship Essentials

Interactive video
•
6th - 10th Grade
10 questions
1.2 OSI & TCP IP Models Quiz

Quiz
•
10th Grade
20 questions
Digital Citizenship

Quiz
•
8th - 12th Grade
35 questions
Computer Baseline Examination 2025-26

Quiz
•
9th - 12th Grade
13 questions
Problem Solving Process

Quiz
•
9th - 12th Grade
20 questions
Hardware vs. Software Quiz

Quiz
•
7th - 10th Grade
10 questions
Understanding Algorithms with Pseudocode and Flowcharts

Interactive video
•
9th - 12th Grade
19 questions
AP CSP Unit 1 Review (code.org)

Quiz
•
10th - 12th Grade