Question
A certain sum of money amounts to ₹12,600 in 2 years
and ₹14,490 in 3 years at compound interest. Find the rate of interest per annum.Solution
Compound Interest formula: A = P(1 + r/100)^t Let the principal be ₹P and the rate be r%. From the given, ₹14,490 / ₹12,600 = (1 + r/100)^(3-2) 14,490 / 12,600 = 1 + r/100 1.15 = 1 + r/100 r = 15% Correct answer: c) 15%
What does Polymorphism mean in the context of OOP?
What is the purpose of a heuristic function in AI search algorithms?
In a nodal analysis a circuit with 10 nodes will have _______ unknown voltage and _______equation.
Which heuristic search strategy uses both cost so far and estimated cost to goal?
Consider the following C code snippet designed to calculate the sum of digits of a non-negative integer:
#include
in...
A C function insert(Node* root, int data) for a BST.
#include
typedef struct Node {
int data;
struct ...
What is the main drawback of the Minimax algorithm?
A system uses paging with a logical address space of 2^26 bytes and a page size of 4 KB. How many bits are required for the page number in the logical a...
The kelvin double bridge is used for______
You encounter a bug that only appears intermittently and is difficult to reproduce. What is this type of bug often called?