Python

Python

4th - 12th Grade

9 Qs

quiz-placeholder

Similar activities

Programming Quiz 2

Programming Quiz 2

11th Grade

13 Qs

9.2 Further programming

9.2 Further programming

9th Grade

12 Qs

Python Programming

Python Programming

7th - 9th Grade

10 Qs

Python - Week 1

Python - Week 1

8th - 10th Grade

10 Qs

Python Programming Basics

Python Programming Basics

7th - 11th Grade

12 Qs

Program Development - Python: Errors

Program Development - Python: Errors

8th - 10th Grade

13 Qs

Python Boolean

Python Boolean

11th - 12th Grade

11 Qs

Python   Inputs

Python Inputs

9th - 12th Grade

11 Qs

Python

Python

Assessment

Quiz

Computers

4th - 12th Grade

Medium

Created by

Kaiden Timm

Used 4+ times

FREE Resource

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the word (command) used to display numbers and text on the screen?
print
input
output
command

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is a variable?
A box(memory location) where you store values
a type of graphics
Data type
a type of memory

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What symbol is used in python to assign values to a variable?
equals =
plus + 
forward slash /
asterisk *

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output?

name = "Dave"

print (name)

Dave

'Dave'

name

(name)

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

When you have an error in your code what is the term to summarise finding and fixing that error?
Error checking
Debugging
Syntax finder
Error finder

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A syntax error means your code has a 'grammar' mistake or you used symbols/operations incorrectly
True
False

7.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What is Python?
text based programming language
word processor 
spreadsheet
block based programming language

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What Python command lets the user enter an answer to a question?
answer()
open()
print()
input()

9.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which statement correctly assigns the string "Tanner" to the variable name?
name  = print( "Tanner")
input("Tanner")
name = "Tanner"
name = input("Tanner")