2.2.1 Programming Techniques Flashcards
What are the 3 conditions for Recursion
- Contains a stopping condition
- For any input value other than the stopping condition, the subroutine should call itself
- The stopping condition should be reachable within a finite number of time.
Compare iteration and recursion, which is more memory efficient?
Iteration.
Advantages of recursion
For certain problems, they can be represented in fewer lines of code — less prone to error
Disadvantages of recursion
-
Inefficient use of memory
In recursive approach, every time a recursive function calls itself, the processor needs to remember where it was before it jumps to the new copy.
The processor also needs to remember that values of all the previous variables using stacks, which takes up space in memory. - Difficult to trace
- Stack overflow – call stack runs out of memory
Define Sequence
A programming constructs that code is executed line by line.
Define branching/selection
A certain block of code is run if a specific condition (write the exact condition in the question) is met.
Using IF statement
Define iteration
A block of code is executed a certain number of times or while a condition is met
Two types of iteration with examples
Count controlled : for
Condition controlled : while, repeat until
Define recursion
A programming construct in which a subroutine calls itself during its execution, until a certain condition is met.
State and explain some features of an IDE
- Auto complete : predict the word that gonna be typed in to avoid spelling mistakes
- Syntax highlighting : run one line at a time to check result
- Stepping : can identify features (reserved word) quickly
- Breakpoint : stop the code at set point to check variables, helping debug
Define class
A template for an object and defines the state and behaviour of an object
What are the two things define the objects’ properties and the action of the object
Attributes and Methods
Define Instantiation
Use a class to create an object
Define an object
An particular instance of a class
Define Encapsulation
A technique used to implement the principle of information hiding
Attributes are declared as private and can only be altered by public methods