Year 9 - Python Skills L3

Year 9 - Python Skills L3

4th - 10th Grade

8 Qs

quiz-placeholder

Similar activities

Основы Python

Основы Python

6th Grade

12 Qs

Python

Python

4th - 12th Grade

9 Qs

Python CodeHS Quiz

Python CodeHS Quiz

10th - 12th Grade

10 Qs

Python for Class 7

Python for Class 7

7th - 8th Grade

11 Qs

Mansi MCQs Assessment

Mansi MCQs Assessment

7th Grade

10 Qs

Python

Python

7th - 8th Grade

13 Qs

Python

Python

7th - 8th Grade

10 Qs

Python quiz 2

Python quiz 2

7th Grade

10 Qs

Year 9 - Python Skills L3

Year 9 - Python Skills L3

Assessment

Quiz

Computers

4th - 10th Grade

Hard

Created by

Amy Beckett

Used 3+ times

FREE Resource

8 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 symbol is used in python to assign values to a variable?
equals =
plus + 
forward slash /
asterisk *

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output?

name = "Dave"

print (name)

Dave

'Dave'

name

(name)

4.

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

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

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

6.

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")

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the purpose of the ** operator

Remainder Divison

Double Multiplication

Power Numbers (Exponents)

Multiplication

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What number will be outputted?

5.268

5.26

5.3

5.27