1.
Which of the following is not applicable for Python
2.
Which one of the following is membership operator
3.
Python uses a/an ________________to convert source code to object code
4.
List sequence is represented using the Square Bracket [ ]. This statement is
5.
Which one of the following is not a valid Keyword
6.
Python variables support dynamic typing. This statement is
7.
You can rename a keyword. This statement is
8.
Short cut key to run Python code in script mode is
9.
Example of two augmented assignment operator is
10.
Which of the following can be used to create comments?
11.
Example of Mutable data type is
12.
+, - operators have less priority over *,/ operator. This statement is
13.
x=5//2+4*2**2. Value of x is
14.
Python code can run on variety of platforms, it means Python is a ______________ language
15.
Identity operator in Python are
16.
Which of the following is floor division operator in Python
17.
Escape sequence are treated as
18.
Expressions contain values/variables along with operators. This statement is
19.
_____________ are fixed values in Python
20.
Which one of the following is not an Arithmetic operator?
21.
a=5, b=3, c=a**b. print(c) will result
22.
____________is a word having special meaning reserved by programming language
23.
Which one of following are valid identifiers
24.
Non-executable, additional lines added to a program, are known as _____________
25.
tp=(10,20,30,40). print(tp[-1) will result