English, asked by shoryavitrana405, 4 hours ago

Draw a flow chart to calculate the sum and Avery of four numbers

Answers

Answered by pandeyvaishnavi88
1

Answer:

Start

Initialize an array of numbers “a”, i for iteration , size and average as float type

Calculate Size of array

size=sizeof(a)

If size is 0

Calculate sum

for (i=0;i<a;i++)

sum= sum + i

Calculate average

average=sum/size

Display

End

Explanation:

hope it would help you

please mark me as brainliest

Answered by Nafeeza25
0

Answer:

The average is simply the sum of the numbers in a given problem, divided by the number of numbers added together. For example, if four number are added together their sum is divided by four to find the average or arithmetic mean.

Explanation:

What is Average?

Average is a mathematical term used in taking the appropriate number among the list of numbers. Formula for Average = Sum of all values / No. of values in the list.

Similar questions