Y8 Python KO quiz 1

Y8 Python KO quiz 1

8th Grade

7 Qs

quiz-placeholder

Similar activities

2.1 Algorithms and Computational Thinking

2.1 Algorithms and Computational Thinking

8th - 11th Grade

10 Qs

Intro to Python

Intro to Python

KG - University

10 Qs

Python

Python

7th - 8th Grade

10 Qs

Lourdes Amaranta Ayala Gracia

Lourdes Amaranta Ayala Gracia

8th Grade - University

10 Qs

KS3 - Programming Key terms

KS3 - Programming Key terms

8th Grade

11 Qs

Y8 Flow Diagrams

Y8 Flow Diagrams

8th Grade

10 Qs

KS3 - Programming Key terms

KS3 - Programming Key terms

8th Grade

11 Qs

Variables Computer Science

Variables Computer Science

5th - 10th 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.