1
1
Answer Now
Comment
Report
4
Answers
To make a computer do anything, one need to write a computer program. To write a computer program, one
have to tell the computer, step by step, exactly what he want it to do. The computer then โexecutesโ the program,
following each step mechanically, to accomplish the end goal.
Important Note โ Preparing for IT?
CAKART provides Indias top faculty each subject video classes and lectures โ online & in Pen Drive/ DVD โ at very cost effective rates. Get video classes from CAKART.in. Quality is much better than local tuition, so results are much better.
Watch Sample Video Now by clicking on the link(s) below โ
For any questions Request A Call Back
To make a computer do anything, one need to write a computer program. To write a computer program, one
have to tell the computer, step by step, exactly what he want it to do. The computer then โexecutesโ the program,
following each step mechanically, to accomplish the end goal.
When one tells the computer what to do, he also gets to choose how itโs going to do it. Thatโs where computer
algorithms come in. The algorithm is the basic technique used to get the job done. In informal words Algorithm
is a sequence of steps or set of rules in English language to be followed in calculations or other problem-solving
operations, esp. by a computer.
**ALGORITHM**
To make a computer do anything, one need to write a computer program. To write a computer program, one
have to tell the computer, step by step, exactly what he want it to do. The computer then โexecutesโ the program,
following each step mechanically, to accomplish the end goal.
When one tells the computer what to do, he also gets to choose how itโs going to do it. Thatโs where computer
algorithms come in. The algorithm is the basic technique used to get the job done. In informal words Algorithm
is a sequence of steps or set of rules in English language to be followed in calculations or other problem-solving
operations, esp. by a computer.
Most computer programmers spend a large percentage of their time creating algorithms. (The rest of their time
is spent debugging the algorithms that donโt work properly.) The goal is to create efficient algorithms that do not
waste more computer resources (such as RAM and CPU time) than necessary. This can be difficult, because
an algorithm that performs well on one set of data may perform poorly on other data. Poorly written algorithms
can cause programs to run slowly and even crash
Thanks
An algorithm is a finite set of unambiguous instructions for carrying out a procedure or for solving a problem, especially on a computer. In mathematics and computer science, an algorithm usually means a recursive procedure that solves a recurrent problem.Simply put, algorithms help people make decisions. E.g.; to find the greatest common divisor of two integers.
Algorithms can be expressed in various notations, like natural languages, pseudo-code, flowcharts, programming languages or control tables.The mechanism of applying an algorithm to an input to attain an output is termed as computation.