Answer:
Kindly check explanation
Step-by-step explanation:
Given that :
Total amount to spend = $55
Amount of food and drinks purchased = $14.25
Amount put on gaming card = $(55 - 14.25) = $40.75
Cost per game = $1.25
Number of games (g) he can play
Number of games g:
Amount put on gaming card / cost per game
= $40.75 / $1.25
= 32.6 games
g ≤ 32
Answer:
The number of customer needed to achieve is 34
Step-by-step explanation:
Given as :
The number of customer per hour = 8
The time taken = 8 hours
The rate of increase = 20 %
Let The increase in number of customer after 20 % increment = x
So , The number of customer after n hours = initial number × 
or, The number of customer after 8 hours = 8 × 
or, The number of customer after 8 hours = 8 × 4.2998
∴The number of customer after 8 hours = 34.39 ≈ 34
Hence The number of customer needed to achieve is 34 answer
Answer:
The central angle is within the range π to 3π/2
Step-by-step explanation:
To convert from degrees to radians, we multiply the angle in degrees by 180/π.
To convert from radians to degree, we multiply the angle in radians by 180°/π.
π/2 = π/2 X 180°/π= 90°
π rad = π X 180°/π= 180°
3π/2 = 3π/2 X 180°/π= 270°
2π = 2π X 180°/π= 360°
Therefore the angle 250 which is between 180 and 270 is within the range :
π to 3π/2
Answer:
The probability of getting a sample with 80% satisfied customers or less is 0.0125.
Step-by-step explanation:
We are given that the results of 1000 simulations, each simulating a sample of 80 customers, assuming there are 90 percent satisfied customers.
Let
= <u><em>sample proportion of satisfied customers</em></u>
The z-score probability distribution for the sample proportion is given by;
Z =
~ N(0,1)
where, p = population proportion of satisfied customers = 90%
n = sample of customers = 80
Now, the probability of getting a sample with 80% satisfied customers or less is given by = P(
80%)
P(
80%) = P(
) = P(Z
-2.24) = 1 - P(Z < 2.24)
= 1 - 0.9875 = <u>0.0125</u>
The above probability is calculated by looking at the value of x = 2.24 in the z table which has an area of 0.9875.
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.