Question
The difference between the compound interest and simple
interest on a certain sum for 2 years at 10% per annum is Rs. 72. Find the simple interest on the same sum at the same rate for 3 years.Solution
ATQ, For 2 years: CI − SI = [P × (r²/100²)] ⇒ 72 = P × (10² / 10000) = P × (100 / 10000) = P/100 So P = 72 × 100 = 7,200 SI for 3 years = [(P × r × t)/100] = [(7200 × 10 × 3)/100] = 2,160.
What is the primary benefit of polymorphism?
Which of the following is NOT a typical step in NLP text preprocessing?
Which of the following statements best describes a "trap door" in the context of computer security?
Which protocol is used to dynamically assign IP addresses to devices on a network?Â
What is the primary goal of the Matrix Chain Multiplication problem in dynamic programming?
Which feature of Big Data refers to the speed of data generation and processing?
What is the significance of the "best case" time complexity of an algorithm?
Which of the following best describes the concept of ‘Concurrency’ in the context of Operating Systems?Â
An algorithm has a time complexity of O(N² ). If the input size N doubles, how does the execution time approximately change?
Consider the following Python code:
  def mystery(a, b):
    if a == 0:
      return b
    e...