Answer:
Ramon's mistake was that he used whole numbers in comparison to decimals, which is not an accurate way to solve. Think about it this way, 0.1 is the tens place, 0.01 is the hundreds place. Which would be greater 100% of the time? The hundreds place, in decimal terms, the hundredths.
0.09 is greater than 0.1
Answer:
14.85
Step-by-step explanation:
4.4 x 2.75 = 14.84
2.75
4.4
-------
(Multiply it out)
Answer:
it is 2/3
Step-by-step explanation:
well i have to do my work but im happy i could help.
A) 4*3 x 5*2
b) 9*4 x 7*2
c) 3 x 7*4
d) 2*2 x 9*4
8*5
Answer:
Step-by-step explanation:
programs can be written in multiply languages. for this solution I'll be writing in C++.
#include<iostream> // this is called the preprocessor definition
using namespace std;
int main() //the main function
{
int num, product; //declaration of the variables
cout << "enter the whole number";
cin >> num;
product = num * 12;
cout << product; // displaying the final results
return 0;
}