PDA

View Full Version : What are the four characteristics of algorithms?



rscomponentseo
11-11-2019, 06:48 AM
What are the four characteristics of algorithms?

iastitlesearch
11-11-2019, 12:52 PM
Precision – the steps are precisely stated(defined).
Uniqueness – results of each step are uniquely definedand only depend on the input and the result of the precedingsteps.
Finiteness – the algorithm stops after a finite number ofinstructions are executed.
Input – the algorithm receives input.
Output – the algorithm produces output.
Generality – the algorithm applies to a set ofinputs.

dennis123
11-11-2019, 11:33 PM
Hi Friends,

Algorithms describe a sequence of precise steps to solve a well-defined problem
Algorithms will terminate after a finite number of steps (they cannot loop indefinitely)
Algorithms are typically expressed in pseudo-code (that is, in a way that is not specific to any particular programming language)

pharmasecure
11-12-2019, 12:06 AM
Algorithm has four characteristics:
Fitness:Total No of steaps used in algorithem should finite
Definiteness:Each stepa of algorithm must be clear and ambigious.
Effectiveness:Every steps must be basic and assential.
Input & Output:The algorithm must be accept zero our more input and must produce at least one output.

ellenwilson
11-12-2019, 02:20 AM
The characteristics of an algorithm are following
a) Uniqueness
b) Definiteness
c) Effectiveness
d) Input & output

Best SEO Services
(https://www.solutionsurface.com/seo-services/)

John-Smith
11-12-2019, 02:37 AM
I think enough answers are posted about the characteristics of the algorithms. Is there any specific algorithm you want to know about?

jayam
02-19-2020, 04:05 AM
Finiteness. An algorithm must always terminate after a finite number of steps.
Definiteness. Each step of an algorithm must be precisely defined; the actions to be carried out must be rigorously and unambiguously specified for each case.
Input. ...
Output. ...
Effectiveness.