Python Revision Tour I and II MCQs with Answers
Hi Students i have given 70 Important MCQ’s with Answers of Python Revision Tour I and II for Class 12 CBSE, for demo i have given 10 questions here and you can download all the 70 Python Revision Tour I and II MCQs with Answers | Objective Type Questions using given link below.
Type –A- MCQ
(a) my_day_2
(b) 2nd_day
(c)Day_two
(d) _2
2. Which of the following is not a keyword?
(a) eval
(b) assert
(c) nonlocal
(d) pass
3. Which of the following cannot be a variable?
(a) __init__
(b) in
(c) it
(d) on
4. Which of these is not a core data type?
(a) Lists
(b) Dictionary
(c) Tuples
(d) Class
5. How would you write xy in Python as an expression?
(a) x^y
(b) x**y
(c) x^^y
(d) none of these
You can also check Python Data Structures Stacks and Queues
6. What will be the value of the expression?
14 +13 % 15
(a) 14
(b) 27
(c) 12
(d) 0
7. Evaluate the expression given below if A = 16
and B = 15.
A%B//A
(a) 0.0
(b) 0
(c) 1.0
(d) 1
8. What is the value of x?
x = int(13.25 4/2)
(a) 17
(b) 14
(c) 15
(d) 23
9. The expression 8/4/2 will evaluate equivalent
to which of the following expressions:
(a) 8/(4/2)
(b) (8/4)/2
10. Which among the following list of operators
has the highest precedence?
+ , -, **, %, /, << , >>, |
(a) <<, >>
(b) **
(c) |
(d) %