Start learning 50% faster. Sign in now
ATQ, Compound interest = Sum × {1 + (rate of interest/100) }time period - Sum For SIP 'X': Interest earned = 8000 × {1 + (20/100) }2- 8000 = 8000 × (1.2)2 - 8000 = 8000 × (1.44 - 1) = Rs.3,520 For SIP 'Y': Effective rate of interest = 20 ÷ 2 = 10% per term Effective time period = (18/12) × 2 = 3 terms So, interest earned = 8000 × {1 + (10/100) }3 - 8000 = 8000 × (1.1)3- 8000 = 8000 × (1.331 - 1) = Rs. 2,648 So, required difference = 3520 - 2648 = Rs. 872
Which of the following is a primary reason for using digital signatures in modern cryptography?
In database management systems (DBMS), which normalization form removes partial dependency?
Which of the following data structures is best suited for implementing a priority queue?
Which method is used to compute the inverse of a matrix in numerical computing efficiently?
How do we can Delete all in SQL
Which of the following SQL queries is used to find the second highest salary from an employee table?
SELECT MAX (salary) FROM emp...Which all statements are correct about Sorting
SMTP commands
Predict the program output
void main ()
{
int x = 128;
printf ("n%d", 1 + x++);
}