Question
Quantity I: An amount is to be distributed among A, B,
and C in the ratio 1:3:2 respectively, but was erroneously distributed in the ratio 2:7:9 due to which B got Rs.136 less. What is the amount to be distributed? Quantity II: Rs.1228 In the question, two quantities I and II are given. You have to solve both the quantities to establish the correct relation between Quantity I and Quantity II and choose the correct option.Solution
Real ratio = (1 + 3 + 2) = 6 Incorrect ratio = (2 + 7 + 9) = 18 Let amount be 18x (L.C.M of 6 and 18) Amount to be received by B = 18x/6 × 3 = 9x Amount erroneously received by B = 18x/18 × 7 = 7x Difference = 9x - 7x = 2x ∴  2x = 136 ⇒  x = 68 So, Amount = 18x = 18 × 68 = Rs.1224 Quantity II: Rs.1228 Hence, Quantity I < Quantity II
Which of the following data structures follows the Last-In, First-Out (LIFO) principle?
What is the purpose of the CASE statement in SQL?
Which of the following scheduling algorithms minimizes average seek time?
What were the early operating systems commonly known as, and what was their primary function?
The "state-space tree" is a conceptual tool often associated with backtracking. What does it represent?
Consider the following C++ code:
#include
class Base {
public:
  virtual void show() = 0;
};
cl...
When implementing a circular queue using an array in C, what is the primary advantage over a linear array-based queue?
The Maximum Power transfer theorem states that maximum power is delivered when_______
What is the purpose of the #define directive in programming languages like C and C++?
State true or false
A ping of death attack involves sending a malformed packet to a targeted machine, resulting in deleterious behavior such ...