Concepts
Understand Fundamentals
- Writing a logical step-by-step method to solve any problem is called the algorithm.
- Algorithm to calculate the sum and average of three numbers :-
- Step1: Start
- Step2: Input three numbers A , B , C
- Step3: Find sum of three numbers ( A+B+C)
- Step4: Find the average of three numbers ( A+B+C)/3
- A flowchart is the graphical or pictorial representation of an algorithm with the help of different symbols, shapes, and arrows to demonstrate a process or a program.
- Start/Stop Box is used in the beginning and at the end of the flowchart.
- Input/Output Box is used for feeding input or getting output of the program.
- Processing Box is used for writing the processing instructions and doing calculations
- Make a flowchart for calculating the average of three numbers x , y, z.
Make a flowchart to find the sum of 529 and 256
Make a flowchart to check even and odd numbers:
Concepts
Understand Fundamentals