Question 1
Question
What is answer of this expression, 22 % 3 is?
Question 2
Question
What is the output of this expression, 3*1**3?
Question 3
Question
What is the maximum possible length of an identifier?
Answer
-
31 characters
-
63 characters
-
79 characters
-
none of the mentioned
Question 4
Question
What is the output of the code shown below?
not(3>4)
not(1&1)
Answer
-
TrueTrue
-
TrueFalse
-
FalseTrue
-
FalseFalse
Question 5
Question
Select the reserved keyword in python
Answer
-
else
-
import
-
raise
-
All of these
Question 6
Question
Which of the following symbols are used for comments in Python?
Question 7
Question
Are nested if-else are allowed in Python?
Question 8
Question
a = 8.6
b = 2
print a//b
Answer
-
4.3
-
4.0
-
4
-
compilation error
Question 9
Question
Which statement is correct....??
Question 10
Question
Which of the following data type is used to store values in key and value format?
Answer
-
Class
-
List
-
Tuple
-
Dictionary
Question 11
Question
Which of the following operators is used to get accurate result (i.e fraction part also) in case of division ?
Question 12
Question
19 % 2 in python
Question 13
Question
What is the associativity of Operators with the same precedence?
Question 14
Question
Which of the following has more precedence?
Question 15
Question
Tuple is mutable.