Question
A sum of money triples itself in 12 years. Find the rate
percent per annum.Solution
Let the Principal = Rs 100 Amount = Rs 300 ⇒ Amount = P + I ⇒ 300 = 100 + I I = 300 – 100 = Rs 200 ⇒ R = (SI x 100)/(P x T) ⇒R = 200 x 100/(100 x 12) R = 16.66% p.a.
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 ; <...