answersLogoWhite

0


Best Answer

Pseudocode consists of short readable and formally-styled natural language used to explain specific tasks within a program's algorithm while an Algorithm is a set of instructions used to solve a particular problem.

User Avatar

Wiki User

14y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

8y ago

An algorithm is a description of a method for accomplishing some task. For example, an algorithm for driving to a friend's house could be:

1. Find your keys

2. Get into the car

3. Start the engine

4. Put transmission into gear

etc...

Psuedocode is an implementation of an algorithm in a code-like format. For example, the above algorithm in psuedocode could look something like:

while(keys.location != "in your hand")

{

search_for_keys();

}

walk_to_car();

if(car.door == locked)

car.door.unlock();

engine.start();

...
An algorithm describes the steps required to solve a problem. Algorithms are written using natural language (e.g., English).

Pseudocode is a human-readable version of an algorithm written using an informal language that is very similar to a programming language but which can be more easily translated into any specific programming language.

This answer is:
User Avatar

User Avatar

Wiki User

9y ago

An algorithm describes the step-by-step procedure required to solve a problem. Algorithms can be be combined such that the solutions to smaller problems can help resolve much larger problems.

A computer program is the implementation of one or more algorithms to solve a problem.

This answer is:
User Avatar

User Avatar

Wiki User

8y ago

An algorithm is a procedure or formula for solving a problem; a finite series of computational steps to produce a result. Algorithms are typically expressed in a natural language (such as English) or in human-readable form known as pseudocode, an informal, high-level descriptive language that is often augmented with natural language and which can be easily translated into a machine-readable form. Pseudocode can also be used to demonstrate the operating principals of a computer program.

This answer is:
User Avatar

User Avatar

Wiki User

7y ago

An algorithm can be informally described as being the step-by-step procedure or set of rules required to solve a given problem in a finite amount of time and space. A computer program can generally be thought of as being an algorithm intended to be processed by a machine, however a computer program is really only regarded as being an algorithm if it reaches a conclusion. For instance, a computer program that calculates every digit of PI cannot be regarded as being an algorithm because there is no solution; PI has infinite digits. However, a computer program that calculates the nth digit of PI would be an algorithm because the program will eventually stop.

This answer is:
User Avatar

User Avatar

Wiki User

14y ago

Pseudocode is a statement which is not language specific, Psuedocode is not syntax related, consider it a plan for the algorithm, algorithm requires perfect syntax.

This answer is:
User Avatar

User Avatar

Wiki User

9y ago

An algorithm defines the specific steps required to solve a problem. A computer program is the implementation of an algorithm.

This answer is:
User Avatar

User Avatar

Wiki User

12y ago

algorithm is a step by step process in which we can solve the problem.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the difference between algorithm and pseudocode in computer science?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Difference between algorithm and computer program?


What is difference between alogrithm and pseudo code?

An algorithm is an abstract set of rules used to solve a specific problem. Pseudocode is just one of many ways to represent an algorithm.


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


What is the difference between an algorithm and pseusodocode?

Pseudocode is one method of describing an algorithm. Other methods use diagrams, prose, or maybe even regular programming languages. An algorithm, on the other hand, is a method, a recipe, of solving a particular problem or group of related problems.


What are the advantages of pseudocode?

Pseudo-code allows for an intermediate step between a human language description of an algorithm and a programming language description of the algorithm. It is often a good way for non-programmers to understand the programming process.


Difference between pseudocode and structured English?

structured English resembles spoken Englishwhere as pseudocode resembles programming languageWhat_are_the_differences_between_structured_English_and_pseudo_code


What is the difference between pseudocode and trace table?

pseudocode is a sentence-like representation of a piece of code while a trace table is a technique used to test a algorithms.


What the difference between algorithm and pseudocode?

An algorithm is a description of a method for accomplishing some task. For example, an algorithm for driving to a friend's house could be:1. Find your keys2. Get into the car3. Start the engine4. Put transmission into gearetc...Psuedocode is an implementation of an algorithm in a code-like format. For example, the above algorithm in psuedocode could look something like:while(keys.location != "in your hand"){search_for_keys();}walk_to_car();if(car.door == locked)car.door.unlock();engine.start();...An algorithm describes the steps required to solve a problem. Algorithms are written using natural language (e.g., English).Pseudocode is a human-readable version of an algorithm written using an informal language that is very similar to a programming language but which can be more easily translated into any specific programming language.


What is the difference between AES Rijndael symmetric algorithm encryption and a hash algorithm?

678


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

A computer is an electronic (or electromechanical) device that can handle input, processing and produce output. A computer program is a set of rules or instructions that enables the computer to perform these tasks (input, processing and output). They work together, a computer is useless without a computer program, and a computer program cannot work without a computer. It is a symbiotic relationship.


What is difference between lemma and algorithm?

A Method that used to be a comouter to soultion of promlems is called algorithm.


What is the difference between procedure and algorithm?

A procedure can go on forever.Where as an Algorithm, will eventually terminate and will have each step precisely defined.