Answer :
The concept of an algorithm simply refers to the procedure that is used in problem-solving.
The description of the common algorithmic techniques and solutions are:
- Brute-force or exhaustive search.
- Divide and Conquer.
- Greedy Algorithms.
- Dynamic Programming.
- Branch and Bound Algorithm.
- Randomized Algorithm.
- Backtracking.
The sample flowchart:
START
Input
VALUE1,VALUE2
is
VALUE1>VALUE2
If yes
MAX VALUE1
If no
MAX VALUE2
“The largest value is”, MAX
STOP
Read more about flowcharts here:
https://brainly.com/question/6532130
#SPJ1