
2ndQTR_STE10_POSTTEST
Quiz by Beverly Suarez
Tag the questions with any skills you have. Your dashboard will track each student's mastery of each skill.
Use the correct function to print the highest value of x and y.
Returns the absolute value of x
Use the correct function to print the square root of x.
Returns the cube root of x
Returns the value of x to the power of y.
Returns the cosine of x
Use the correct function to round the number 2.6 to its nearest integer.
Returns the highest value of a floating x and y
Fill in the missing parts to print the value (for true ):
Fill in the missing parts to print the value (for true):
Fill in the missing parts to print the value (for true):
Fill in the missing parts to print the value (for true):
Fill in the missing parts to print the value (for true):
Which of the following conditions performs "Less than"?
Which of the following conditions performs "Less than or equal to"?
Which of the following conditions performs "Greater than"?
Which of the following conditions performs "Greater than or equal to"?
Which of the following conditions performs "Equal to"?
Which of the following conditions performs "Not Equal to"?
Use it to specify a block of code to be executed, if a specified condition is true
Use it to specify a block of code to be executed, if the same condition is false
Use it to specify a new condition to test, if the first condition is false
Which of the following is the correct output of this code?
Which of the following is the correct output of this code?
Which of the following is the correct output of this code?
Which of the following is the correct output of this code?
Which of the following is the correct output of this code?
Which of the following is the correct output of this code?
Loops can execute a block of code as long as a specified condition is ____ .
The while loop loops through a block of code as long as a specified condition is ___ .
What will happen if you forgot to increment / decrement the variable used in the condition?
Which of the following is the correct output of this code?
Which of the following is the correct output of this code?
Which of the following is the correct output of this code?
Which of the following is the correct output of this code?
What is wrong with the code?
When you know exactly how many times you want to loop through a block of code, use the ___ loop instead of a while loop.
It is also possible to place a loop inside another loop. This is called a ___ loop.
Which of the following is the correct output for this code?
Which of the following is the correct output for this code?
Which of the following is the proper syntax of a for loop in C++?
Which of the following is the correct output for this code?
Which of the following is the correct output for this code?
This statement can be used to jump out of a loop.
This statement breaks one iteration (in the loop), if a specified condition occurs, and continues with the next iteration in the loop.
Which of the following is the correct output for this code?
Which of the following is the correct output for this code?
Which of the following is the correct output for this code?
Which of the following is the correct output for this code?
Supply the missing code in this program.