Question
A person invested Rs. x at 20% CI p.a. in scheme A for 2
years. The interest received was reinvested in B for 2 years at 15% SI p.a. The amount received from scheme B was 1430. Find x.Solution
CI = P [(1 + (R/100)n) – 1] => CI = x [(1 + (20/100)2) – 1] => CI = x [(36/25) – 1] => CI = 11x/25 Now, interest received was reinvested in scheme B. SI = (11x × 15 × 2)/(25 × 100) => SI = 33x/250 Amount = P + SI => 1430 = 11x/25 + 33x/250 => x = Rs.2500 Alternate Method: => (130/100) × 0.44x = 1430 => x = Rs.2500
What is the output of the following Python code snippet?
x = [1, 2, 3]
y = x
x.append(4)
print(y)
What is the purpose of the subnet mask in IP addressing?
Which isolation level allows transactions to read uncommitted changes made by other transactions?
Which company originally developed the Go programming language?
Conditional statements are also known as ________ statements.
What issue does the “Count to Infinity” problem relate to in distance-vector protocols?
Running time T(n) where 'n' is the input size of the recursive algorithm given as : T(n) = c + T(n-1), if n > 1 ; T(n) = d if n < 1. The order of the a...
The normal distribution is also known as the:
In 16-bit 2’s complement representation, the decimal number -28 is
What is a cache memory?