Advertisements
Advertisements
प्रश्न
When do you say that a problem is algorithmic in nature?
टीपा लिहा
उत्तर
A Problem is algorithmic in nature when its solution involves the construction of an algorithm. Also when the
- Input data and output data of the problem are specified.
- Relation between the input data and the output data is specified.
shaalaa.com
Algorithmic Problems
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
APPEARS IN
संबंधित प्रश्न
If `sqrt2` = 1.414, and the square_root() function returns -1.414, does it violate the following specification?
-- square_root (x)
-- inputs: x is a real number , x ≥ 0
-- outputs: y is a real number such that y2 = x
Suppose you want to solve the quadratic equation ax2 + bx + c = 0 by an algorithm.
quadratic_solve (a, b, c)
-- inputs:?
-- outputs:?
You intend to use the formula and you are prepared to handle only real number roots. Write a suitable specification.
x = `(-b ± sqrt(b^2) - 4ac)/(2a)`