Python Basic Quiz #7 – Operators

Welcome to your Python Basic Quiz #7 - Operators

User Name
Email
1. 
What will be the output of the below code?

a = 'True_Statement'
b = '_Statement'

print(a-b)

2. 
11 % 2 = ?

3. 
Which of the following will result in False?

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

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

5. 
22 // 5 = ?

Leave a Reply

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