2.2 Problem solving and programming

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

1/15

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.

16 Terms

1
New cards

IDE

Program which provides a set of tools for programmers to write develop and debug code.

2
New cards

Performance modelling

Mathematical methods used to test various loads on different operating systems.

3
New cards

Recursion

Subroutine calls itself and has a stopping condition.
+
Less lines of code
Easier to make
-
Risk of stack overflow
Difficult to trace

4
New cards

Local variables

Have local scope within the subroutine they were defined in.

5
New cards

Global variables

Can be accessed across the whole program.

6
New cards

Passing by value

A copy of the value is passed to the subroutine and discarded at the end.

7
New cards

Passing by reference

Address of parameter is given to the subroutine and the value will be updated.

8
New cards

OOP

Classes are templates for an object they have attributes and methods.

9
New cards

Encapsulation

Where attributes cannot be directly edited need get/set methods.

10
New cards

Object

A instance of a class.

11
New cards

Divide and conquer

Splits problem down into single sub-problems, solves them all and then merges them all together to make the solution.

12
New cards

Backtracking

Methodically builds a solution based on visited paths found to be correct.

13
New cards

Data mining

Large sets of data collected from a variety of sources which is used to spot trends to make predictions about the future, is often used in business marketing.

14
New cards

Heuristics

Used to find an approximate solution when the standard solution takes too long to find. Not perfectly accurate.

15
New cards

Pipelining

Where different tasks are being developed in parallel.

16
New cards

Visulisation

Making data easier to understand.