11
Ten times 10 is equal to 100. This is because when you multiply a number by 10, you are essentially adding a zero to the end of the number. In this case, multiplying 10 by 10 results in 100.
The answer is 10. 3 x 10 = 30 30 - 10 = 20
If the number is x then: 4x+10 = -2 and so the value of x is -3
You can subtract 10 from 100 ten times before reaching zero. Each subtraction reduces the number by 10, so after ten subtractions, you will have 100 - (10 * 10) = 0. Therefore, you can subtract 10 from 100 ten times in total.
73*10 = 730
425
Depends on 10 times what. 10 times zero is still zero. 10 times the Planck distance is still a very tiny distance while 10 times Googol is just a very large number.
If by this you are saying 4.25*10^3, a scientific notation type question, think of what 10^3 is. That would be 1 followed by 3 zeros, or 1000, so 4.25*10^3 = 4.25*1000 = 4250
3x= 5x-10 2x=10 x=5
The sum of three times a number and its square is 10 more than 6 times a number?
Well, isn't that a happy little math problem! When you multiply 10 by 120, you get 1,200. That's a big number, just like the big beautiful trees we paint in our landscapes. Just remember, there are no mistakes in math, only happy accidents!
10*10 = 100
4x=10+3x or 10+3x=4x
Three times a number is 10 less five times the number can be put in the form of an equation that looks like this: 3x = 5x-10. Now just solve for x...
3x+30let x = "a number"(x+10) = "a number increased by 10"3(x+10) = "3 times a number increased by 10"Expand: 3x+30
#include<iostream.h> #include<conio.h> void main(){ int Number[10]; cout<<"Enter ten numbers"; for (int i=0;i<10;i++) cin>>Number[i]; int Big=0; for(int j=0;j<10;j++){ if (Big<Number[i]) Big=Number[i]; } cout<<"gretest Number:"<<Big; getch(); }