What is the difference between a computer program and an algorithm?

301 views

When I was growing up computer program was software. Now everyone talks about algorithm. What is the differance between the two?

In: 6

10 Answers

Anonymous 0 Comments

a computer program is a concrete implementation of an abstract algorithm.

algorithm:

write out hello world 5 times

program (python):

for x in range(0,5):
print(“Hello world”)

You are viewing 1 out of 10 answers, click here to view all answers.