Question
The difference between the compound interest, compounded
annually and simple interest on Rs. ‘P’ at the rate of 25% p.a. for 2 years, is Rs. 125. If Rs. (P + 2000) is invested at the same rate p.a., then find the compound interest, compounded annually earned after 3 years. MTSolution
Using formula Difference = Sum(R/100)2 Or, 125 = P(25/100)2 Or, 125 = P(625/10000) Or, 0.0625P = 125 Or, P = 2000 Sum that is invested on compound interest = 2000 + 2000 = Rs. 4000 Compound interest = 4000(1 + 25/100)3 – 4000 = 4000 × (5/4) × (5/4) × (5/4) – 4000 = 7812.5 – 4000 = Rs. 3812.5
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...