Unit 7 Software engineering

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

1/11

flashcard set

Earn XP

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

12 Terms

1
New cards

Editor

Allows programmer to enter, format and edit source code

2
New cards

Compiler

Converts source code into executeable machine code. Once compiled, a program can be run at any time

3
New cards

Interpreter

Convert each line of source code into machine code, and execute it line by line. The conversion process is performed each time the program needs to be run

4
New cards

Linker

A program which allows previously compiled code from software libraries to be linked together

5
New cards

Loader

A program which helps locate, identify and rectify errors in a program

6
New cards

Trace

A facility which displays the order in which the lines of a program are executed, and possible values of the variable

7
New cards

Break point

A facility which interrupts a program on a specific line of code, allowing the programmer to compare the values of variables against expected value.

8
New cards

Variable watch

A facility which displays the current value of any variable.

9
New cards

Memory inspector

A facility which will display the content of a section of a memory

10
New cards

Error diagnostic

Used when a program fail to compiler or to run. Error message is also displayed to help the programmer diagnose what have gone wrong

11
New cards

Libraries and its advantages

It is a collection of commonly used private functions and subprograms.

Advantages:

  1. Private function and subprograms are stored in the same location

  2. Save time as programmer can use the private function and subprograms in there

  3. Have already been tested which mean they should work well

  4. Contain less code, therefore easier to maintain

12
New cards