answersLogoWhite

0

The average is the sum of the elements divided by the number of elements

In other words, 80%+82.54% then divide the sum by 2.

User Avatar

Wiki User

14y ago

What else can I help you with?

Continue Learning about Math & Arithmetic

How to Calculate internal surface area swimming pool?

you maltiply the length by the wedth the proper way to calculate internal area lenght x the avg width. get three widths and aveg them than mutiply them time the lenght.


How do I calculate the number of gallons of water in our pool?

Multiply avg length times avg width times avg depth to get cubic feet them multiply by 7.48 to get gallons Question can't be answered without third deminsion. Formula: length times width times depth times 7.48 equals gallons


C program to calculate sum and average of 4 numbers?

/*mycfiles.wordpress.com To Calculate Sum & Average of 4 no.*/ #include<stdio.h> #include<conio.h> void main() { float a,b,c,d,sum,avg; clrscr(); printf("Enter the 4 nos.\n\n"); scanf("%f%f%f%f",&a,&b,&c,&d); sum=a+b+c+d; avg=(a+b+c+d)/4; printf("\nSum is= %f\nAverage is= %f",sum,avg); getch(); }


Write a program to calculate the average of n numbers using array?

C:#includeint main(){int num,sum,avg=0,i;printf("enter a number");scanf("%d",&num);for(i=0;i


What is the formula to calculate the avg number of visitors per a room type?

To calculate the average number of visitors per room type, you can use the formula: [ \text{Average Visitors per Room Type} = \frac{\text{Total Number of Visitors for the Room Type}}{\text{Total Number of Rooms of that Type}} ] This formula divides the total number of visitors who stayed in a specific room type by the total number of available rooms of that type, providing an average that reflects the visitor traffic per room.

Related Questions

Why we calculate standard deviation and quartile deviation?

we calculate standard deviation to find the avg of the difference of all values from mean.,


C program to find the average salary department wise?

void avg() { for(i=0;i<=No of employers;i++) { avg=avg+salary[i]; } printf("%d",avg); } void maths() { void avg(); } use this function call v can call when v need to calculate avg.


How do you calculate weeks of supply?

weeks of supply = (Avg aggregate inventory value/COGS)(52 weeks)


How do you calculate water volume in a pool?

Length X Width X Avg depth X 7.5=gal


How to Calculate internal surface area swimming pool?

you maltiply the length by the wedth the proper way to calculate internal area lenght x the avg width. get three widths and aveg them than mutiply them time the lenght.


How do they calculate AVG stat in baseball?

Divide the number of official at bats (AB) into the number of base hits (H). For example, if a player has 400 official at bats and 100 base hits, the batting average (AVG) would be .250.


How do I calculate the number of gallons of water in our pool?

Multiply avg length times avg width times avg depth to get cubic feet them multiply by 7.48 to get gallons Question can't be answered without third deminsion. Formula: length times width times depth times 7.48 equals gallons


Calculate tha avg of a car that moves 40 km in 4 hours?

80 u dumies I LOVE U NICOLAS PLANCENSIA!!!! ATTE:ALEXANDRIA SMITH <333


C program to calculate sum and average of 4 numbers?

/*mycfiles.wordpress.com To Calculate Sum & Average of 4 no.*/ #include<stdio.h> #include<conio.h> void main() { float a,b,c,d,sum,avg; clrscr(); printf("Enter the 4 nos.\n\n"); scanf("%f%f%f%f",&a,&b,&c,&d); sum=a+b+c+d; avg=(a+b+c+d)/4; printf("\nSum is= %f\nAverage is= %f",sum,avg); getch(); }


How do you calculate European Efficiency Factor in Broiler performance?

(((avg body weight X 1000)X(100%-mor%))/(FCR actual X meanage)) X 10


What is the avg percent of 77 percent 83 percent 89 percent and 86 percent?

83.75 to be exact or 335/4 to be even more accurate.


C program to calculate percentage of 3 subject marks?

#include#includevoid main(){float avg(int m1,int m2,int m3);clrscr();printf("\nAverage of 3 Subjects: %.2f",avg(78,85,95));getch();}float avg(int m1,int m2,int m3){return (m1+m2+m3)/3;}