Question
(X + 140) liters of mixture A contains milk and water
only such that quantity of water in it is (X β 100) liters less than quantity of milk in it. 75% of a mixture A is taken in an empty can P. And is mixed with (X β 90) litre of water. And 50 liters of milk. Such that. final ratio quantity Milk to water. in can P is 10:9. Find the value of X.Solution
Since quantity of milk in mixture a. Is X - 100 liters more than that of water in it Therefore. Quantity of milk in mixture A = {(X + 140 + X β 100)/2} = X + 20 liters. Quantity of water in In the mixture A = (X + 140) - (X + 20.) = X + 140 - X -20 = 120 Final quantity of water in can P = 0.75 *120+(x-90) = 90+x-90 = x litres. Final quantity of milk In can P = 0.75* (x+20)= 0.75x+15+50= 0.75x+65 lt. As per the question {x/(0.75x+65)}=9/10 X=180
What is the time complexity of searching an element in a balanced binary search tree (BST) with nnn nodes?
In a data warehousing environment, what is the primary purpose of an OLAP (Online Analytical Processing) cube?
Max-Flow Min-Cut theorem states:
In system design, what is the primary purpose of a feasibility study?
A complete binary tree has 127 nodes. What is its height (assuming the root is at level 0)?
Deletion in Red-Black Trees maintains balance using:
Fibonacci heaps support which operation in O(1) amortized time?
Which of the following is a primary advantage of using a star schema in a data warehouse design?
Which of the following is an effective countermeasure against Cross-Site Scripting (XSS) attacks in a web application?
A programmer is implementing a data analysis tool that frequently needs to append elements to a collection. If an array is used, what is a potential per...