we have that
<span>three and one-tenth------> 3 1/10--------> (3*10+1)/10--------> 31/10-----> 3.1
the answer is 3.1 ml</span>
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:
7/10
Step-by-step explanation:
Get a common denominator
1 - 3/10
10/10 - 3/10
7/10
Answer:
ok so if the girl added 13 gallons of gas 11 gallons were already there, if 14 gallons then 10 gallons were there, if 13,4 then 10,6 gallons were already there
(arrange the data set from least to greatest)
0, 0, 2, 2, 3, 4, 6, 8
(find the median: *the middle number*)
Median: 2.5
Lower quartile: 1
Upper quartile: 5
Interquartile range : upper quartile - lower quartile = answer
Interquartile range: 5 - 1 = 4
So the IQR or interquartile for the following data set is 4.