Question
Rs. 13000 invested for 2 years in a scheme offering
compound interest (compounded annually) of 15% p.a. gives an interest that is Rs. 10 less than the interest received on investing Rs. Y for a year at simple interest of 10% p.a.. Find the value of ‘Y’.Solution
Interest returned on investing Rs. 13000 = 13000(1 + 15/100)2 – 13000 = 13000(115/100)2 – 13000 = 13000(23/20)2 – 13000 = 13000{232/202)- 1} = 13000{529/400)- 1} = 13000(529 - 400)/400 = Rs. 4192.5 So, interest returned on investing Rs. Y for 1 year at simple interest of 10% p.a. = 4192.5 + 10 = Rs. 4202.5 Or, Y × (10/100) = 4202.5 Or, Y = 4202.5 × (100/10) Or, Y = 42025
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)?