Programming Flashcards
It is the process of creating a computer program.
Programming
It is a list of instruction that the computer must follow in order to process data into information.
Program
It is the person who writes and debugs computer programs.
Programmer
It is an artificial language used to write instructions that can be translated into machine language and executed by a computer.
Programming language
This step determines the logic that the program will follow.
Program design
A narrative design of the program using English-like statements to describe the logic and the processing flow.
Pseudocode
It utilizes symbols to represent the detailed series of steps needed to solve the programming problem.
Flowchart
It is the step where you can write the program.
Program coding
This is done to verify the results or the output of the program.
Program testing
It is the reading through or checking the program to make sure that it is free of errors and that the logic works.
Desk-checking
It is the process of detecting, locating, and removing all errors in a computer program.
Debugging
It is an error within a program code that keeps the computer from producing the desired result.
Bug
It involves the program being tested with real-life data.
User acceptance testing
This is writing a description of the program’s purpose and processes.
Program documentation
This is a structure wherein one program statement follows another in sequential order.
Sequence control structure.