answersLogoWhite

0


Best Answer

A flowchart is a graphical approach to describe the computer program's logic process.

Pseudocode is a mock-up code written using easy-to-understand words to describe the details of that logic just before drafting the actual code to build the program.

User Avatar

Wiki User

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

Wiki User

11y ago

A flow chart is used to define the "flow" of the algorithm to a problem - inputs, steps in execution, decision points where depending on a certain check, the flow could branch off in different directions etc.

Pseudo code is like actual code, but need not follow the strict syntax of any particular language. You can translate the flow chart into pseudo code - which makes it look like almost like a real program, and also gives you some idea of how many different variables should be used, how many functions etc.

- Ramki.

This answer is:
User Avatar

User Avatar

Wiki User

9y ago

Both have equal importance and is used depending on the situation. Flow charts are used when the process goes on following a flow and pseudo code more in programming.

This answer is:
User Avatar

User Avatar

Wiki User

11y ago

Understand the problem

This answer is:
User Avatar

User Avatar

Wiki User

11y ago

answers

This answer is:
User Avatar

Add your answer:

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

Difference between pseudocode and flowchart?

Pseudo code is a sentence-like representation of an piece of code.A flowchart is a symbolic representation of code, using box shapes and arrows. http://wiki.answers.com/What_is_the_differences_between_Pseudocode_and_Flowchart#ixzz16xbjczkm


Develop an algorithm to display all prime numbers from 2 to 100 Give both the pseudocode version and the flowchart version Convert your pseudocode into a Java program?

Develop an algorithm to display all prime numbers from 2 to 100. Give both the pseudocode version and the flowchart version. Convert your pseudocode into a Java program.


Are Ovals used as terminal symbols marking the starting and end of the pseudocode?

No that would be a flowchart.


What is the difference between a hierarchy of modules and a flowchart?

What is the difference between a hierarchy of modules and a flowchart.


What will the beginners prefer to choose between flowchart and algorithm?

Flowchart.


Flowchart to check whether an integer is positive or negative?

I'll write it as pseudocode; you can easily convert it to a flowchart. If your number is more than 0 (Your number is positive) else if your number is less than 0 (your number is negative) else (your number is equal to zero)


Difference between macor flowchart and micro flowchart?

1. Macro flowchart shows less information whereas micro flowchart shows more information. 2. Macro flowchart is easy to design as comparative to micro flowchart. 3. Macro flowchart is difficult to study and understand as comparative to micro flowchart.


What the defferences kind of domistic and institutional?

what the defferences kind of domistic and institutional


Draw a flowchart to generate odd numbers between 100?

Draw a flowchart to generate odd numbers between 100?


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 program and flowchart?

Flowchart it is diagrammatic Program it is coding. A flowchart is drawn out on paper, and shows the logic of an if/then/else statement. The programming actually is the if/then/else, not just the logic.


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.