Question
A, B, and C can together complete a task in 12 days. A
and B can complete the same task in 16 days, and B and C can complete it in 20 days. In how many days will A, B, and C together complete the task if A works alone for the first 5 days?Solution
Let the total work be W. From the given data: 1/A + 1/B + 1/C = 1/12, 1/A + 1/B = 1/16, 1/B + 1/C = 1/20. Solving these, we find: 1/A = 1/30, 1/C = 1/48, and 1/B = 7/240. Now, A works alone for the first 5 days, so work done = 5 * 1/30 = 1/6. Remaining work = W β 1/6 = 5/6. Now, A, B, and C work together, so time taken = 5/6 / (1/12) = 10 days Correct Option: b)
Which of the following techniques is most suitable for handling and organizing an unstructured dataset with textual data?
In Python, which library is most commonly used for data manipulation?
You are analyzing sales data and notice missing values in some of the records. What is the most appropriate first step to take during the data analysis ...
What does the Dickey-Fuller test primarily assess in a time series dataset?
In regex, ^abc matches:
Which of the following methods is most effective in reducing selection bias during the sampling process?
Which of the following Python libraries is most appropriate for creating statistical visualizations such as violin plots and heatmaps?
An e-commerce company wants to understand the trend of holiday season sales over the past decade to forecast future sales. Which analysis method should ...
Given the following SQL query:
SELECT department _ id, COUNT(*) AS employee _ count
FROM employees
GROUP BY department_id
HA...
Which data modeling technique is used to represent the relationships between entities in a database?