Question
What would be the annual interest accrued on a deposit
of Rs.24,550 in a bank that pays a 22% per annum rate of simple interest?Solution
ATQ, Principal (P) = Rs. 24,550 Annual Interest Rate®= 22% or 0.22 in decimal Time (T) in years = 1 year (for annual interest) Using the simple interest formula: Interest (I) = P × R × T Now, plugging in the numbers: I = 24,550 × 0.22 × 1 Now, calculate the multiplication: I = Rs. 5,401 The annual interest accrued is Rs. 5,401.
Which operation is used to add an element to the top of a stack?
Which SQL command is used to remove only specific rows from a table while preserving the structure and other rows?
In a data warehousing environment, what is the primary purpose of an OLAP (Online Analytical Processing) cube?
Which design pattern is best suited for managing the creation of objects without specifying their concrete classes?
Which tree traversal gives nodes in non-decreasing order for a BST?
In the context of Management Information Systems (MIS), which of the following best describes the role of a decision support system (DSS)?
Which of the following techniques is most efficient for finding the kth smallest element in a Binary Search Tree (BST)?
Which of the following statements is true about ACID properties in database transactions?
Which of the following best illustrates Encapsulation in Object-Oriented Programming?
What is the output of the following recursive function call func(3) ?
int func ( int n) {Â Â Â Â Â Â Â
   if (n == 0 ) return 1 ; <...