While designing an algorithm as a solution to a given problem, we must take care of the following five important characteristics of an algorithm:
1. Finiteness An algorithm must terminate after a finite number of steps and further each step must be executable in finite amount of time. In order to establish a sequence of steps as an algorithm, it should be established that it terminates (in finite number of steps) on all allowed inputs.
2. Definiteness (no ambiguity)Each step of an algorithm must be precisely defined; the action to be carried...