Question
'P' invested Rs. 7,500 in a business. After 'n' months,
'Q' joined the business investing Rs. 2,500 more than 'P'. At the end of 20 months since 'P' started the business, ratio of profit share of 'P' to 'Q' was 3:2. Find the value of 'n'.Solution
Ratio of profit share of 'P' to 'Q'
= (7,500 Γ 20) : (10,000 Γ (20 β n))
= 15 : (20 β n) So,
15 : (20 β n) = 3 : 2 Or,
15 Γ 2 = 3 Γ (20 β n) Or,
30 = 60 β 3n Or,
3n = 30 Or,
n = 10
Which data cleaning technique is most appropriate for handling missing data when missing values are randomly distributed across a dataset?
What is the primary difference between recursion and iteration in programming?
Which of the following is an example of semi-structured data?
In VLANs (Virtual LANs), what protocol is used to carry VLAN information between switches?
In data management, what role does metadata play when working with a large dataset of customer transactions?
In data analysis, why is sampling often preferred over analyzing an entire population?
Which of the following is the primary purpose of exploratory data analysis (EDA)?
In file systems, which allocation method results in the maximum random access performance?
Which of the following best describes quantitative data in a business analysis context?
Given the following SQL query:
SELECT department _ id, COUNT(*) AS employee _ count
FROM employees
GROUP BY department_id
HA...