Advertisements
Advertisements
Question
Explain the characteristics of an algorithm.
Answer in Brief
Solution
- Input – Zero or more quantities to be supplied.
- Output – At least one quantity is produced.
- Finiteness – Algorithms must terminate after a finite number of steps.
- Definiteness – All operations should be well defined. For example, operations involving division by zero or taking square root for negative numbers are unacceptable.
- Effectiveness – Every instruction must be carried out effectively.
- Correctness – The algorithms should be error-free.
- Simplicity – Easy to implement.
- Unambiguous – The algorithm should be clear and unambiguous. Each of its steps and its inputs/outputs should be clear and must lead to only one meaning.
- Feasibility – This should be feasible with the available resources.
- Portable – An algorithm should be generic, independent of any programming language or an operating system able to handle all range of inputs.
- Independent – An algorithm should have step-by-step directions, which should be independent of any programming code.
shaalaa.com
Introduction to Algorithmic Strategies
Is there an error in this question or solution?
APPEARS IN
RELATED QUESTIONS
The word comes from the name of a Persian mathematician Abu Ja’far Mohammed ibn-i Musa al Khowarizmi is called?
Two main measures for the efficiency of an algorithm are ______
The Θ notation in asymptotic evaluation represents ______
If a problem can be broken into subproblems that are reused several times, the problem possesses which property?
What is an Algorithm?
Define Pseudo code.
Who is an Algorist?
List the characteristics of an algorithm.