Python Quiz-IV | Python Operators



0%

Python Quiz- IV (Python Operators)

1 / 24

What is the result of following?

a=10

b=7

print(a is not b)

2 / 24

What is an operand?

3 / 24

What is the result of following?

str='School'

print('o' in str)

4 / 24

What is the result of following?

List1=[10,4,20,50]

a=20

print(a in List1)

5 / 24

What is the result of following?

10 <3 and 10<5

6 / 24

What is an result of following?

a=5

a+=9

7 / 24

What is the result of 10%3?

8 / 24

What is the result of following?

a=5b=10print(a is b)

 

9 / 24

What is the result of following?

a=10

b=7

print(a|b)

10 / 24

What is the result of following?

10+5/2

11 / 24

What is the result of following?

(10+5)/(10-5)

12 / 24

What is the result of following?

10 >3 and 10>5

13 / 24

What is the result of following?

List1=[10,4,20,50]

a=30

print(a not in List1)

14 / 24

What is the result of following?

10==10

15 / 24

What is the result of 10//3?

16 / 24

What is the result of following?

a=10

b=7

print(a^b)

17 / 24

What is the result of 2**4?

18 / 24

Which of the following  is an unary operator?

19 / 24

What is an operator?

20 / 24

What is the result of following?

a=10

a%=5

21 / 24

What is the result of following?

T1=('a','b','c','d')

val='e'

print(val in T1)

22 / 24

What is the result of following?

10>3

23 / 24

What is the result of following?

a=10

b=7

print(a&b)

24 / 24

What is the result of following?

not (10 >3)



Spread the love
Lesson tags: python operators, Python operators quiz, quiz of python operators
Back to: CBSE class 11 Computer Science Notes
Spread the love