Development Stages Flashcards
Compile Time
During compile time the compiler check for the syntax, semantic, and type of the code.
Compile Time Inputs
Source code, dependent files, interfaces, libraries required for successful compilation of the code
Compile Time Outputs
On successful compilation, a complied code (assembly code or relocatable object code), otherwise compile time error messages
Compile Time Syntax Errors
The syntax error occurs because of the wrong syntax of the written code
Compile Time Semantic Errors
Semantic errors occur in reference to variable, function, type declarations and type checking.
Runtime
A program’s life cycle is a runtime when the program is in execution
Runtime Errors
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