Class 12 : Review Of Python Basics

Home Page class 12 @ Python

Class 12 : Python

Python Basics
Data Types
String
List
Tuple
Dictionary
Flow of Execution
Mutable and Immutable Types
Type Casting

Class 12 : Python Revision MCQs

Revision Tour MCQs

CBSE Class 12 Revision Tour MCQs 6

26.
Which of these relational operator has highest operator precedence?

a. <
b. >=
c. <=
d. ==

 

27.
Which of the followiing logical operator will evaluate first?

a. and
b. or
c. not
d. is not

 

28.
How a>b>c will be interpreted by python?

a. a>b or a>c
b. a>b not a>c
c. a>b and a>c
d. a>b && a>c

 

29.
Which of the following statement is correct for and operator?

a. Python only evaluates the second argument if the first one is False
b. Python only evaluates the second argument if the first one is True
c. Python only evaluates True if any one argument is True
d. Python only evaluates False if any one argument is False

 

30.
Which of the following forces an expression to be converted into specific type?

a. implicit type casting
b. mutable type casting
c. immutable type casting
d. explicit type casting