Unit 7 Software engineering

studied byStudied by 0 people
0.0(0)
learn
LearnA personalized and smart learning plan
exam
Practice TestTake a test on your terms and definitions
spaced repetition
Spaced RepetitionScientifically backed study method
heart puzzle
Matching GameHow quick can you match all your cards?
flashcards
FlashcardsStudy terms and definitions

1 / 11

flashcard set

Earn XP

12 Terms

1

Editor

Allows programmer to enter, format and edit source code

New cards
2

Compiler

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

New cards
3

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

New cards
4

Linker

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

New cards
5

Loader

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

New cards
6

Trace

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

New cards
7

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.

New cards
8

Variable watch

A facility which displays the current value of any variable.

New cards
9

Memory inspector

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

New cards
10

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

New cards
11

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

New cards
12

New cards
robot