Posts

Flowchart

Flowchart is a graphical representation of an algorithm. An algorithm is a step by step procedure to solve a problem. A flowchart is a type of diagram that represents an algorithm, workflow or process, showing the steps as boxes of various kinds, and their order by connecting them with arrows. This diagrammatic representation illustrates a solution model to a given problem. 

Flowchart Symbols

Image
Flowchart Diagrams :- S. N Symbol Description 1 Start/End block. Represents Start and End of the program 2 Input/output block. Represents input and output of data. 3 Process block. Represents process formula or functions. 4 Connector. Used to link to segment of flowchart 5 Decision bock. Represents a decision or condition program. 6 Flow lines. Used to show the direction of Flow of program

Flowchart Questions

Algorithm questions: - A.    Draw Flowchart, 1.       DefineFlowchart. 2.       Toaccept two numbers and display their sum. 3.       To accept two numbers and display their product 4.       To accept tow numbers and display their difference. 5.       To accept two number and display their division. 6.       To accept two numbers and display their sum, product, difference, division. 7.       To accept a number and display square of it. 8.       To accept a number and display cube of it. 9.       To accept a number and display cube and square of it. 10.   To accept principle, time, rate and display simple interest 11.   To accept length and breadth of rectangle and display perimeter of rectangle. 12.   To accept ...