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