<h2>AREA OF RECTANGULAR PRISM=AREA OF cuboid =l×b×h</h2><h2>=15x×7x×3x</h2><h2>=315x³</h2>
FOLLOW ME FOR CLEARING YOUR NEXT DOUBT
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:
slope = 2
Step-by-step explanation:
slope = (y2-y1)/(x2-x1)
= (0-4)/(0-2)
= -4/-2
= 2
Answer:
C?
Step-by-step explanation:
A) Jared makes x of a goodie bag per hour. How many
can he make in y of an hour?
B) Jared makes x of a goodie bag per hour. How many
can he make in y of an hour?
C) Jared has x of an hour left to finish making goodie bags. It takes him y of an hour to make each goodie bag. How many goodie bags can he make?
D) id k
Quotient is the answer to a division problem, so we need to find a problem that needs to divide x and y to find the answer. It isn't A or B, since they are asking for y, not the quotient. I have no idea what D is. C makes sense, so C might be the answer.
It tells us how much time he has(x), and how long it takes him to make 1 bag(y), and we need to find the answer, which is the quotient.
So C is the answer.
---
hope it helps