45+55=100 180-100=80 that makes y = 80, and vertical angles makes x=80
The volume of a spherical shaped object is given by

Given that the <span>solid ball has a radius of 20.0 millimeters, the volume of the solid ball is given by

Therefore, the </span><span>closest to the volume of the synthetic compound ball, in cubic millimeters is 33,500 cubic milimeters.</span>
Answer:
The number of deliveries that are predicted to be made to homes during a week with 50 deliveries to business is 87 deliveries
Step-by-step explanation:
The data categorization are;
The number of home deliveries = x
The number of delivery to businesses = y
The line of best fit is y = 0.555·x + 1.629
The number of deliveries that would be made to homes when 50 deliveries are made to businesses is found as follows;
We substitute y = 50 in the line of best fit to get;
50 = 0.555·x + 1.629 =
50 - 1.629 = 0.555·x
0.555·x = 48.371
x = 48.371/0.555= 87.155
Therefore, since we are dealing with deliveries, we approximate to the nearest whole number delivery which is 87 deliveries.
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.