Computing 7.3 Knowledge Organiser

You might also like

Download as pdf or txt
Download as pdf or txt
You are on page 1of 1

7.

3 Co mp ut i n g Scratch Programming 1
Sequence Comparison operators Bugs
Instructions , Code that causes your program
with each executed in turn. Operator Use to .
> Greater than
< Less than Debugging
= Equal to Finding in your program
and taking steps to fix them.
Logic operators
Variable Operator Use Logic Errors
The name of a Errors in your program that cause
and Check for both values
where date is being stored. It to output unexpected results.
or Check for either value
The value can change whilst the
program is running. not Check its not this value Syntax Errors
Errors in your program that don’t
Iteration follow the rules of the language.
A group of instructions that are Doesn’t apply to block based
(looping). programming like scratch.
Selection Count controlled iteration
An expression that will be evaluated
Repeating a set of instructions Computer Basics
as either or . Uses
for a . Sequence, selection and iteration
to control the of a
sequence. are all processes, but computers
need more to perform tasks.
This block displays
numbers 1 - 10 as
? It repeats/iterates
10 times.
T

You might also like