Question
Atul, Qureshi, and Chintu can individually complete a
certain task in 27 days, 30 days, and 36 days, respectively. They all begin working on the task together, but Chintu stops after 4 days. Additionally, Qureshi leaves 5 days before the task is finished. How many days does it take to complete the entire task?Solution
ATQ,
Let the total task = 540 units (LCM of 27, 30 and 36) Amount of task done by Atul alone in one day = 540/27 = 20 units Amount of task done by Qureshi alone in one day = 540/30 = 18 units Amount of task done by Chintu alone in one day = 540/36 = 15 units Amount of task done by Atul, Qureshi and Chintu together in 4 days = 4 × (20 + 18 + 15) = 212 units Amount of task done by Atul alone in 5 days = 5 × 20 = 100 units Remaining work = 540 – 212 – 100 = 228 units Time taken by Atul and Qureshi together to complete 228 units work = 228/(20 + 18) = 228/38 = 6 days So the total time taken to complete the task= 6 + 4 + 5 = 15 daysÂ
The CPU control unit typically generates control signals for various components within the CPU, including the:
Which technique is commonly used for visualizing the flow of data within a system in the form of diagrams?
How can we set default rwx permission to all users on every file which is created on the current shell?
Trace the output int main() { int a=12,b=39; printf ("%d",a&b); return 0; }
Which of the following is NOT a common type of firewall?
Token Ring networks operate at what speed?
Which layer of the OSI model is responsible for encrypting and decrypting data for security purposes?
The below mentioned code is in which programming language
type
array-identifier = array[index-type] of element-type;
Which technology is most commonly associated with cryptocurrencies like Bitcoin?
Running time T(n) where 'n' is the input size of the recursive algorithm given as : T(n) = c + T(n-1), if n > 1 ; T(n) = d if n < 1. The order of the a...