answersLogoWhite

0

Tens of thousands of years means that it is any where from 10,000 years to 99,000 years.

User Avatar

Wiki User

16y ago

What else can I help you with?

Related Questions

What does a tens of thousands mean in maths term?

Tens of thousands means multiples of 'ten thousand' (10,000) 4 tens of thousands means there are 4 times 10,000 which is 40,000


When was England colonized?

tens of thousands of years ago.


Age of the Nile?

Many tens of thousands of years.


How did Romanians begin?

The territory of Romania was populated from tens of thousands years.


What place is the 8 in 8.349?

i mean ones,tens,hundreds or thousands


Time for comets to orbit the sun in years?

Variable. From tens of years to hundreds and probably thousands


How many ten thousands are in 2000 tens?

To find out how many ten thousands are in 2000 tens, first convert tens to thousands. Since 10 tens equal 1 hundred, 2000 tens equal 200 hundreds or 20 thousands. Therefore, there are 2 ten thousands in 2000 tens.


What part of the world do mammoths live?

Mammoths have been extinct for tens of thousands of years.


What are the multiples of thousands?

Tens of thousands


How many years will it take Loihi to break the surface?

UHH Geologist predict in several tens of thousands of years.


How many thousands 400 tens?

To determine the number of thousands in 400 tens, we first need to convert 400 tens to its equivalent in hundreds, which is 40 hundreds. Then, we convert 40 hundreds to its equivalent in thousands, which is 4 thousands. Therefore, there are 4 thousands in 400 tens.


You are a four digit number your ones is twice your tens your hundreds is five less than your ones your thousands place is the sum of your tens and hundreds what number are you?

There is no four digit number where the ones is twice the tens, the hundreds is five less than the ones, and the thousands is the sum of the tens and hundreds. int ones, tens, hundreds, thousands; for (thousands=1; thousands<10; thousands++) { /**/ for (hundreds=0; hundreds<10; hundreds++) { /**/ /**/ for (tens=0; tens<10; tens++) { /**/ /**/ /**/ for (ones=0; ones<10; ones++) { /**/ /**/ /**/ /**/ if (ones != 2 * tens) break; /**/ /**/ /**/ /**/ if (hundreds != ones - 5) break; /**/ /**/ /**/ /**/ if (thousands != tens + hundreds) break; /**/ /**/ /**/ /**/ printf ("dd\n", thousands, hundreds, tens, ones); /**/ /**/ /**/ } /**/ /**/ } /**/ } }