Question
The simple interest on Rs. 800 at R% per annum for 5
years is Rs. 200. Find the simple interest on Rs. 1200 at (R + 2)% per annum for 3 years.Solution
According to question, 200 = 800 × R% × 5 R = 200/40 = 5 Therefore, required interest = 1200 × (5 + 2)% × 3 = Rs. 252
In RDBMS, what is the purpose of the Data Dictionary?
What is the primary advantage of using shared memory for IPC?
What is the output of the following code?
print(min(max(False,-30,-4), 12,7))
In the _____ traversal we process all of the vertex descendant before we move to an adjacent vertex.
The Master-Slave JK flip-flop overcomes the problem of race conditions by:
In the context of ADTs, what does "encapsulation" refer to?
The boolean function f(x, y) = x OR (NOT(y)) is equivalent to which of the following boolean expressions?
In the context of IPC, what does FIFO stand for?
Below code will give what result for f(3)
f(int x)
{
If(x
Return;
f(x-1);
printf(“%d”, x);
f(n-1);
}
Which command is used to append the contents of one file to another file in a Unix/Linux system?