What is readability?
How easily program code can be understood.
What are three ways of enhancing readability?
What is an error?
An occurrence of an unexpected result.
What are three types of errors?
What is a Test Plan?
A document outlining the stages of the testing process.
In a test plan, what are three categories that test data is usually put into?
What is a Trace Table?
A method used to test for Logic Errors
What is an Integrated Development Environment (IDE) ?
An application that provides a selection of tools for programmers whilst coding.
What is debugging?
The process of finding and removing errors.
What is a Watcher?
A tool that ‘watches’ anything specified by the programmer.
What is a Breakpoint?
A tool that allows a programmer to halt the programmer’s execution at specified points.
What is ‘Stepping’ ?
The process of executing the program line by line.
What are four factors that make up a good program?
What two purposes does Declaration serve?
2. To ensure the compiler interprets and uses instructions correctly
What is a Command?
Instructs the computer to do something specific.
What is a Conditional?
A statement that evaluate to True or False (Boolean)
What are the three types of Control Constructs?
How does a Sequence Construct work?
Each line follows the previous line (all lines are executed)
How does a Selection Construct work?
Decisions are made that choose the program’s execution
How does a Repetition Construct work?
Code is repeated (looped) until specified conditions are met.
What are the 5 Data Types?
What is a variable?
A location in the memory containing data values.
What are Constants?
Identifiers associated with values that remain fixed during the program’s execution.
Why are variables used?
Allows you to store a value that can be used later on.