Question
A tank can be filled by a pipe in 24 minutes. There is also
a leak that can empty the full tank in 40 minutes. Determine the time to fill half the tank when both are working together.Solution
ATQ,
Let the total tank capacity be 120 litres (LCM of 24 and 40)
Efficiency of filling pipe = 120 ÷ 24 = 5 litres/minute
Efficiency of leak = 120 ÷ 40 = -3 litres/minute
Required time = (0.5 × 120) ÷ (5 - 3) = 30 minutes
You encounter a bug that only appears intermittently and is difficult to reproduce. What is this type of bug often called?
Which of the following statements about a dense index is correct?
Consider the following Java code snippet:
  import java.util.Collections;
  import java.util.PriorityQueue;
  public cl...
An algorithm has a time complexity of O(N² ). If the input size N doubles, how does the execution time approximately change?
In the context of IPv4 vs. IPv6, which of the following statements is true regarding address space?Â
Which statement is FALSE for PLL used for demodulation of FM?
Which of the following statements accurately describes Third Normal Form (3NF) in database normalization?
What does the term "code optimization" refer to in the context of software development?
Which of the following statements best describes the concept of a computing model in computer science?
What is the primary advantage of using recursion over iteration for certain problems (e.g., tree traversals)?