N5 Computing SDD (up to fixed loops)

N5 Computing SDD (up to fixed loops)

4th Grade

20 Qs

quiz-placeholder

Similar activities

Pseudocode

Pseudocode

4th Grade

20 Qs

Coding Terminology

Coding Terminology

3rd - 12th Grade

18 Qs

Grasshopper App Quiz

Grasshopper App Quiz

4th - 6th Grade

15 Qs

Dash & Dot Programming

Dash & Dot Programming

3rd - 5th Grade

15 Qs

Introduction to Python Quiz - Year 5

Introduction to Python Quiz - Year 5

4th Grade

15 Qs

Python syntax quiz

Python syntax quiz

1st - 4th Grade

15 Qs

P5 Test-2

P5 Test-2

1st - 5th Grade

15 Qs

Selection in Python

Selection in Python

1st - 9th Grade

15 Qs

N5 Computing SDD (up to fixed loops)

N5 Computing SDD (up to fixed loops)

Assessment

Quiz

Computers

4th Grade

Medium

Created by

Sarah Lyon

Used 33+ times

FREE Resource

20 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What type of loop is this?

Fixed

Conditional

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What type of loop is this?

Fixed

Conditional

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What type of loop is this?

Fixed

Conditional

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In programming, what is iteration/looping?

The repetition of steps within a program

The order in which instructions are carried out

A decision point in a program

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What will be printed after running this FOR loop:

for number in range(6):
 
    print(number)
The number 6 
The numbers 0 - 5
The number 5
The numbers 1 - 6

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

How many times does the following program print the word ‘computer’:

word= "computer"  
for num in range(1,6):
 
    print(word)
5
6
1
0

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following programs prints ten lines?

for i in range(10):

print("hi")

for i = 1 to 10:

print("hi")

for i in 1 - 10:

print("hi")

for i from 0 to 9:

print("hi")

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?