Design Notation Flashcards
Why is programme design important?
If errors are discovered in the design section then it can save time and money, and means the error is easier to correct.
Name 3 types of design notation?
Flow charts, Pseudocode, Structure diagram/chart.
The psuedocode used in the exam is called ‘Haggis’.
.
Why is Psuedocode a good design notation to use?
It is similar to how the actual program may look.
What is a flowchart?
A flowchart is a diagram which uses shaped boxes with text inside to describe the program and the steps it will follow.
What is Psuedocode?
Psuedocode is written using English words, it resembles a simplified programming language.
What is a diamond shape in a flow chart?
A choice.
What is a rectangle in a flow chart?
A process/task/action/operation.
What is a structure diagram?
This is similar to a flow chart but instead of outlining steps and the order, this breaks down the individual steps.
What is a predefined function?
A command that the programming language has built in, for example ‘ask’, ‘put’ etc in LiveCode
What is a user defined function?
A function which the user writes the code for and saves as a function so that there is less copying and pasting of code.