Answer:
18.72 cubic feet
Step-by-step explanation:
Volume of the aquarium = lwh
- l = 5.2 ft,
- w = 1.8 ft
- h = 2 ft
V = 5.2*1.8*2 = 18.72 cubic feet
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:
nope it isn't a linear function
Step-by-step explanation:
if you put it in a graph it isn't a straight line
Answer:
b
Step-by-step explanation:
the answer is b
in the problem you can put the expression into a calculator and you will get the answer 3
in option b, y+2=3 bc a variable is always equal to one so your basically adding 1+2 which is equal to 3
I HOPE I HELPED A BIT<3