Question 1
What is a statement in Python?
Question 2
What is the order of operations in Python known as?
Question 3
What is an operand in Python?
Question 4
How does the division operator '/' function differ between Python 2.x and Python 3.x?
Question 5
Which of the following operators has the highest precedence in Python?
Question 6
What does the modulus operator '%' do?
Question 7
What is the output of the following code snippet executed in a script: print(100); x = 5; y = 20; print(x + y)?
Question 8
What will be the value of x after executing the statement `x = 20 + 32`?
Question 9
Which operator would you use to concatenate two strings in Python?
Question 10
What is the result of the expression 7 // 5?
Question 11
Which editor can be used to write a Python script?
Question 12
Which mode allows executing statements directly in the Python interpreter?
Question 13
What is the result of the expression 7 % 3?
Question 14
In which mode should you use the `print` function to display results?
Question 15
Which operator would you use to perform floor division in Python?