1. Draw a flowchart to
accept three numbers and
print their average.
2. Draw a flowchart to find
the sum of three numbers. If
the sum is greater than 50,
print "More", otherwise print
"Less".
3. What is algorithm?
4. What is flowchart?
Answers
Ans 1 step 1: A flowchart is a type of diagram that represents a workflow or process. A flowchart can also be defined as a diagrammatic representation of an algorithm, a step-by-step approach to solving a task. The flowchart shows the steps as boxes of various kinds, and their order by connecting the boxes with arrowsStart.
step 2: Take three input for calculating the average. say the numbers are n1, n2, n3.
Step 3: Add the all values of n1, n2 and n3. ...
Step 4: After that you have to take another variable for average like avg = add / 3.
Step 5: print the value average;
Ans 2.. Is IMG
ans3 An algorithm (pronounced AL-go-rith-um) is a procedure or formula for solving a problem, based on conducting a sequence of specified actions. A computer program can be viewed as an elaborate algorithm. In mathematics and computer science, an algorithm usually means a small procedure that solves a recurrent problem.
ans 4..