Answer:
- <em>D. The game is not fair because the probability of Hal drawing a winning letter is less then the probability of Renee drawing a winning letter </em>
Explanation:
The word is not probably, which has 8 letters, but probability, which has 11 letters
<u>1. Hal</u>
Probability of drawing a vowel
- The vowels are: o, a, i, i, and y: 5
- The total number of letters in the bag is 11.
- Probability of vowel = 5 / 11
<u>2. Renee</u>
Probability of drawing a consonant
- The consonants are: p, r, b, b, l, t, and y: 7
- Probability of a drawing a consonant: 7 /11
<h2>Conclusion</h2>
As you see, the probability of drawing a vowel (5/11), which is the winning letter for Hal, is less than the probability of drawing a consonant (7/11), which is the winning letter of Renee. Then,
- The game is not fair because the probability of Hal drawing a winning letter is less then the probability of Renee drawing a winning letter.
B 56
Step-by-step explanation:
Answer:
A. don't know if this helps but with plotting but (x, y) the x always comes first
Answer:
$14,000
Step-by-step explanation:
Amount issued = $300,000 of 8% bonds
Which means that
8/100 ×$300,000
= $24,000 annual interest
Therefore, they would pay
Monthly interest = $24,00/12 = $2000
Interest would be calculated from the day bond is issued. Interest would be calculated for seven (7) months (June - December).
Therefore, $2000×7 = $14000 interest expense
Answer:
27
Step-by-step explanation:
int x = 9;
int y = 3;
if (x >= y)
if (y > 0)
x = x * y;
else if (y < 4)
x = x - y;
First, the first if statement check for the value of x>=y which is true. The another if-statement check if y>0, which is true and it execute the statement x = x * y that is x = 9 * 3 and x = 27.
The else-if block is not executed because the if-statement attached to it has been executed already.