
Test 1 Review
Quiz by Alex Roque
Feel free to use or edit a copy
includes Teacher and Student dashboards
Measure skillsfrom any curriculum
Measure skills
from any curriculum
Tag the questions with any skills you have. Your dashboard will track each student's mastery of each skill.
With a free account, teachers can
- edit the questions
- save a copy for later
- start a class game
- automatically assign follow-up activities based on students’ scores
- assign as homework
- share a link with colleagues
- print as a bubble sheet
10 questions
Show answers
- Q1What is the result of the following C++ operation if the variable FirstName has a value of “John”? (FirstName == “JohN”)JohNTRUEFALSE1120s
- Q2Which of the following numbers is the representation of the following 01010001818380128300s
- Q3You use a(n)_________ to write a single alternative decision structure.if-callifif-whilegoto120s
- Q4A(n) _________ loop has no way of ending and repeats until the program is interruptedIndeterminatetimelessInfiniteInterminable120s
- Q5What is the total number of iterations in a nested loop that has…. Outer loop: for (int x = 1; x < 5; x++) Inner Loop: for (int y =0; y <4; y++)165204120s
- Q6Which of the following statements correctly reads input into the variable named valuecout << “Enter the data”; cin >> value;cout << “Enter the data”; cout >> value;cout << “Enter the data”; cin > value;cout << “Enter the data”; cin = value;120s
- Q7Which is the data type used to stor a single character in a variable?lettercharacteralphachar120s
- Q8This type of loops executes at least once and evaluated the expression afterpretestcondition-controlledcount-controlledposttest120s
- Q9What is a valid way to create a constant?const double Num = 3;Const double Num = 3;Constant double Num = 3;& double Num = 3;120s
- Q10To convert a C++ program to machine level assembly, we must use aassemblerexecutablecompilerdebugger120s