Question
If 20 per cent of the number of participants of drama
competition has been shortlisted for the next level of completion, then what is the number of shortlisted participants for the next level?Solution
Total Number of Participants in Drama competition = (15 × 6300)/100 = 945 The number of shortlisted participants for the next level = (945 × 20)/100 = 189
What is the time complexity of inserting an element in a heap?
Which architecture allows multiple processors to share memory and work simultaneously?     Â
The time complexity of computing the all-pairs shortest paths in a dense graph with V vertices using Floyd–Warshall is:
Which data structure is used for implementing recursive function calls?
Which algorithm uses a “divide and conquer” strategy?
Which sorting algorithm has an average-case time complexity of O(n log n) and is known for its efficiency, often using a divide-and-conquer approach?
In dynamic programming, which principle ensures correctness by solving overlapping subproblems and storing results?
Which of the following is a critical concern for securing critical infrastructure?
Which algorithm guarantees minimum spanning tree and will produce a different tree depending on tie-breaking?
Consider the following Python code snippet for binary search:
  def binary_search(arr, target):
    low = 0
    ...