Question
'Alex,' 'Ben,' and 'Charlie' can individually complete a
task in 40, 60, and 100 days, respectively. They decide to work together, but there's a unique pattern: 'Alex' works every day, 'Ben' joins in on odd-numbered days, and 'Charlie' on even-numbered days. Calculate the time required to finish the entire task following this alternating work schedule.Solution
ATQ, Let the total work be 600 units. {LCM (40, 60 and 100)} So, efficiency of 'Alex' = 600 ÷ 40 = 15 units/day And efficiency of 'Ben' = 600 ÷ 60 = 10 units/day And efficiency of 'Charlie' = 600 ÷ 100 = 6 units/day So, work done in every 2 days = (15 × 2) + 10 + 6 = 46 units/day So, work done in 26 days = (26/2) × 46 = 598 units And time taken by 'Alex' and 'Ben' together to finish the remaining work on last day = {(600-598)/(15+10)} So, total time taken = 26 + (2/25) =26(2/5)
A developer is tasked with implementing a task scheduling system where multiple tasks with dependencies need to be executed. Which data structure would ...
Which of the following data visualization tools is specifically designed for creating interactive dashboards for business analytics?
In data cleaning, which technique is most effective in handling outliers in a dataset that could skew analysis?
Which of the following is an example of non-random sampling?
Which forecasting method is most appropriate for time series data with a consistent trend but no seasonality?
What is polymorphism in Python?
Which sampling technique is most appropriate when the population is naturally divided into groups that differ significantly from each other?
In Python, which method removes missing values?
What will be the output of the following Python code?
def modify_list(lst):
for i in range(len(lst)):
lst[i] = ls...
A scatter plot reveals a strong positive linear relationship between two variables. Which of the following is the most appropriate statistical measure t...