Question
A person invested ₹15,000 at a simple interest rate of
20% per annum. Had the amount been invested at a compound interest rate of 20% per annum, compounded annually, how much additional interest would he have earned after 2 years?Solution
Simple interest = Sum X (rate of interest/100) X (time in years) Simple interest earned in two years = 15000 X (20/100) X 2 = Rs. 6,000 And compound interest earned in two years: = 15000 X {1 + (20/100) }2 - 15000 = Rs. 6,600 So, required difference = 6600 - 6000 = Rs. 600
In Python, which method is used to convert a string to lowercase?
In Java, which method is called when an object is garbage collected?
In C, what will be the output of the following code?
int a = 5;
printf("%d", a++);
Which of the following is correct for a single-line comment in C++?
Which of the following systems is typically designed to support managerial decision-making?
Which of the following algorithms is commonly used in Machine Learning for clustering tasks?
Which of the following is used to handle exceptions in Java?
Which of the following is true about Java interfaces?
Which of the following algorithms is used for finding Minimum Spanning Tree?
Which of the following is used to declare a list in Python?