Problem solving/ Algorithm Flashcards
What is Problem solving?
Creating a set of instructions that when executed accepts input and produces meaningful information.
What is an Algorithm?
A sequence if instructions which solves a problem
What are the steps in problem solving?
- Define the problem
- Propose and evaluate the solutions
- Determine the best solution
- Develop the algorithm
- Represent the algorithm using pseudo code or flowchart
- Test the solutions
What is the Divide and Conquer Approach?
Repeatedly split a large problem into a smaller sub problem until a complete solution is identified.
What is a variable?
Area of storage whose value changes during processing. Eg. Price
What is a constant?
An area of storage whose value does not change during processing. Eg. Pi is always 3.14
What is an identifier?
A name given to a variable/constant by a programmer.
What are characteristics of a good algorithm?
•It must be precise
•It must be unambiguous
•It must be in a logical sequence
•It must have a finite number of steps or it must end.
What are data types?
It specifies what values a variable or constant can hold.
Integer
Whole numbers
Real
Any number that contains a decimal place.
String
Text or sequence of characters.
Cher
A single character found on a keyboard.
Bolean
True or False/ Yes or no
What are the types of Algorithms?
Pseudocodes and Flowcharts
What is a pseudocode?
Lists in words the steps to solve a problem in a structured way.
What are Flowcharts?
A diagrammatic way to represent an algorithm.
What are the Control structures?
•Sequential Statements
•Selection or Conditional statements
•Repetition/Loop/Iteration
What is sequential statements?
Every line of the algorithm is carried out in the order it was written.
What are Selection) Conditional statements
Not every line if the algorithm is carried out. It will be carried out based on a condition.
What are Repetition/Iteration/Loop statements?
Some lines may be repeated until a condition is satisfied.
When are IF THEN statements used?
When one option is given based on a condition.
When are IF THEN ELSE statements used?
When two options are given based on a condition.
What are the 2 types of loops?
•Definite/ Bounded Loop
•Indefinite/ Unbounded Loop
What are Definite/ Bounded Loops?
Where you know how many times to repeat the loop.
What are Indefinite/Unbounded Loops?
Where you do not know how many times to repeat the loop.
When is the FOR loop used?
It is used only when the start value and end values are known.
What is the form of the FOR Loop?
FOR <variable> = <start> TO <end> DO
{statement to be repeated}
End for
STOP</end></start></variable>