Profit and Loss

 Profit and Loss Tricks:

Youtube

-----------------------------------------------------------------------------------------------------------------------------

Profit% = (SP - CP / CP) *100

Loss% = (CP - SP/CP)*100

Examples:

1Q. : Bala buys chess boards in bulk for 15 each. He sells them for 40 each. Calculate the profit on each board in rupees, and as a percentage of the cost price.

SOL: Given:
cost price = 15, selling price = 40, 
profit = selling price - cost price
40 – 15 = 25
Profit % = 25*100/15 = 166.7%



Popular Post

MindMaps

Featured post

Question 1: Reverse Words in a String III

  def reverseWords(s: str) -> str: words = s.split() return ' '.join(word[::-1] for word in words)