module 9: business process modeling & coding Flashcards
what is an algorithm
a process or set of rules to be followed in calculations or other problem-solving operations, especially by a compute
Software is the collection of instructions that tell a computer what to do. Instructions for a computer are called
code
Codes are used to____ a computer so that it can perform useful tasks,
program
the act of writing computer codes is called ____
programming or coding
A set of instructions (codes) that complete a task is an ____
algorithm
This is very similar to a set of instructions for cooking a entre that is called ____
a recipe
Three simple programming structures provide the foundation for all logic within any software program.
sequence
selections
conditions
what is sequence?
a series of actions done in a specific order to complete a task.
what is selection?( or conditions)
which amounts to answering a true/false question based on data and calculation, then pursuing one set of actions if the answer is true, or a different set of actions if the answer is false.
what is loops?
instruct the computer to repeat a set of actions over and over again until a condition becomes false.