Question
A shop gives a discount of 25% on a piece of
merchandise, thereby incurring a loss of 10%. The discrepancy between the discount and the loss is Rs. 120. Find the selling price of the piece if the shop intends to gain 15%.Solution
ATQ, Let the original cost price be Rs. '100w'. Selling price after the loss = 0.9 Γ 100w = Rs. '90w'. Marked price = (90w / 0.75) = Rs. (360w / 3). Loss = 100w - 90w = Rs. '10w'. Discount = (360w / 3) - 90w = Rs. (120w / 3). So, (120w / 3) - 10w = 120. Or, (80w / 3) = 120. Or, w = 4.5. Required selling price = 1.15 Γ 100 Γ 4.5 = Rs. 517.5
Which of the following is the correct definition of 'polymorphism' in Object-Oriented Programming?
Which SQL keyword is used to sort the result set?
Which of the following prevents inheritance in C++?
Which of the following is used to eliminate redundancy and anomalies in a database?
Which OOP principle allows a single interface to represent different underlying forms or data types?
The concept of "data hiding" is primarily achieved through which OOP principle?
Which of the following correctly describes the concept of 'encapsulation' in OOP?
A primary key in a table:
The result of a Cartesian product of two relations R and S will have:
In C++, if a base class has a virtual function, and a derived class overrides that function, which mechanism ensures that the correct derived class func...