Operator in Python MCQs Exercise I

Ques 1 Operator


Which of the following is true about operators?

A Operators is value.
B Operators are used to perform operations on variables and values.
C Both (a) and (b)
D None of the above.

Ques 2 Operator


Which of the following is an Arithmetic operator?

A +
B ~
C ++
D All of these

Ques 3 Operator


Which of the following is not a Logical Operator?

A ~
B and
C or
D None of the above.

Ques 4 Operator


What is the output of the following Python Code?


num=2 ** 3 // 2 % 1 + 5 + 6 ** 2 * 1 + 1
print(num)

A 16
B 32
C 36
D 42