SLR 23 Flashcards

Programming Techniques

1
Q

What is Sequence?

A

Basic code of executing instructions one after another

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

What is Selection?

A

Code which allows the program to change directions depending on the condition (e.g an if statement)

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

What is Iteration?

A

Code which loops

Counter-Controlled Loops are for ‘for’ statements and a Condition-Controlled Loop is for ‘while, do and repeat until’ statements

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

What is recursion?

A

When a subroutine (or function) calls itself within its block

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

What do recursive subroutines require?

A

-A stopping condition
-An input value other than the stopping condition
-There must be finite number of tries

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

What does a variables scope mean?

A

A scope decides if a variable is a local or global variable

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

What are the advantages of local variables?

A

Limited scope prevents changing other parts of the code accidentally, risks conflict of matching variable names

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

What are the disadvantages of local variables?

A

Can’t be accessed outside its block, can become redundant if a local variable is declared in multiple other functions, names must be unique

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

What are the advantages of global variables?

A

Can be accessed throughout the whole program, exists for the entirety of the programs execution, lets data be shared across multiple functions

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

What are the disadvantages of global variables?

A

Can accidentally modify other parts of the code, can cause inefficient memory use if not managed properly, risk of data inconsistency if multiple functions effect the global variable

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

What is a parameter?

A

A parameter is a special kind of variable used in a function to refer to one of the pieces of data provided as input to the function

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

What does it mean by a parameter being passed by value?

A

A local copy of a variable is made in the subroutine the parameter belongs to

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

What does it mean by a parameter being passed by reference?

A

A pointer that contains the memory address of the original variable, meaning the variable in the subroutine also effects the original variable

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

What are the features of an IDE?

A

-Code Editors
-Error Diagnostics
-Runtime Environments
-Translators
-Auto-documentation
-Syntax Highlighting
-Autocompletion

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