Question
The simple interest on a sum of money for 4 years at 8%
per annum is ₹1,280. What will be the compound interest on the same sum at the same rate of interest for 2 years, compounded annually?Solution
Simple interest for 4 years = ₹1,280 Simple interest for 1 year = ₹1,280 ÷ 4 = ₹320 Principal = (Simple interest × 100) ÷ (Rate × Time) = (320 × 100) ÷ (8 × 1) = ₹4,000 For compound interest: A = P(1 + r/100)^t A = 4000(1 + 8/100)^2 = 4000(1.08)^2 = 4000 × 1.1664 = ₹4,665.6 Compound interest = A - P = ₹4,665.6 - ₹4,000 = ₹665.6 ≈ ₹666 Correct Option: b) ₹666
Which keyword is used in Java to indicate that a class is inheriting from another class?
Which of the following scenarios is best suited for implementation using a stack data structure?
In R, which function reshapes data from long to wide format?
In OOP, what is an instance of a class called?
Consider the following Java code:
public class LengthMix {
public static void main(String[] args) {
int[] numbers...
What is the time complexity of a Binary Search algorithm on a sorted array of 'n' elements?
What does a star schema consist of?
What is the keyword used in Java to indicate that a class is inheriting from another class?
Binary trees are often used to represent hierarchical data. Which of the following is NOT a direct application of binary trees?
Consider the following C code snippet designed to calculate the sum of digits of a non-negative integer:
#include
in...