Pseudocode Quiz

Pseudocode Quiz

10th Grade

14 Qs

quiz-placeholder

Similar activities

Arrays in Swift

Arrays in Swift

10th - 12th Grade

13 Qs

Programming - Selection in an Algorithm

Programming - Selection in an Algorithm

1st - 11th Grade

10 Qs

IGCSE Computer Science - Chapter 9: Problem-Solving and Design

IGCSE Computer Science - Chapter 9: Problem-Solving and Design

9th - 10th Grade

10 Qs

GCSE Unit 2 Prep - pseudocode

GCSE Unit 2 Prep - pseudocode

10th Grade

10 Qs

Flow charts and pseudo code

Flow charts and pseudo code

9th - 11th Grade

16 Qs

Algorithm

Algorithm

10th - 11th Grade

15 Qs

coding

coding

KG - Professional Development

15 Qs

Nat 5 Standard Algorithms + Predefined Functions

Nat 5 Standard Algorithms + Predefined Functions

8th - 10th Grade

10 Qs

Pseudocode Quiz

Pseudocode Quiz

Assessment

Quiz

Computers

10th Grade

Medium

Used 2+ times

FREE Resource

14 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 5 pts

A condition is

a statement that is either True or False

a string

an integer

a list

2.

FILL IN THE BLANK QUESTION

30 sec • 5 pts

____________________ is an artificial and informal language that helps programmers develop algorithms.

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do we declare a variable in Pseudocode? (example variable of age is being used)

DECLARE Age : INTEGER

SET Age to INTEGER

DECLARE Age as Interger

Age <- INTEGER

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you assign a value to a variable (or constant) in pseudocode?

Age = 14

Age <- 14

DECLARE Age <- 14

Age == 14

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you check if a value is equal to another in Pseudocode? (IF statement example)

IF Age = 14 THEN

IF Age == 14 THEN

IF Age EQUAL TO 14 THEN

IF Is Age = 14 THEN

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you check if a value is less than or equal to in pseudocode? (IF statement example)

IF Age < 14 THEN

IF Age <= 14 THEN

IF Age LESS THAN OR EQUAL TO 14 THEN

IF Age >= 14 THEN

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you check if a value is not equal to another in Pseudocode? (IF Statement example).

IF Age =! 14 THEN

IF Age NOT EQUAL 14 THEN

IF Age != 14 THEN

IF Age <> 14 THEN

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?