Development Stages Flashcards

1
Q

Compile Time

A

During compile time the compiler check for the syntax, semantic, and type of the code.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Compile Time Inputs

A

Source code, dependent files, interfaces, libraries required for successful compilation of the code

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Compile Time Outputs

A

On successful compilation, a complied code (assembly code or relocatable object code), otherwise compile time error messages

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Compile Time Syntax Errors

A

The syntax error occurs because of the wrong syntax of the written code

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Compile Time Semantic Errors

A

Semantic errors occur in reference to variable, function, type declarations and type checking.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Runtime

A

A program’s life cycle is a runtime when the program is in execution

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Runtime Errors

A

Division by zero – when a number is divided by zero (0)
Dereferencing a null pointer – when a program attempts to access memory with a NULL
Running out of memory – when a computer has no memory to allocate to programs

How well did you know this?
1
Not at all
2
3
4
5
Perfectly