Question
The compound interest (compounded annually) on Rs 8200
for 2 years at R% p.a is Rs 1722. Had the rate of interest been (R+10)% p.a what would have been the interest on the same sum of money for the same time (2 years)?Solution
CI = A + P 1722 = 8200 (1 + r/100)2 - 8200 9922 = 8200(1 + r/100)2 9922/8200 = (1 + r/100)2 121/100 = (1 + r/100)2 (11/10)2 = (1 + r/100)2  11/10 = (1 + r/100)  11/10 - 1 = r/100  1/10 = r/100  r = 10% p.a  New rate = 10 + 10 = 20% p.a  CI = 8200 (1 + 20/100)2 - 8200  = 8200 x 120% x 120% - 8200  = 11808 - 8200  = 3608
Which attack can be mitigated using DNSSEC (Domain Name System Security Extensions)?
In Python, what will be the output of the following code snippet, considering scope rules?
x = 5Â Â Â Â Â Â Â Â Â Â Â Â Â Â
Â
What is the primary purpose of a B+ Tree in a database management system?
What is the primary purpose of an abstract class?
If a stack is implemented using a fixed-size array, what is a significant disadvantage when the stack grows beyond its initial capacity?
What is "rubber duck debugging"?
Consider the following Python code for calculating the length of the LCS:
def lcs_length(text1, text2):
  m = len(text1)
  ...
Time complexity of heap sort is:
A code flow involves processing a stream of data where elements are added to the front and removed from the front. Which type of linked list would provi...
Which of the following best describes Abstraction in Object-Oriented Programming (OOP)?