Question
The question consists of three statements numbered
βI, II and IIIβ given below it. You have to decide whether the data provided in the statements are sufficient to answer the question. There are 4 persons i.e. βPβ, βQβ, βRβ and βSβ. Find the income of βRβ. Statement I: The average of incomes of βPβ, βQβ and βRβ is Rs. 16000, while income of βSβ is Rs. 18000 more than that of βPβ. Statement II: The ratio of incomes of βPβ and βSβ is 2:5, respectively, and sum of incomes of βPβ and βQβ is Rs. 36000. Statement III: Qβs income is twice that of Rβs and Rs. 6000 less than that of Sβs.Solution
Let, income of βPβ = Rs. p Income of βQβ = Rs. q Income of βRβ = Rs. r Income of βSβ = Rs. s Statement I: (p + q + r) = 16000 Γ 3 = Rs. 48000 s = (p + 18000) Therefore, statement I alone is not sufficient to answer the question. Statement II: (p/s) = 2/5 And, p + q = 36000 Therefore, statement II alone is not sufficient to answer the question. Statement III: Qβs income is twice that of βRβ and Rs. 6000 less than that of βSβ. Therefore, statement III alone is not sufficient to answer the question. Combining statement I and II: So, p + q + r = 48000 s = p + 18000 p/s = 2/5 p = 2s/5 s - 2s/5 = 18000 3s/5 = 18000 s = 30000 p = 2 Γ 30000/5 = 12000 Also, p + q = 36000 q = 36000 - 12000 = 24000 12000 + 24000 + r = 48000 r = 12000 So, statement I and II together is sufficient to answer the question. Combining Statement II and III: p/s = 2/5 p = 2s/5 p + q = 36000 Or, q = s - 6000 And, q = 2r Therefore, (2s/5) + s - 6000 = 36000 Or, 7s/5 = 42000 Or, 7s = 210000 Or, s = 30000 So, q = s - 6000 = 24000 Or, r = q/2 = 12000 So, statement II and III together is sufficient to answer the question. Combining Statement I and III: So, p + q + r = 48000 s = p + 18000 And, q = 2r Also, q = s - 6000 So, p = s - 18000 q = s - 6000 r = (s - 6000)/2 Therefore, s - 18000 + s - 6000 + (s - 6000)/2 = 48000 2s - 24000 + (s - 6000)/2 = 48000 4s - 48000 + s - 6000 = 96000 5s - 54000 = 96000 5s = 150000 Or, s = 30000 Or, q = s - 6000 = 24000 So, r = q/2 = 12000 So, statement I and III together is sufficient to answer the question. Therefore, data in any of the two statements together is sufficient to answer the question.
Which of the following is the correct definition of 'polymorphism' in Object-Oriented Programming?
Which SQL keyword is used to sort the result set?
Which of the following prevents inheritance in C++?
Which of the following is used to eliminate redundancy and anomalies in a database?
Which OOP principle allows a single interface to represent different underlying forms or data types?
The concept of "data hiding" is primarily achieved through which OOP principle?
Which of the following correctly describes the concept of 'encapsulation' in OOP?
A primary key in a table:
The result of a Cartesian product of two relations R and S will have:
In C++, if a base class has a virtual function, and a derived class overrides that function, which mechanism ensures that the correct derived class func...