2.2.1 Programming Techniques Flashcards

1
Q

What are the 3 conditions for Recursion

A
  1. Contains a stopping condition
  2. For any input value other than the stopping condition, the subroutine should call itself
  3. The stopping condition should be reachable within a finite number of time.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Compare iteration and recursion, which is more memory efficient?

A

Iteration.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Advantages of recursion

A

For certain problems, they can be represented in fewer lines of code — less prone to error

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Disadvantages of recursion

A
  1. 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.
  2. Difficult to trace
  3. Stack overflow – call stack runs out of memory
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Define Sequence

A

A programming constructs that code is executed line by line.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Define branching/selection

A

A certain block of code is run if a specific condition (write the exact condition in the question) is met.
Using IF statement

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Define iteration

A

A block of code is executed a certain number of times or while a condition is met

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Two types of iteration with examples

A

Count controlled : for
Condition controlled : while, repeat until

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Define recursion

A

A programming construct in which a subroutine calls itself during its execution, until a certain condition is met.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

State and explain some features of an IDE

A
  • 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
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Define class

A

A template for an object and defines the state and behaviour of an object

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What are the two things define the objects’ properties and the action of the object

A

Attributes and Methods

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Define Instantiation

A

Use a class to create an object

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Define an object

A

An particular instance of a class

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Define Encapsulation

A

A technique used to implement the principle of information hiding

Attributes are declared as private and can only be altered by public methods

How well did you know this?
1
Not at all
2
3
4
5
Perfectly