Question
Amit is 66(2/3)% more efficient than Vivek who can do
the same work in 25% more time than Sameer. If Amit and Sameer together can complete 70% of work in 15 days, then in how many days 90% of work can be completed by Vivek and Sameer together.Solution
Ratio of efficiency of Amit and Vivek = 5:3 Ratio of time taken by Vivek and Sameer alone to complete the work = 5:4 Ratio of efficiency of Vivek and Sameer = 4:5 ⇒  Ratio of efficiency of Amit, Vivek and Sameer = 20: 12: 15 Total unit of work = (15/70) × 100 × 35(20 + 15) = 750 units Required time = (750/27) × (90/100) = 25 days
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?