NEW
Font size
WorksheetsPython basics
Total questions: 16
Worksheet time: 8mins
What is a correct syntax to output "Hello World" in Python?
echo("Hello World")
echo "Hello World"
print("Hello World")
PRINT("Hello World")
How do you insert COMMENTS in Python code?
/*this is a comment
//this is a comment
#this is a comment
Which one is NOT a legal variable name?
my_var
myvar
_myvar
my-var
What is the correct file extension for Python files?
.py
.pt
.pyt
.pyth
In Python, 'Hello', is the same as "Hello"
yes
no
Which operator can be used to compare two values?
=
<>
><
==
How do you create a variable with the numeric value 5?
Both are correct
x=5
x=int(5)
How do you create a variable with the floating number 2.8?
x=2.8
x=float(2.8)
both are correct
If num1 = 5
num2 = 6
then what will be the output of num1*num2
11
6
30
-1
If num1 = 3
num2 = 4
then what will be the output of num1 ** num2
3
7
12
81
Which of the following is an acceptable variable name?
no-text
8text
no_text
no_text$
What is the name of the environment in Python that write your programs and then test them out?
Shell
Window
IDLE
CLI
What button do you press to compile (run) your program so that it runs in the shell?
F3
F5
F7
F11
What symbol do you use to make a comment in Python?
@
:
;
#
"def" keyword is used in python to-
def is a variable
define a new conditional variable
use conditional
define a new function
Which operator checks if a value is equal to another value?
+
-
==
!=
