Answer:
1 1/4
reason:
add 7/8 and 3/8 to get 10/8
this can be simplified to 1 2/8
simplify 2/8 to 1/4 to get the final answer, 1 1/4
Multiply 75 by 1.0675 to find the total amount of tax plus 100 percent of the original fee im pretty sure and for the seocnd one multiply 450 by 1.45
Answer:
3/4
Step-by-step explanation:
there is no y intercept but it is 3/4 when you simplify
Answer: 191.75 quarts.
Step-by-step explanation:
We know that:
1 quart = 4 cups.
Then:
1 cup = 1/4 quarts.
this means that 1 cup, is equal to 1/4 quarts.
Then 767 cups is equal to 767 times 1/4 quarts.
The change of units is simply:
767 cups = 767*( 1/4 quarts) = 191.75 quarts.
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;
}