Question
. Joseph has Rs 24 lakh. How should he invest this money
so as to get maximum amount? Direction (Q. 61 - 65): Read the following data and table to answer the following questions. There are five persons Jack, Jill, John, Jimmy and Joseph. There are three investment schemes in which these five persons can invest their money. The details of these schemes are given below. Note: (i) Amount cannot be withdrawn before maturity period. (ii) No reinvestment after maturity period is allowed in any scheme. (iii) Total Amount (including interest) is payable at the end of the maturity period.Solution
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
    ...