what are the uses of algorithm?★
.
.
please answer meaning less answers are reported
.
❌no spam ❌
Answers
Answer:
1. to set up a program ing step by step
2. it can help to do a presentation or a program correctly .
3. algorithm make a process easy .
Hello ♥
QUESTION :-
What are the uses of algorithm?
ANSWER :-
◙ Algorithms (and their supporting data structures) are all for performance. Specifically, you apply algorithms to make the program go as fast as possible, and use as few resources as possible (mainly memory and storage space).
◙ Most routine programming problems are solvable without knowledge of algorithms; it's almost always possible for a reasonable smart programmer to find some sort of way to solve a problem ad hoc, if they don't have any particular performance constraints.
◙ You might think that the available of fast computers in the modern world makes this less important. It does, for some simple applications, but in most cases, consumers are expecting applications that take full advantage of the available resources. Also, a program that uses more RAM, will frequently also just be slower, unless we apply smart algorithms.
◙ There's a bunch of application domains where algorithms don't matter a lot, because there isn't enough data for performance to be an issue, or people are willing to throw money at it instead. Relational databases are a great example of this. From one point of view, the premise is that you write queries using the database without even worrying about their algorithmic implementation; instead you focus solely on the problem domain.