answersLogoWhite

0

What is 9 tens 10 ones?

Updated: 4/28/2022
User Avatar

Wiki User

9y ago

Best Answer

What is 9 tens 10 ones=

User Avatar

Wiki User

9y ago
This answer is:
User Avatar
User Avatar

ALEXIZ PEREZ

Lvl 1
2y ago
9 tens and 10 ones
More answers
User Avatar

Anonymous

Lvl 1
3y ago

hope you have a bad great day! and the answer is 100!!Remember swearers you love swearing!!!

This answer is:
User Avatar

User Avatar

Anonymous

Lvl 1
3y ago

uhhh that's not true... it's 100

This answer is:
User Avatar

User Avatar

Anonymous

Lvl 1
3y ago

and it's ya boy Anouytmus here!

This answer is:
User Avatar

User Avatar

Anonymous

Lvl 1
3y ago

Anouymous''Sorry im bad at spelling

This answer is:
User Avatar

User Avatar

Anonymous

Lvl 1
3y ago

1,000,000

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is 9 tens 10 ones?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What does 9 tens and 10 ones?

Nine tens = 90 Ten ones = 10 90 + 10 = 100


What number has 12 tens and 9 ones?

9 tens + 12 ones = 9 × 10 + 12 × 1 = 90 + 12 = 102.


What number has 9 tens and 10 ones?

100 = (9x10) + (10x1) = 90 + 10


How should 5 thousands 10 tens 3 hundreds and 9 ones be written as a number?

5 thousands = 5000. 10 tens = 100. 3 hundreds=300. 9 ones = 9. That's 5000 + 400 + 9, which is 5409


What number has 9 tens and 4 fewer ones than tens?

9 tens = 90. 4 fewer ones than tens = 9 - 4 = 5. Therefore the answer is 95.


What number has 9 tens and 4 fewr ones than tens?

What number has 9 tens and 4 fewer ones than tens


What number should you use for 9 groups of tens and 9 ones?

(9 × 10) + 9 = 99 is the number.


Which number is the same as 9 tens and 15 ones?

(9*10)+(15*1) = 105


What number has 16 tens and 9 ones?

The number is 16*10 plus 9*1 = 169


When the ones and tens are multiplied separately each product is called a?

The general function is:1. y = a*x+bb is irrelevant and we can be removed2. y = a*xlets split x into ones and tens3. x = tens*10 + ones /e.g. 23 = 2*10 + 34. p1 = Multiplier of the onesp2 = Multiplier of the tens5. y = tens*10*p2 + ones*p1 /according to the question6. x*a = tens*10*p2 + ones*p1 /according to 2.7. (tens*10 + ones)*a = tens*10*p2 + ones*p1 /according to 3.8. tens*10*a + ones*a = tens*10*p2 + ones*p1 /regroup9. tens*10*a - tens*10*p2 + ones*a - ones*p1 = 0 /regroup10. tens*10*(a-p2) + ones*(a-p1) = 0 /regroup11. assuming "tens" and "ones" are not 0 then (a-p2) and (a-p1) must be 012. a-p2 = 0a-p1 = 013. a = p2a = p114. a = p1 = p2the answer is: when the Multipliers of ones and tens are equal then the product is called a.


How do you regroup 39 by using tens and ones?

(3*10)+(9*1)=39


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); /**/ /**/ /**/ } /**/ /**/ } /**/ } }