The formula for volume of a sphere is

To get radius from diameter, we must divide it by 2. 10/2=5, meaning the radius is 5 in.
Now, we just need to plug the values into the equation.
Answer:
bool b = isupper(x);
Step-by-step explanation:
I have written the expression for a char variable x.The isupper(x) will return true if the character x is upper case and false if the character x is lower case.
I have stored the returned value to a bool variable b .So the value of variable b will be true only when the x is in uppercase and false when b is lower case.
Answer:
Explained below.
Step-by-step explanation:
Consider the variables height and weight.
It is usually seen that taller people are heavier than shorter people.
So a regression analysis can be used to specify this belief.
The statistical questions that are being asked here are:
- What the independent and dependent variables?
- Are there any other factor influencing the dependent variable other than the independent variable?
The variable <em>Y</em> is considered as the dependent variable and the variable <em>Y</em> is considered as the independent variable. And the main purpose of the regression analysis is to predict the value of <em>Y</em> when the value of <em>X</em> is given.
The linear regression model can be used to predict the past and future value of the dependent variables provided that the independent variables for those times are provided.
The basic equation for interest is the investment amount(x) times the time in years(y) times the percent of interest(z).
That makes the equation:
x·y·z= amount with interest.
Lets plug in the numbers:
$900 x 1.5 x 2.4%
Now turn the percent into a decimal:
2.4% ----> .024
Now the equation is:
$900 x 1.5 x .024
Now do the math:
$900 x 1.5 = 1350
1350 x .024 = 32.4
1350 + 32.4 = 1382.4
The final answer is $1382.40
Hope this helps!