Answer:
648
Step-by-step explanation:
Running this in Python, with the code as follows,
import math
cur_numbers = [0] * 3
num = 0
for i in range(100, 1000):
cur_numbers[2] = i % 10
i = math.floor(i/10)
cur_numbers[1] = i % 10
i = math.floor(i/10)
cur_numbers[0] = i % 10
if(len(set(cur_numbers)) == 3):
num += 1
print(cur_numbers)
print(num), we get 648 as our answer.
Another way to solve this is as follows:
There are 9 possibilities for the hundreds digit (1-9). Then, there are 10 possibilities for the tens digit, but we subtract 1 because it can't be the 1 same digit as the hundreds digit. For the ones digit, there are 10 possibilities, but we subtract 1 because it can't be the same as the hundreds digit and another 1 because it can't be the same as the tens digit. Multiplying these out, we have
9 possibilities for the hundreds digit x 9 possibilities for the tens digit x 8 possibilities for the ones digit = 648
Answer:
g(x) = 5 – x
Step-by-step explanation:
Answer:
It is a right angled triangle.
so
tan32 = p/b
or, tan32 = x/5
or, tan32×5 = x
so, x = 3.124
for 5 no. the answer is a. 3.124
For y,
cos32 = b/h
or, cos32 = 5/y
or, y = 5/cos32
so, y = 5.895
for 6 no. 5.895 is closest to 5.994, so the answer is c. 5.994.

each shirt costs $6

The percent markup is about 66.7%
Answer:
Step-by-step explanation:
The percent increase formula is

For the bread, our percent increase looks like this:

which gives us a percent increase of 66.7%
For the cakes, our percent increase looks like this:

which gives us a percent increase of 20%