#1
What will be the value of x after the following code executes: x = 10; x += 5;?
#2
What does the '!=' operator represent in programming?
#3
What is the result of the expression: 15 % 4?
#4
What does the '&&' operator do in programming?
#5
What does the '>>' operator do in programming?
#6
What will be the result of the expression: (12 / 3) + (5 * 2)?
#7
What is the value of 2 ** 3?
#8
What is the output of the expression: (3 * 4 > 10) && (5 + 2 == 7)?
#9
Which logical operator is used to check if at least one of the conditions is true?
#10
Which of the following represents 'less than or equal to' in programming?
#11
What will be the output of the code: print(5 < 3 or 7 > 9)?
#12
In Python, what does the 'not' operator do?
#13
What will be the output of the code: print(5 >= 5 and 7 <= 10)?
#14
What is the result of the expression: (5 != 5) && (6 > 4)?
#15
What will be the output of the following code snippet: x = 5; y = 3; z = (x > y) ? 'Yes' : 'No'; print(z);?
#16
What is the value of x after the code: x = 8; x <<= 2;?
#17
What is the value of x after the code: x = 12; x >>= 2;?
#18
What will be the output of the code: print((5 < 3) ? 'Yes' : 'No')?
#19