Programming Techniques Flashcards

1
Q

Define recursion

A

When a subroutine calls itself from within its own subroutine

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

State the characteristics of a recursive subroutine

A
  1. Contains a stopping condition - base case
  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 times
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Why does a recursive subroutine need to have a stopping condition?

A

Otherwise it might call itself indefinitely resulting in a stack overflow

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

State an advantage of recursion

A

For certain problems they can be represented in fewer lines of code
- less prone to errors

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

What happens each time a function calls itself?

A

A new stack frame is created within the call stack

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

State a disadvantage of recursion

A
  • Not very memory efficient: it uses stacks which takes up space in memory
  • danger of stack overflow
  • difficult to trace
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is stored in a call stack?

A

Parameters, local variables and return addresses

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

State examples of where recursion is useful

A

Tree Traversal algorithms
Fibonacci sequence

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

Why is a call stack needed?

A

To allow the subroutine to return to the point where it paused its execution

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

Why must a recursive subroutine reach its stopping condition within a finite number of times?

A

Otherwise it may call itself indefinitely, resulting in stack overflow

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

State the characteristics of a local variable

A
  • Declared inside a subroutine
  • Only accessible by that subroutine
  • Created when the subroutine is called
  • Destroyed when the subroutine ends
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

State the characteristics of a global variable

A
  • Declared outside of any subroutine (at the top of the program)
  • Accessible throughout the program
  • Create when the program starts
  • Destroyed when the program ends
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

When can two variables share the same name?

A

When they have different scopes

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

State a disadvantage of global variables

A
  • Make programs hard to maintain, test and debug (considered poor programming practice)
  • can be accidentally overwritten and edited
  • require more memory
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

State an advantage of local variables

A
  • Data cannot be accidentally altered
  • ensures subroutines are self-contained
  • no danger of variables being affected by code outside of the subroutine
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Define modularity

A

The idea of breaking down a large program or problem into smaller chunks

17
Q

What is the aim of modularity?

A

To design a program with modules that each carry out a single specific task

18
Q

Define a procedure

A

A block of code that takes in one or more or no parameters and performs a set task

19
Q

Define a function

A

A block of code that takes in one or more or no parameters, performs a set task and returns a value

20
Q

What is included in the interface of a subroutine?

A
  • The name of the subroutine
  • The list of parameters it requires when called
  • The order of those parameters
  • The data type for those parameters
21
Q

What is passing by value?

A

A copy of the parameter value is passed to the subroutine
- held in a separate memory location (only available to the subroutine)

  • the original value is unaffected
22
Q

What is passing by reference?

A

A pointer that contains the memory address of the original variable is created

  • any change to the value will affect the value of the original variable
23
Q

When a subroutine ‘unwinds’ , what does this mean?

A

It is the process of popping information off the call stack

24
Q

What is a stack overflow?

A

When the call stack runs out of memory

25
Q

Define scope

A

The section of code in which the variable is available/accessible

26
Q

State a disadvantage of local variables

A
  • do not enable data sharing
  • limited scope
  • destroyed once the subroutine ends
27
Q

State an advantage of global variables

A
  • enable data sharing
  • useful for values that need to be used by multiple parts of the program
28
Q

If a local variable exists in a subroutine with a global variable of the same name, what will happen?

A

The local variable will take precedence