Question
A invest Rs. X at 10% compound interest for 3 years. If
difference between the interest of 3rd year and 2nd year is Rs. 1210, find the value of X.Solution
Let the sum invested be 1000k. Amount after 1 year = 1000k × 1.1 = 1100k Sum after 2 years = 1100k × 1.1 = 1210k Interest of 2nd year = 1210k – 1100k = 110k Sum after 3 years = 1210k × 1.1 = 1331k Interest of 3rd year = 1331k – 1210k = 121k => 121k – 110k = 1210 ⇒ 11k = 1210 ⇒ k = 110 Hence, X = 1000 × 110 = Rs. 110000
Consider the following C++ code:
#include
class Base {
public:
  Base() {
    std::cout << "Ba...
What problem does the Floyd-Warshall algorithm solve?
Which of the following practices is essential for maintaining security compliance in both Windows and Unix/Linux environments?Â
Simplify the Boolean expression.
Y= AB+A(B+C)+B(B+C)
Consider the following Python code:
class Vehicle:
  def __init__(self, brand):
    self.brand = brand
  def...
fill the blank for 19.
Which of the following is a challenge in machine translation?
Which of the following statements accurately describes the characteristics of a primary key in a relational database?
Which of these is a primary benefit of cloud disaster recovery?
Binary Search is an efficient searching algorithm that follows the Divide and Conquer approach. What is its time complexity?