#1
What is the result of the expression 'x + 5' if x = 3?
8
ExplanationAdding 5 to 3 yields 8.
#2
What will be the value of 'y' if y = 2 * (5 - 3) + 4?
6
Explanation2 times the difference between 5 and 3, plus 4, equals 6.
#3
If 'a = 7' and 'b = 3', what is the result of the expression 'a / b'?
2.33
ExplanationDividing 7 by 3 equals approximately 2.33.
#4
What is the output of 'x % 3' if x = 10?
1
ExplanationThe remainder of dividing 10 by 3 is 1.
#5
What is the result of the expression '3x - 2' if x = 4?
10
ExplanationSubstituting x with 4, 3 times 4 minus 2 equals 10.
#6
What is the output of 'y ** 2' if y = -3?
9
ExplanationSquaring -3 yields 9.
#7
If 'a = 15' and 'b = 4', what is the result of 'a % b'?
3
ExplanationThe remainder of dividing 15 by 4 is 3.
#8
If 'a = 5' and 'b = 2', what is the value of 'a * b - a + b'?
7
ExplanationMultiplying 5 by 2, then subtracting 5, and adding 2 results in 7.
#9
If 'a = 12' and 'b = 4', what is the value of 'a // b'?
3
ExplanationDividing 12 by 4 results in 3.
#10
Given 'x = 6' and 'y = 2', what is the value of 'x // y'?
3
ExplanationDividing 6 by 2 equals 3.
#11
If 'a = 7' and 'b = 2', what is the value of 'a ** b'?
49
ExplanationRaising 7 to the power of 2 equals 49.
#12
Given 'x = 8' and 'y = 3', what is the value of 'x % y'?
1
ExplanationThe remainder of dividing 8 by 3 is 1.