Programming techniques

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/11

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

12 Terms

1
New cards

local variable

has limited scope and can only be accessed by the block of code in which they were defined. They are useful as they ensure the subroutines are self-contained, so that the variables are not affected by the code outside of the subroutine

2
New cards

global variable

can be accessed across the whole program. Useful for when needing to access a certain variable by multiple parts of the progmra, but may be unintentionally overwritten and requires more memory

3
New cards

modular programming

a programming technique used to split large, complex programs into smaller, self-contained modules

4
New cards

advantages of modular programming

can divide tasks between a team, simplifies the process of testing and maintenance, each component can be dealt with individually, each modules can be reused

5
New cards

top-down approach/stepwise refinement

problem is continually broken down into sub-problems until each task is represented as an individual, self-contained code

6
New cards

Procedures

can return multiple values

7
New cards

function

only returns a value

8
New cards

stepping

executing a line of code at a time to monitor the effect

9
New cards

variable watch

observe how the contents of a variable change through the execution of a program

10
New cards

breakpoint

set a point in the program where it will stop executing

11
New cards

source code editor

autocompletion, indentation, syntax highlighting, automatic bracket completion

12
New cards

debugging tools

run-time detection of errors detects where in the code likely caused the error