Question
Raju invested a certain sum at
25% p.a. compound interest, compounded annually, and earned an interest of Rs. 2925 in 2 years. What will be the interest when the same amount is invested at 20% p.a. simple interest for three years?Solution
ATQ,
Compound Interest Formula: A = P × (1 + R/100)^T Given: Interest earned = Rs. 2925 Rate = 25% p.a. Time = 2 years A = P × 1.5625 Interest earned = A - P = 2925, P × 0.5625 = 2925 P = 2925 / 0.5625 P = 5200 Simple Interest Formula: SI = (P × R × T) / 100 Given: Principal = Rs. 5200 Rate = 20% p.a. Time = 3 years SI = (5200 × 20 × 3) / 100 SI = 3120 Hence, The interest earned with 20% p.a. simple interest for 3 years is Rs. 3120.
Which condition must be satisfied for Kruskal’s Algorithm to function correctly?
What is the main advantage of using data storytelling in presenting data-driven insights?
A company has a large dataset with a mix of numeric and categorical data. To ensure fair comparisons between variables, which data transformation techni...
Which of the following is an example of an independent variable in a data analysis model that predicts employee productivity based on training hours?
Which algorithm is commonly used for classification tasks?
Why is Exploratory Data Analysis (EDA) considered a crucial step in the data analysis process?
Which of the following protocols is widely used for low-power, short-range communication in IoT devices?
What is the difference between samples and populations in data analysis?
Deadlock prevention in operating systems can be achieved by ensuring which of the following conditions does NOT hold?
Consider the following Python code snippet:
class Employee:
  def __init__(self, name, age):
    self.name = name
<...