1/7
Name | Mastery | Learn | Test | Matching | Spaced |
---|
No study sessions yet.
Describe the term Algorithm
A sequence of instructions or a set of rules that are followed to complete a taskÂ
A sequence of unambiguous instructionsÂ
A well defined procedure that allows a computer to solve a problemÂ
A set of mechanical or sequential steps that are followed in order to take some form of inputÂ
Methods of Defining an Algorithm?
PseudocodeÂ
FlowchartsÂ
Structured EnglishÂ
What is a variable?
A named location in the Computer's memory that the programmer can use to store data whilst the program is running.
Â
They can change throughout the life of the program.
What is a Constant?
Similar to variables in the fact they can be used for storage of data but once we run the program a constants value can not changeÂ
Example: Â pi = 3.1415Â
What is a Recursive Function?
It's a function that calls itself within itself until a base case is reachedÂ
What are the limitations of using a recursive function?
You can run out of memory (stack space) due to high no. of recursive callsÂ
Difficult to debug (dry run) if it produces incorrect results due to the difficulty of determining which recursive cell made the errorÂ
What’s a Factorial ?
It's any give number that can be calculated by multiplying the numbers below itÂ
Â
example :Â
Factorial of 6 or 6!Â
= 6x5x4x3x2x1 == 720
What’s the difference between Validation & Verification checks
Validation checks occurs before  data is committed to storage it doesn't  account for the accuracy of data
Verification occurs after data is committed to storageÂ