Answer:
<u>The correct answer is that the number of different ways that the letters of the word "millennium" can be arranged is 226,800</u>
Step-by-step explanation:
1. Let's review the information provided to us to answer the question correctly:
Number of letters of the word "millennium" = 10
Letters repeated:
m = 2 times
i = 2 times
l = 2 times
n = 2 times
2. The number of different ways that the letters of millennium can be arranged is:
We will use the n! or factorial formula, this way:
10!/2! * 2! * 2! * 2!
(10 * 9 * 8 * 7 * 6 * 5 * 4 * 3 * 2 * 1)/(2 * 1) * (2 * 1) * (2 * 1) * (2 *1)
3'628,800/2*2*2*2 = 3'628,800/16 = 226,800
<u>The correct answer is that the number of different ways that the letters of the word "millennium" can be arranged is 226,800</u>
Answer: I think that the cost now from hotel 5 would be $15.00.
Step-by-step explanation:
5 hours = $5.00
10 hours = $10.00
15 hours = $15.00
20 hours = $20.00
25 hours = $25.00
<span>Bob should by the 25cm cake for 18.75 each. He will need to buy 3 of these cakes in order to feed 57 guests. The total cost would be 56.25. If he were to buy the 20cm cake, he would need to purchase 5 cakes for a total of 67.50.</span>
Answer:
2
I am taking my first programming course, so my apologies if this is a dumb question/possibly classified by the wrong category on this site. One of the exercise problems I am working on is the following:
Define a function print_total_inches, with parameters num_feet and num_inches, that prints the total number of inches. Note: There are 12 inches in a foot. Ex:
print_total_inches(5, 8) prints:
Total inches: 68
Step-by-step explanation: