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 ribosomes are the organelles in which the proteins are made. Except for red blood cells (RCBs), all the other cells in the body make protein as each cell is made up of protein. The DNA present in the nucleus instructs the ribosomes in the cells to synthesize proteins.
Step-by-step explanation:
4s+7a=861
s+a=168
This can be solved using either elimination or substitution. I am going to use substitution.
Solve s+a=168 for s
s=168-a
Replace 168-a for s in 4s+7a=861
4(168-a)+7a=861
672-4a+7a=861
Solve for a
672+3a=861
3a=189
a=63
Substitute 63 for a in s=168-a
s=168-63=105
So, s=105 student tickets and a=63 adult tickets
<u>Answer:</u>
Limit = -1
<u>Step-by-step explanation:</u>
We are given the following function:

We are to calculate the limit of this function as x approaches zero.
For that, we will use direct substitution method and substitute the x with 0 in the given function to calculate its limit as follows:


Therefore, the limit is -1.