Unit 5 Revision

Unit 5 Revision

7th Grade

8 Qs

quiz-placeholder

Similar activities

ict group 3 quiz

ict group 3 quiz

6th - 7th Grade

11 Qs

Python Inputs

Python Inputs

7th - 8th Grade

10 Qs

Variable warm-up activity

Variable warm-up activity

6th Grade - University

10 Qs

Micro:bit Quiz 2

Micro:bit Quiz 2

6th - 8th Grade

12 Qs

Boolean Scratch Quiz

Boolean Scratch Quiz

6th - 8th Grade

12 Qs

Calculations in Scratch

Calculations in Scratch

7th - 8th Grade

13 Qs

Quarter 3 Progress Check Intro to Programming

Quarter 3 Progress Check Intro to Programming

6th - 8th Grade

12 Qs

Python User Input Quiz

Python User Input Quiz

6th Grade - University

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

test

design

plan

develop

review and evaluate

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