Question
P, Q, and R can complete a work in 12 days. 15 days and
30 days, respectively, working alone. How soon can the work be completed if P is assisted by Q and R on alternate days?ÂSolution
Total work = 60 (LCM of 12, 15 and 30) P's efficiency = 60/12 = 5 Q's efficiency = 60/15 = 4 R's efficiency = 60/30 = 2 Pattern of work = PQ, PR, PQ, PR... Work done by PQ and PR in 2 days = (5 + 4) + (5 + 2) = 16 2 days => 16 units 2 Ă— 3 = 6 days => 16 Ă— 3 = 48 units remaining in 12 units done by PQ in = work/efficiency = 9/ (5 + 4) = 1 days Total time taken = 6 + 1 = 7 days Now remaining 3unit work done by PR = 3/5+2=3/7day 7+3/7 =52/7days.
What is the output of the following Python code snippet?
  x = [1, 2, 3]
  y = x
  x.append(4)
  print(y)
What is the purpose of the subnet mask in IP addressing?
Which isolation level allows transactions to read uncommitted changes made by other transactions?
Which company originally developed the Go programming language?
Conditional statements are also known as ________ statements.
What issue does the “Count to Infinity” problem relate to in distance-vector protocols?
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...
The normal distribution is also known as the:
In 16-bit 2’s complement representation, the decimal number -28 is
What is a cache memory?