Question
Three individuals, 'A', 'B', and
'C', are employed to complete a task. How many days will it take for 'A', 'B', and 'C' to finish the work together? Statement I: Â 'C' requires the same amount of time to complete the work as 'A' would if 'C' operates at 125% efficiency. 'B' can complete the task in 12 days, and 'A' and 'B' together finish it in 48/7 days. Statement II: Â 'A' can finish the task in 20 days when working at 80% efficiency, while 'B' requires 8 days less than 'C' to complete the task. The question consists of two statements numbered "l and II "given below it. You have to decide whether the data provided in the statements are sufficient to answer the question.Solution
ATQ, Statement I: Let, time taken by 'C' to do the work with 100% efficiency = y days So, time taken by 'C' to do the work with 125% efficiency = 4y/5 days Therefore, time taken by 'A' to do the work = 4y/5 days Work done by 'A' and 'B' in one day = 5/4y + 1/12 = (15 + y)/12y So, (15 + y)/12y = 7/48 60 + 4y = 7y 3y = 60, y = 20 Therefore, 'C' will take 20 days to do the work with 100% efficiency. Work done by all three in one day = 1/20 + 7/48 = (12 + 35)/240 = 47/240 Required number of days = 240/47 days Statement I alone is sufficient to answer the question Statement II: Number of days taken by 'A' to do the work with 100% efficiency = 20 × 4/5= 16 days Let, time taken by 'B' to do the work = x days Then, time taken by 'C' to do the work = (x + 8) days Statement II alone is not sufficient to answer the question.
Python's built-in dict (dictionary) data structure is typically implemented using a hash table. What is the average-case time complexity for get, set, a...
Which CPU scheduling algorithm is known for minimizing the average waiting time for a set of processes?Â
 How many participating entities are there in an n-ary relationship where n=5?
Which type of polymorphism in Java is achieved through method overloading?
Consider the following Python code:
  def mystery(a, b):
    if a == 0:
      return b
    e...
A software development team is implementing a sorting function for a large dataset in their project. They decide to use the quick sort algorithm to opti...
The following Python code intends to enforce that all `Worker` subclasses implement a `work` method. However, it's not working as expected.
class...
Which of the following is a challenge in machine translation?
The following C++ code has a common inheritance-related issue. How can it be debugged to ensure the derived class constructor properly initializes the b...
What is the output for the below code
MyList = ["New York", "London", "Paris", "New Delhi"] MyFile=open('output.txt','w') Â for element in MyLis...