Y8 Python KO quiz 1

Y8 Python KO quiz 1

8th Grade

7 Qs

quiz-placeholder

Similar activities

Year 7 March

Year 7 March

8th Grade

10 Qs

Technology Terms programming

Technology Terms programming

3rd - 8th Grade

10 Qs

Coding - Computer Programming

Coding - Computer Programming

KG - University

10 Qs

Python Programming

Python Programming

7th - 9th Grade

10 Qs

Computing Creative Design Quiz

Computing Creative Design Quiz

2nd Grade - University

11 Qs

Introduction to Computer Science

Introduction to Computer Science

1st - 9th Grade

10 Qs

Computer Science Discoveries Unit 1

Computer Science Discoveries Unit 1

7th - 8th Grade

9 Qs

Basic Coding Terminology

Basic Coding Terminology

6th - 8th Grade

10 Qs

Y8 Python KO quiz 1

Y8 Python KO quiz 1

Assessment

Quiz

Computers

8th Grade

Hard

Created by

Hannah Stuart

Used 1+ times

FREE Resource

7 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is....?

"A set of instructions or rules that need to be followed in order to perform calculations or solve a problem"

Algorithm

Sequence

Assign

Variable

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is...?

"A set of instructions or rules that an algorithm uses have to be in the right order.  Instructions in the correct, logical order are called a ‘sequence’"

Assign

Algorithm

Data Type

Sequence

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is...?

"When we set a variable to a given value, we are assigning it.  For example in my_var=3 we are assigning the value 3 to the variable called ‘my_var’."

Algorithm

Assign

Sequence

Variable

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How many data types are there in Python?

1

2

3

4

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which data type would you use for whole numbers?

string

integer

float

Boolean

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which data type would you use for text?

string

integer

float

Boolean

7.

FILL IN THE BLANK QUESTION

1 min • 1 pt

A ________ is a name given to an item of data so that the data can be stored in memory while your Python program is running. Variables enable you to input data from the keyboard and to change the data however you need to.