untitled

untitled

9th Grade

9 Qs

quiz-placeholder

Similar activities

Python - Abstractions, Comments, Data Types, Variables

Python - Abstractions, Comments, Data Types, Variables

9th - 12th Grade

12 Qs

for---Loop

for---Loop

3rd Grade - University

13 Qs

Python 145

Python 145

4th Grade - Professional Development

11 Qs

Python

Python

4th - 12th Grade

9 Qs

Python Variables

Python Variables

7th - 12th Grade

10 Qs

Python Introduction Quiz

Python Introduction Quiz

8th - 9th Grade

12 Qs

Python - Mid-Assessment

Python - Mid-Assessment

9th Grade

14 Qs

INTRODUCTION TO PYTHON GRADE 9

INTRODUCTION TO PYTHON GRADE 9

9th Grade

10 Qs

untitled

untitled

Assessment

Quiz

Computers

9th Grade

Easy

Created by

Никита Ф

Used 1+ times

FREE Resource

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

20 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

45 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

45 sec • 1 pt

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

4.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

Media Image
What is the name of the programming language we are learning?
Scratch
Python
Pie thin
Scribble

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output?

name = "Dave"

print (name)

Dave

'Dave'

name

(name)

6.

MULTIPLE CHOICE QUESTION

45 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

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