answersLogoWhite

0

I believe every 17 or 7 seconds some1 dies but every like 10 or something seconds some1 is born... Im not 100% sure but look it up on the internet or in a book

User Avatar

Wiki User

14y ago

Still curious? Ask our experts.

Chat with our AI personalities

CoachCoach
Success isn't just about winning—it's about vision, patience, and playing the long game.
Chat with Coach
ReneRene
Change my mind. I dare you.
Chat with Rene
SteveSteve
Knowledge is a journey, you know? We'll get there.
Chat with Steve

Add your answer:

Earn +20 pts
Q: What is the average number of people dying each day?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Math & Arithmetic

What is the average 92 78 and 108?

The mean average is (92 + 78 + 108) ÷ 3 = 922/3 The median average of {92, 78, 108} is the middle number of {78, 92, 108}, ie 92. There is no mode average as each number appears once.


What this is the sum of each number in a set added together and divided by the total number in the set?

That's the average value of all the members of the set.


What is the sum of each number in a set added together and then divided by the total number in the set?

That's the average value of all the members of the set.


If each month in Reno had the same average rainfall as in august what would the total number of millimeters be after 12 months?

To calculate the total rainfall for 12 months in Reno if each month had the same average rainfall as in August, you would first need to determine the average rainfall in August. Let's assume the average rainfall in August is 10mm. Then, you would multiply this by 12 (the number of months) to get the total rainfall. Therefore, the total rainfall for 12 months with 10mm average rainfall each month would be 120mm.


How do you write a pseudocode that accepts five numbers and displays the sum and average of the numbers?

To write pseudocode that accepts five numbers and displays their sum and average, you can follow these steps: Initialize a variable sum to 0. Loop five times to accept input for each number, adding each to sum. After the loop, calculate the average by dividing sum by 5. Display both the sum and the average. Here’s a simple representation: BEGIN sum = 0 FOR i FROM 1 TO 5 DO INPUT number sum = sum + number END FOR average = sum / 5 OUTPUT "Sum: ", sum OUTPUT "Average: ", average END