Answer:
46.25
Step-by-step explanation:
82-25=57
24/6=4
57/4=14.25
14.25+32=46.25
The study has the smallest margin of error for a 98% confidence interval is <span>The northern California study with a margin of error of 3.2%.
Thank you for posting your question here at brainly. I hope the answer will help you. Feel free to ask more questions.
</span>
Answer:
show in attachment
Step-by-step explanation:
Answer: the product is = 33+4i
Step-by-step explanation:
21+4i-12i^2
21+4i-12(-1) i^2=-1
21+4i+12
your answer would be 33+4i .
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;
}