answersLogoWhite

0


Best Answer

They both are same. Both of them mean a set of instructions. but, an algorithm is a simple flow of instructions whereas in a flowchart the instructions are represented pictorially, and as the name suggest it is a 'flow chart'.

User Avatar

Wiki User

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

Wiki User

11y ago

A flowchart is a diagrammatic representation of the step by step instructions in a program using flowchart symbols. it is a form of algorithm

An Algorithm is the step by step solutions to a given problem in a generally understandable language.

This answer is:
User Avatar

User Avatar

Wiki User

11y ago

the process to devise and describe a precise plan of what you want the computer to do, is called algorithm.An algorithm may be symbolized in a flowchat

This answer is:
User Avatar

User Avatar

Wiki User

13y ago

An algorithm is a sequence of steps which can be followed to solve a particular problem.

A flowchart is one way in which to describe an algorithm.

This answer is:
User Avatar

User Avatar

Wiki User

14y ago

An algorithm is a method to solve a particular problem. A flow chart is a certain type of graphical representation of such an algorithm.

This answer is:
User Avatar

User Avatar

Wiki User

13y ago

An Algorithm is a sequence of steps involved in solving a problem.

A Flow Chart is a graphical or pictorial representation of the steps involved in solving a problem.

Shaunak

This answer is:
User Avatar

User Avatar

Wiki User

12y ago

Algorithms are just our conversational language description of a the job performed by us or going to be performed but in flowchart we do same thing by the help of diagrams.

This answer is:
User Avatar

User Avatar

Wiki User

13y ago

Algorithm is the step by step instruction to solve a problem. Flow chart is the graphical representation of algorithm.

This answer is:
User Avatar

Add your answer:

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

What are the difference between ERD and UML?

what is the difference between ERD and UML Flowcharts.


Why do you use flowcharts?

Flowchart means pictorial representing of an algorithm.


What is the difference between implementation and algorithm?

An algorithm is a instruction for solving a problem. It is typically illustrated using prose, pseudo code or flowcharts, but other methods exist. The algorithm is the "here's how it's going to work" part of the solution. An implementation (of an algorithm) is a specific expression of this algorithm, using a specific programming language or any other suitable means. The implementation is the "here's how I've done it" part of the solution.


What are the primary methods used to develop an algorithm?

Three methods commonly used to develop the algorithm are flowcharts, pseudocode, and hierarchy charts.


How do you do calculation on programming flowcharts?

You just have to know the symbols of flowchart and make the graphical representation of algorithm


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

678


What is difference between lemma and algorithm?

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


What are flowcharts used as tools for requirement modeling?

flowchart is a graphical representation of algorithm. it represents the algorithm or process, showing the steps as boxes of various kinds, and their order by connecting these with arrows. Flowcharts are used in analyzing, designing, documenting or managing a process or program in various fields. Flowcharts contain symbols, such as connectors, usually represented as circles, to represent converging paths in the flowchart.some types of flowcharts:Document flowcharts, showing controls over a document-flow through a systemData flowcharts, showing controls over a data flows in a systemSystem flowcharts showing controls at a physical or resource levelProgram flowchart, showing the controls in a program within a system


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


Why are flowcharts usually used to describe algorithms instead of written descriptions?

Flowcharts are sometimes the preferred tool to describe an algorithm because a flowchart can visualize a simple algorithm effectively, or can outline the major steps in a more complex algorithm. In comparison with natural language prose, flowcharts tend to be less ambiguous.It must be noted, however, that flowcharts are not suitable to visualize many types of algorithms. While natural language prose is not always a good alternative due to the inherent ambiguity (and the requirement that all readers need to understand the specific language), other languages, such as the language of mathematical notation, are often used to describe more complex algorithms.The claim embedded in this question that flowcharts are usually used to describe algorithms is an incorrect claim.


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.


Difference between greedy algorithm and dynamic programming?

the basic difference between them is that in greedy algorithm only one decision sequence is ever generated. where as in dynamic programming many decision sequences are generated.