Data Types & Pseudocode [OCR GCSE]

Data Types & Pseudocode [OCR GCSE]

11th Grade

9 Qs

quiz-placeholder

Similar activities

vocab quizz

vocab quizz

9th - 12th Grade

7 Qs

ET - Alyssa

ET - Alyssa

10th - 12th Grade

11 Qs

DNA Fingerprinting and Gel Electrophoresis

DNA Fingerprinting and Gel Electrophoresis

9th - 12th Grade

10 Qs

Gel Electrophoresis and DNA Fingerprint

Gel Electrophoresis and DNA Fingerprint

9th - 12th Grade

10 Qs

DNA Fingerprints

DNA Fingerprints

9th - 12th Grade

10 Qs

Macromolecules and pH

Macromolecules and pH

10th - 12th Grade

10 Qs

MCAS Practice Cells and Chemistry #3

MCAS Practice Cells and Chemistry #3

10th - 12th Grade

13 Qs

PHS: Edexcel Health and Disease sB5k Antibiotics

PHS: Edexcel Health and Disease sB5k Antibiotics

9th - 11th Grade

10 Qs

Data Types & Pseudocode [OCR GCSE]

Data Types & Pseudocode [OCR GCSE]

Assessment

Quiz

Biology

11th Grade

Medium

Created by

Samuel Knott

Used 25+ times

FREE Resource

9 questions

Show all answers

1.

MATCH QUESTION

45 sec • 5 pts

Match the following

Can store only whole numbers

Real

Can store decimal numbers

Integer

Can store a single character

String

Can store multiple characters

Boolean

Stores only true or false

Character

2.

FILL IN THE BLANK QUESTION

30 sec • 1 pt

Complete the following pseudocode:

print("Name: ")

name = ______()

print("Hello " + name)

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The following code shows which type of structure:

IF age >= 20 THEN

PRINT("Old timer!")

END IF

Iteration

Sequence

Selection

4.

DRAG AND DROP QUESTION

1 min • 4 pts

A ​ (a)   is a space in memory used to store data. These can store different types of data such as ​ (b)   which allow us to store multiple characters. Another ​ (c)   is a ​ (d)   which allows us to store only true and false values.

variable
strings
data type
Boolean
box

5.

DROPDOWN QUESTION

1 min • 3 pts

The type of test that checks if something it at the edge of the allowed inputs is called ​ (a)   testing. Checking data that is incorrect, or outside of what should be allowed is called ​ (b)   testing. ​ (c)   testing is when you check the inputs that should be allowed.

Boundary
erroneous
Normal
Correct
Edge
error
edge
correct
incorrect
range

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A function returns a value.

True

False

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A subroutine must accept parameters.

True

False

8.

LABELLING QUESTION

45 sec • 3 pts

Lebel the flowchart symbols correctly.

a
b
c
Process
Input/Output
Terminal
Decision

9.

DRAG AND DROP QUESTION

1 min • 3 pts

The following array has ​ (a)   elements. The first element will have the index of ​ (b)   . The last element will have the index of ​ (c)   .

myArray = ['a', 'f', 'r', 'p', 'b']

5
0
4
6
3
b