Answer:
yes
Step-by-step explanation:
Answer: 30.48
Step-by-step explanation:
Sum the series of 30.48 + (1/2)(30.48)+ (1/4)(30.48)+(1/8)(30.48)+(1/16)(30.48)+(1/32)(30.48)
Or use an Excel spreadsheet
Answer:
opposite sides of ||gram are equal and parallel therefore
12=x+2
12-2=x
10=x
pls mark as brainliest
Answer:
In mathematics, the dot product or scalar product is an algebraic operation that takes two equal-length sequences of numbers (usually coordinate vectors), and returns a single number. ... Algebraically, the dot product is the sum of the products of the corresponding entries of the two sequences of numbers
kamsahamnida have a great day
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;
}