InterviewSolution
Saved Bookmarks
| 1. |
Write some properties of algorithm. |
|
Answer» Some properties of the algorithm are : 1. An algorithm should terminate after the finite number of steps. 2. An algorithm should be simple so that anyone can understand them properly. 3. An algorithm should be universal and lead to a unique solution to the problem. 4. An algorithm should have the capability to handle some unexpected situations which may arise during the solution of a particular problem. 5. An algorithm should be able to solve all problems of a particular type for which it is designed. |
|