Design – Processes to Reflect in a Flowchart

designflowchart

In visual programming, there are many events which support our application tasks. So, along with user defined processes, should these also be in flowchart or not?

What about the constructors of classes, are they supposed to be shown in flowchart or not?

Best Answer

In short, a flowchart is a type of diagram that represents an algorithm or process, showing the steps as boxes of various kinds, and their order by connecting these with arrows.

You may also think of a flow chart as a process flow of application logic while connecting components in some type of flow of events.

enter image description here

What about the constructors of classes, they supposed to be shown in flowchart or not ?

Well class design is not done by means of flow chart. Generally a UML diagram is created to present class diagram structure or high-level application design.

Related Topic