Answer:
-1
Step-by-step explanation:
you find where the line crosses the y-intercept
Answer:
The equation of the least-squares regression line for this plot is approximately ŷ = 3.8 + two thirds times x.
Step-by-step explanation:
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:
The answer to your question is C. 3.2
Step-by-step explanation:
| 3.2 |
lines | | mean absolute value, and absolute value means the distance of a number to the origin (0,0) it does not matter the sign.
Then to answer your question just do not write the | | and consider it as a positive sign.
If your question had a negative number ex. | -3.2 | the answer would also be 3.2.
Step-by-step explanation:
Answer:
3.00x10^8
Step-by-step explanation:
So you want to make sure the number before the x10^ is beween 10 and 0 not including 10 and 0. So 1.00-9.99.
Move the demcil place up in 300,000,000 till your first number is between 1 and 9.99.
Then count how many places you moved it up, in this case 8
Add the amount of times you moved up to the x10^(in this space).
you answer is now 3.00 plus the x10^8
3.00x10^8