1 $ = 100 cents
1.5 $ = 150 cents
1.50 $ a percentage of 200 cents = (150/200)100= 75%
<span>The pair of integers that I chose are:
(a) sum is –3
5 + (-8) = -3
(b) difference is –5
2 - 7 = -5
(c) difference is 2
14 -12 = 2
(d) sum is 0
2 - 2 = 0</span>
Answer:
SD = 7588.09
Step-by-step explanation:
Check the distribution table attached to for the step by step solution:
The formula for the mean, 

The variance , 

Standard Deviation,

SD = 7588.09
Corrected Question
The volume of air inside a rubber ball with radius r can be found using the function V(r) = four-thirds pi r cubed. What does V(5/7) represent?
Answer:
(B)the volume of the rubber ball when the radius equals five-sevenths feet
Step-by-step explanation:
The Volume of a sphere of radius r can be found using the formula:

Therefore comparing the expression:
with V(r):

Thus,
is the volume of a ball of radius
feet.
The correct option is B.
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.