-18/35
is the answer hope I am helpful
Answer:
<u></u>
- <u>Yes, she has enough water.</u>
Explanation:
To <em>estimate</em> the value, you can work with friendly numbers: numbers closed to the given numbers and with which you can perform easy mental calculations.
For example 4.55 may be rouned to 5, 4.85 may be rounded to 5, and 3.25 may be rounded to 3. That yields 5 + 5 + 3 = 13
Then, it seems you have about 13 liters. Is the final number equal or greater than 12 for sure?
To round 4.55 to 5 you increased the amount in 0.45, to round 4.85 to 5 you increased the amount by 0.15, and to round 3.25 to 3 you decreased the amount in 0.25.
What was the net change in your values: 0.45 + 0.15 - 0.25 = 0.60 - 0.25 = 0.35. Those are easy calculations that you can perform in your mind.
That means that you increased your total in less than 1 liter. Meaning that the final total is overestimated by 0.35, and that if you used the real amounts to make the calculations, the total will be still more than 12.
Answer:
// C++ Program to arithmetic operationf on 2 Numbers using Recursion
// Comments are used for explanatory purpose
#include <bits/stdc++.h>
using namespace std;
// add10 recursive function to perform arithmetic operations
int add10(int m, int n)
{
return (m + product(n, 10)); //Result of m + n * 10
return 0;
}
// Main Methods Starts here
int main()
{
int m, n; // 2 Variables m and n declared as integer
cin>>m; // accept input for m
cin>>n; // accept input for n
cout << "Result : "<<add10(m,n); // Print results which is calculated by m + 10 * n
return 0;
}
Answer:
The formula is
A=p (1+r/k)^kt
A future value?
P present value 4100
R interest rate 0.04
K compounded monthly 12
T time 10 years
A=4,100×(1+0.04÷12)^(12×10)
A=6,112.41. ..answer
Step-by-step explanation:
Answer: 1.764
Step-by-step explanation: