No student devices needed. Know more
25 questions
Is python an interpreter or compiler programming language?
Compiler
Interpreter
Python is uses braces to block off code
True
False
Python uses indentation to block code into chunks
True
False
What is the value of the expression 100 / 25?
4
4.0
"4.0"
'4.0'
Which is the correct operator for power(x^y)?
X^y
X**y
X^^y
None of the mentioned
What is the answer of this expression, 22 % 3 is?
7
1
0
5
x = 5
print(x > 3 and x < 10)
True
False
x = "5"
y = 5
print(x == y)
True
False
x = 5
x%=3
print(x)
2
2.0
3
3.0
Select the operators in python
and
&&
||
not
in
Explore all questions with a free account