SLR 23 Flashcards
Programming Techniques
What is Sequence?
Basic code of executing instructions one after another
What is Selection?
Code which allows the program to change directions depending on the condition (e.g an if statement)
What is Iteration?
Code which loops
Counter-Controlled Loops are for ‘for’ statements and a Condition-Controlled Loop is for ‘while, do and repeat until’ statements
What is recursion?
When a subroutine (or function) calls itself within its block
What do recursive subroutines require?
-A stopping condition
-An input value other than the stopping condition
-There must be finite number of tries
What does a variables scope mean?
A scope decides if a variable is a local or global variable
What are the advantages of local variables?
Limited scope prevents changing other parts of the code accidentally, risks conflict of matching variable names
What are the disadvantages of local variables?
Can’t be accessed outside its block, can become redundant if a local variable is declared in multiple other functions, names must be unique
What are the advantages of global variables?
Can be accessed throughout the whole program, exists for the entirety of the programs execution, lets data be shared across multiple functions
What are the disadvantages of global variables?
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
What is a parameter?
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
What does it mean by a parameter being passed by value?
A local copy of a variable is made in the subroutine the parameter belongs to
What does it mean by a parameter being passed by reference?
A pointer that contains the memory address of the original variable, meaning the variable in the subroutine also effects the original variable
What are the features of an IDE?
-Code Editors
-Error Diagnostics
-Runtime Environments
-Translators
-Auto-documentation
-Syntax Highlighting
-Autocompletion