What are algorithms | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

What are algorithms

Please answer me what is algorithms and how can we code a algorithm using python

10th Sep 2019, 6:00 PM
Pritish Mishra
3 Answers
+ 4
 A programming algorithm is a computer procedure that is a lot like a recipe (called a procedure) and tells your computer precisely what steps to take to solve a problem or reach a goal. 
10th Sep 2019, 6:06 PM
KfirWe
KfirWe - avatar
+ 4
Algorithm is a procedure to implement a task.
11th Sep 2019, 12:32 PM
Manoj
Manoj - avatar
+ 3
Simply put, an algorithm is any set of instructions we follow to "do something". As long as you follow the instructions to the letter, you will be able to solve a specific problem, for example Similarly, programming languages are what people use to convey instructions to computers, in order to solve problems. This is exactly what an algorithm is! Chances are, you have used a couple already without realising it For example, to check if a number is even, we perform a modulus operator on it and check if there is a remainder. In python code that would be: if num%2 == 0: print("Is Even") else: print("Is odd") This is perhaps one of the simplest algorithms, but they can be infinitely more complex
10th Sep 2019, 6:09 PM
Trigger
Trigger - avatar