0% found this document useful (0 votes)
49 views1 page

Computing 7.3 Knowledge Organiser

The document discusses key concepts in Scratch programming including sequence, variables, comparison operators, logic operators, selection, iteration, and debugging. Sequence refers to instructions being executed in turn. Variables store and allow changing of data values. Comparison operators check relationships between values. Logic operators check for both, either, or not conditions. Selection controls the flow of instructions based on true/false evaluations. Iteration repeats a block of code a set number of times or while a condition remains true. Debugging finds and fixes bugs, including logic and syntax errors, that cause unexpected program output.

Uploaded by

Kevin Gregson
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
49 views1 page

Computing 7.3 Knowledge Organiser

The document discusses key concepts in Scratch programming including sequence, variables, comparison operators, logic operators, selection, iteration, and debugging. Sequence refers to instructions being executed in turn. Variables store and allow changing of data values. Comparison operators check relationships between values. Logic operators check for both, either, or not conditions. Selection controls the flow of instructions based on true/false evaluations. Iteration repeats a block of code a set number of times or while a condition remains true. Debugging finds and fixes bugs, including logic and syntax errors, that cause unexpected program output.

Uploaded by

Kevin Gregson
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 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