Answer the 10 questions below. You need to answer at least 6 questions correctly to pass this knowledge check. You can attempt this check as many times as you need. Passing will mark this module as complete on your dashboard.
1. What is the result of the expression 5 + 3 * 2 in Python?
5 + 3 * 2
16
11
13
8
2. Which operator performs floor division (discards the remainder)?
/
%
//
**
3. What does the expression 10 % 3 evaluate to?
10 % 3
3
1
0
3.33...
4. Which expression calculates 2 raised to the power of 5?
2 ^ 5
2 * 5
2 // 5
2 ** 5
5. What is the result of 15 / 4?
15 / 4
3.0
3.75
4
6. What is the result of 15 // 4?
15 // 4
7. According to operator precedence, which operation is performed first in 10 - 4 * 2?
10 - 4 * 2
10 - 4
4 * 2
8. What is the value of result after this code runs: result = (2 + 3) * 4?
result
result = (2 + 3) * 4
14
20
9
9. What is the result of 5 + 10 / 2?
5 + 10 / 2
7.5
10.0
10
7
10. Which has the highest precedence among the standard arithmetic operators below?
+
*