#1
What is the result of the expression 'x + 5' if x = 3?
#2
What will be the value of 'y' if y = 2 * (5 - 3) + 4?
#3
If 'a = 7' and 'b = 3', what is the result of the expression 'a / b'?
#4
What is the output of 'x % 3' if x = 10?
#5
What is the result of the expression '3x - 2' if x = 4?
#6
What is the output of 'y ** 2' if y = -3?
#7
If 'a = 15' and 'b = 4', what is the result of 'a % b'?
#8
If 'a = 5' and 'b = 2', what is the value of 'a * b - a + b'?
#9
If 'a = 12' and 'b = 4', what is the value of 'a // b'?
#10
Given 'x = 6' and 'y = 2', what is the value of 'x // y'?
#11
If 'a = 7' and 'b = 2', what is the value of 'a ** b'?
#12