201k views
3 votes
Which operation could we perform in order to find the number of milliseconds in a year? 60 * 60 * 24 * 7 * 365 1000 * 60 * 60 * 24 * 365 24 * 60 * 100 * 7 * 52 1000 * 60 * 24 * 7 * 52?

User Quepas
by
7.0k points

2 Answers

6 votes

Final answer:

To find the number of milliseconds in a year, multiply the number of milliseconds in a day by the number of days in a year: 86,400 seconds/day * 365 days/year * 1,000 milliseconds/second = 31,536,000,000 milliseconds/year.

Step-by-step explanation:

To find the number of milliseconds in a year, we need to multiply the number of milliseconds in a day by the number of days in a year. There are 24 hours in a day, 60 minutes in an hour, and 60 seconds in a minute. So, there are 24 * 60 * 60 = 86,400 seconds in a day. And since there are 365 days in a year, we can calculate the number of milliseconds in a year as:

86,400 seconds/day * 365 days/year * 1,000 milliseconds/second = 31,536,000,000 milliseconds/year

User Userspaced
by
7.5k points
3 votes
Use the following abbreviations:
y = year,
d = day,
h = hour,
min = minute,
s = second,
ms = millisecond.

Then

1 \, y = (1 \, y)*(365 \, (d)/(y) )*(24 \, (h)/(d) )*(60 \, (min)/(h) )*(60 \, (s)/(min) )*(1000 \, (ms)/(s) )

Therefore, the correct calculation is
1000 * 60 * 60 * 24 * 365

Answer: 1000 * 60 * 60 * 24 * 365

User Lakshmitha
by
7.3k points