Question
Mr Rohila left his entire property to his wife, daughter
and son and the cook. His son and daughter got half the estate, sharing in the ratio of 3:2. His wife got equal as much as his daughter. If the cook received Rs 9,000, then the entire property was worth:Solution
Let the entire property be Rs x Part of son and daughter together = 1/2 x Ratio of son and daughter = 3:2 Son get = 3/5×1/2 x Daughter get = 2/5 × 1/2 x Wife get = 2/5 × 1/2 x Cook get = Rs 9,000 ⇒ x - (3x/10+ 2x/10+ 2x/10) = 9,000 ⇒x - ((3x+2x+2x)/10) = 9,000 ⇒3x/10= 9,000 ∴ x = 30,000 ALTERNATE METHOD: Let the entire property = 100% His sons & daughters got 50% in 3:2 means that share of his sons = 30% & that of daughter = 20% So share of wife = 20% Hence remaining share is of cook So 30% of entire property = 9000 Hence entire property = 9000×100/30 = 30,000
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 ...