Question
A wholesaler buys 200 packets of biscuits for ₹15,000.
During transportation, 15% of the packets get damaged and cannot be sold. If he wants to make a profit of 25% on his total cost, at what price should he sell each of the remaining packets?Solution
Cost price per packet = ₹15,000 ÷ 200 = ₹75 Number of damaged packets = 15% of 200 = 30 Number of sellable packets = 200 - 30 = 170 Total cost price = ₹15,000 To make a profit of 25%, total selling price required = ₹15,000 × 125/100 = ₹18,750 Selling price per packet = ₹18,750 ÷ 170 = ₹110.3 Correct Option: e.
Shadow paging in recovery eliminates the need for:
Which normal form eliminates transitive dependencies?
A "diamond" shape in an E-R Diagram typically represents a:
What will re.findall(r'\d+', 'abc123def45ghi') return?
What is the output of the following pseudo-code?
```
count = 0
for i from 1 to 3:
for j from 1 t...
In the context of database transactions, which isolation level allows "non-repeatable reads" but prevents "dirty reads"?
Which of the following schedules is serializable?
In PL/SQL, a `CURSOR` is used to:
Which stage involves evaluating the project's practicality, cost, and resources before proceeding further?
A programmer is trying to debug an issue where an `ArrayList` (or equivalent dynamic array) in their Java/Python code unexpectedly throws an `IndexOut...