Answer:
1.2 cups
Step-by-step explanation:
6 cups / 5 batches = 1.2 cups/batch
Answer:
17
Step-by-step explanation:
4 × 3² = 36
2 × 7 = 14
36 ÷ 12 = 3
3 ± 14 = 17
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:
1) Be descriptive in your reasoning
2) Your reasons should talk about reality
3) Use Body Language
4) Convey Benefits
5) Know your audience
6) Establish Credibility