Unit 5 Revision

Unit 5 Revision

7th Grade

8 Qs

quiz-placeholder

Similar activities

Week 5 Quizziz

Week 5 Quizziz

6th - 8th Grade

12 Qs

AstepI Quiz 5

AstepI Quiz 5

4th - 8th Grade

10 Qs

Micro:bit

Micro:bit

4th Grade - University

12 Qs

Python Programming Basics

Python Programming Basics

7th - 11th Grade

12 Qs

F3 CL Python Ch01

F3 CL Python Ch01

1st - 12th Grade

10 Qs

Data Types - Introduction to Python

Data Types - Introduction to Python

6th - 7th Grade

9 Qs

Input & Logic

Input & Logic

7th Grade

10 Qs

Be a Perfect Programmer with Scratch

Be a Perfect Programmer with Scratch

7th Grade

10 Qs

Unit 5 Revision

Unit 5 Revision

Assessment

Quiz

Computers

7th Grade

Easy

Created by

Game Master

Used 1+ times

FREE Resource

8 questions

Show all answers

1.

FILL IN THE BLANK QUESTION

1 min • 1 pt

This refers to a value that can be changed during the execution of a program

2.

FILL IN THE BLANK QUESTION

1 min • 1 pt

This refers to the breakdown of a large problem, complex problem into a smaller and manageable parts

3.

DROPDOWN QUESTION

1 min • 1 pt

What is the data type of the given variable?

Name = "Jenny"​ (a)  

string
boolean
integer
float
real

4.

DROPDOWN QUESTION

1 min • 1 pt

What type of data type is used for this variable:

student = True​ (a)  

boolean
string
integer
real
float

5.

DROPDOWN QUESTION

1 min • 1 pt

What kind of data type is used in this variable:

phone = "0773551678"​ (a)  

string
boolean
integer
real
float

6.

REORDER QUESTION

1 min • 1 pt

Reorder the iterative development process according to it's order

review and evaluate

plan

test

design

develop

7.

DROPDOWN QUESTION

1 min • 1 pt

Linear development is the process of a straight path from start to finish. each step builds directly on the one before it, without skipping the steps. what are the advantages of iterative development when creating a project compared to Linear development?​ ​ ​ (a)   ​ ​ (b)   ​ ​ (c)  

early problem detection
continuous improvement
better risk management
Easier to manage in small projects
Predictable
Less complex in small teams

8.

DRAG AND DROP QUESTION

1 min • 1 pt

Check the following Pseudocode:
START
INPUT age
IF age > 10 THEN
OUTPUT "Welcome to middle school"
ELSE
OUTPUT "you must be in primary"
ENDIF
STOP

What should be the input in the Pseudocode give? ​ ​ (a)  

Give an example input from 10-12: ​ (b)   ​ (c)  

if the input is more than 10, what should happen? ​ (d)  

if the input is less than 10, what should be the output? ​ (e)  

age
11
12
9
13
welcome to middle school
you must be in primary