Python Basic Quiz #7 – Operators

Hello Everyone! Welcome to the Short Quiz on Python Operators.

This Quiz is made with questions from Operators. To learn about operators please check the Operators tutorial.

This Quiz contains of 5 simple questions. After completing the Quiz, immediately you will get the results displayed with correct answers.

Please feel free to provide your feedback in the comments box in bottom of the page.

Happy Programming!

Welcome to your Python Basic Quiz #7 - Operators

1. 
Which of the following will result in False?

2. 
What will be the output of the below code?

a = 5
b = 4
print((b<a) or (b==a))

3. 
11 % 2 = ?

4. 
What will be the output of the below code?

a = 'True_Statement'
b = '_Statement'

print(a-b)

5. 
22 // 5 = ?

Leave a Reply

Your email address will not be published. Required fields are marked *