Start learning 50% faster. Sign in now
ATQ,
Interest received from scheme ‘A’ = (6250 × 13 × 4) ÷ 100 = Rs. 3,250
Total amount received from scheme ‘B’ = 3250 × {1 + (10/100)}² = 3250 × (110/100)²
= 3250 × 1.21 = Rs. 3,932.50
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++);
}