Question: 1 -
what will be value of the following python expression?4 + 3 % 5
-
4
-
2
-
7
-
1
Answer:
7
Solution not available.
Question: 2 -
Is Python code compiled or interpreted?
-
Python code is only interpreted
-
Python code is neither compiled nor interpreted
-
Python code is only compiled
-
Is Python code compiled or interpreted?
Answer:
Python code is neither compiled nor interpreted
Solution not available.
Question: 3 -
which type of programming does python support?
-
structured programming
-
objected-oriented programming
-
functional programming
-
all of the above
Answer:
all of the above
Solution not available.
Question: 4 -
is python case sensitive when dealing with identifiers?
-
no
-
machine dependent
-
NONE
-
yes
Answer:
yes
Solution not available.
Question: 5 -
a = 8.3
b = 2
print a//b
-
4.15
-
4.0
-
4.1
-
4
Answer:
4