Question
A shopkeeper sells two articles. On one he gains 30% and
on the other he loses 20%. The overall profit on both articles together is 10%. Find the ratio of the cost prices of the two articles.Solution
Let CP₁ = x and CP₂ = y. Profit on first = 30% of x = 0.3x Loss on second = 20% of y = 0.2y Net profit = 10% of total cost price = 0.10(x + y) So: 0.3x − 0.2y = 0.10(x + y) 0.3x − 0.2y = 0.1x + 0.1y 0.3x − 0.1x = 0.2y + 0.1y 0.2x = 0.3y x / y = 0.3 / 0.2 = 3/2 Answer: Ratio of cost prices (first : second) = 3 : 2.
Maximum Power transfer occurs when the_____
What is cohesion in software engineering?
In a recursive subset_sum function, backtrack(index, current_subset, current_sum), to explore the option of *including* the current element arr[index], ...
The following Java code attempts to define an abstract class and use it. Identify the best way to correct the error to allow instantiation of a concrete...
Which of the following is a key characteristic of a heap's structure?
Which represents a collection of binary data stored as a single entity in the database management system?
What is the worst-case time complexity of the Bubble Sort algorithm?
In n-gram models, what does 'n' represent?
In a 0/1 Knapsack problem implemented using dynamic programming, a common mistake is to allow items to be reused, effectively turning it into an unbound...