
2ndQTR_STE10_POSTTEST
Quiz by Beverly Suarez
Feel free to use or edit a copy
includes Teacher and Student dashboards
Measure skillsfrom any curriculum
Tag the questions with any skills you have. Your dashboard will track each student's mastery of each skill.
- 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
- Q1
Use the correct function to print the highest value of x and y.
round
min
max
sin
30s - Q2
Returns the absolute value of x
fmod(x, y)
fmin(x, y)
fmax(x, y)
abs(x)
30s - Q3
Use the correct function to print the square root of x.
cmath and round
cmath and max
cmath and min
cmath and sqrt
30s - Q4
Returns the cube root of x
exp(x)
expm1(x)
cosh(x)
cbrt(x)
30s - Q5
Returns the value of x to the power of y.
floor(x)
fmod(x, y)
fma(x, y, z)
pow(x, y)
30s - Q6
Returns the cosine of x
expm1(x)
cos(x)
exp(x)
cosh(x)
30s - Q7
Use the correct function to round the number 2.6 to its nearest integer.
cmath and max
cmath and min
cmath and sqrt
cmath and round
30s - Q8
Returns the highest value of a floating x and y
fmax(x, y)
fmin(x, y)
pow(x, y)
sin(x)
30s - Q9
Fill in the missing parts to print the value (for true ):
99
4
0
5
30s - Q10
Fill in the missing parts to print the value (for true):
48
30
39
41
30s - Q11
Fill in the missing parts to print the value (for true):
88
33
99
11
30s - Q12
Fill in the missing parts to print the value (for true):
n2 >= n1
n1 == n2
n2 > n1
n1 > n2
30s - Q13
Fill in the missing parts to print the value (for true):
n1 == n2
n2 > n1
n1 < n2
n1 != n2
30s - Q14
Which of the following conditions performs "Less than"?
a <= b
a > b
a >= b
a < b
30s - Q15
Which of the following conditions performs "Less than or equal to"?
a <= b
a < b
a >= b
a > b
30s