Question
A man invested a sum of Rs 25,000. He invested some part
at 5 % p.a. and remaining at 5.5% p.a. How much money did he invest at 5 % p.a.? Statement I: The total interest amount paid after 1 year was Rs 1300 Statement II: The interest on one sum was twice that on the other. In each of the following questions, a question is followed by two statement. Read all the statements and find that which statements are required to answer the question and answer accordingly.Solution
Let the first part is Rs x, then remaining part is Rs (25000 - x) From statement I, [(5 ×1 ×x)/100] + [((25,000 -x) ×1 × 5.5)/100] = 1300 -(0.5 x)/100 = - 1375 + 1300 So -0.5x/100 = -75 x = 15,000 From statement II, [(5 ×1 ×x)/100] = 2 [((25,000 -x) ×1 × 5.5)/100] (5 x)/100 = (275000 - 11x)/100 16 x = 275000 x = 17187.50 So answer can be determined by either of statement I or 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 ...