Question
A person bought an article and sold it at a loss of 25%.
If he had bought it at 20% less and sold it for 63 more, he would have gained 20%. Find the profit percent if he had sold it at Rs 320.Solution
Let the C.P be Rs x S.P = (x × 75)/100 = Rs 3x/4 Then, New C.P = (x × 80)/100 = Rs 4/5 x New S.P = Rs (4 x)/5 × 120/100 = Rs 24/25 x According to question, 3x/4 + 63 = 24/25 x 21/100 x = 63 ∴ x = (63 ×100)/21 = Rs 300 C.P of an article = Rs 300 S.P of an article = Rs 320 Profit % = [(320 - 300)/300] ×100 = 6(2/3)%
Recursive algorithms, often central to Divide and Conquer, are prone to specific debugging challenges. Which of the following is a primary concern when ...
In Python, which of the following built-in data structures can be most efficiently used to implement a stack, and why?
What is the primary goal of analyzing an algorithm's space complexity?
What is the worst-case time complexity of the Bubble Sort algorithm?
What is the output for the below code
MyList = ["New York", "London", "Paris", "New Delhi"] MyFile=open('output.txt','w') Â for element in MyLis...
The following C++ code has a common inheritance-related issue. How can it be debugged to ensure the derived class constructor properly initializes the b...
The ALU performs the indicated operation on the operands prepared in the prior cycle and store the result in the specified destination operand location.
Which of the following real-world applications commonly uses a queue data structure to manage its operations?
What is the main drawback of the Minimax algorithm?
Which statement is FALSE regarding Programmable Logic Controller?