Answer:
im not sure how the data should be interpreted but here is the distribution. It goes up by .416
Step-by-step explanation:
the average of the first 8 games is 24
the average of the 12 games is 24.416
Answer:
0.87
Step-by-step explanation:
y = ab^x
b is the rate of decay if it is between 0 and 1. Here, b = 0.87.
Answer: 0.87
Answer: 79 degrees
Step-by-step explanation:
4x+1 + 3x+4 = 180
7x + 5 = 180
7x = 175
x = 175:7 = 25
m8 = 3x + 4 = 3*25 + 4 = 79
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;
}
Step-by-step explanation:
An arithmetic sequence is a sequence that adds or subtracts the same amount every time, making the answer C. The numbers are increasing by +5 consistently.