NEW
Font size
WorksheetsPython (The Basics)
Total questions: 20
Worksheet time: 10mins
num1 = 93. num1 is a ...
Integer
operator
value
variable
Which operator is the division symbol?
+
*
/
\
which operator is the whole number division symbol ?
/
\
//
*
What is the function that displays a message on the screen ?
print()
input()
int(input())
write()
What is the function that takes in the user's text value input ?
print()
input()
int(input())
apple juice
How do you ask the user to type in a whole number value?
int(input())
input()
input(int())
Ask them to fill out a survey
Whenever you take in a user input value, the value must be stored inside a..
a safe
another value
variable
a pizza box
Which of these is correctly coded?
num = int(input()
num = int(input('Please enter a number: ')
num = int(input('Please enter your age: '))
num = input('Enter a number value )
Which of these is incorrect?
name = input()
name = input('Please enter your name: ')
name = input('Please enter the name of your cat: ')
name = print('Please enter your name: ')
What is Python named after?
A snake
A movie called "Monty Python's Holy Grail"
A villain from an old school TV show
Nothing
What is the name of the environment in Python that write your programs and then test them out ?
Shell
IDLE
Windows
CLI
What does the term debugging mean?
identifying errors and fixing them
a set of instructions
making a calculation
looking at code
What does the Python print function do ?
Its a variable
it displays something like a string or integer
it can be input data
It loops the code
What symbol do you use to make a comment in Python ?
#
@
)
%
What syntax can you use to inset a break line between strings so that they appear over multiple lines ?
/
\|
\n
n
What is a variable?
A box (memory location) where you store values
Data Type
A Type of Graphics
A Type of Memory
What symbol is used in Python to assign values to a variable?
=
/
+
*
What will the output be?
name = 'Mr.Lannon'
print(name)
Mr.Lannon
Error
'Mr.Lannon'
MrLannon
A syntax error means your code has a 'grammar' mistake or you used symbols/operations incorrectly
True
False
What is Python ?
text based programming language
spreadsheet
word processor
block based programming language
