Answer:
His profit is 105 rs
Step-by-step explanation:
if he bought 7 books for 525 RS,that means 1 book costs 75 rs
if he sold 4 books for 360 RS,that means 1 boo costs 90 RS
90×7=630.
630-525=105
For #1-6, I'll write down the spelling errors first, and the correct spelling in bold. #7 will have the incorrect sentence first, and the sentence with correct punctuation in italics, with the punctuation bold.
1. super sonic supersonic
2. sub marine submarine
3. sub way subway
4. super natural supernatural
5. out field outfield
6. super star superstar
7. Do you like sports. <em>Do you like </em><em /><em>sports</em><em>?</em><em />
<em /><em />For #8-16, the word in bold is the correct spelling.
8. submarine submareen submarein
9. subdivsion subdivison subdivision
10. subersonic supersonic supresonic
11. underline undeline undrline
12. outfeild outfeeld outfield
13. overcast overcas ovrcast
14. overlok overlook overlock
15. suparmarkit suprmarkat supermarket
16. overboard overbored ovarboard
Answer:
always
Step-by-step explanation:
Answer:
if its area its 21,504 but if its perimiter its 33
Step-by-step explanation:
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