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:
72 ft^2
Step-by-step explanation:
area = length x width
1/2 x 8 = 3
3 x 24 = 72
Answer:
Step-by-step explanation:
$15 a magazine.
To calculate how much each candy bar was, you must do $15-$3 = $12
In total, she spent $12 on candy bars. Therefore you must do $12/4 candy bars= $3 a candy bar.
Hope this helps
Answer:
The lower bound of the 95% confidence interval for the mean sale time for all homes in the neighborhood is of 160 days.
Step-by-step explanation:
We have that to find our
level, that is the subtraction of 1 by the confidence interval divided by 2. So:

Now, we have to find z in the Ztable as such z has a pvalue of
.
That is z with a pvalue of
, so Z = 1.96.
Now, find the margin of error M as such

In which
is the standard deviation of the population and n is the size of the sample.

The lower end of the interval is the sample mean subtracted by M. So it is 190 - 30 = 160 days
The lower bound of the 95% confidence interval for the mean sale time for all homes in the neighborhood is of 160 days.