Question
P deposits ₹(A - 10,000) in a bank at an interest rate of
10% per annum, compounded half-yearly, for 1 year. Meanwhile, Q invests ₹(A + 15,000) in the same bank at an interest rate of 12% per annum, compounded annually, for 2 years. If the total interest earned by both P and Q together amounts to ₹9,929, find the value of A.Solution
(A - 10000)*[(1 + 10/200) 2 - 1] + (A + 15000)*[(1 + 12/100) 2 -1] = 9929
41/400 * (A - 10000) + 159/625 * (A + 15000) = 9929
3569A/10000 = 9929 + 1025 - 3816
A = ₹20000
In paging, the page size is defined by:
A system is in a safe state when:
If every non-key attribute is functionally dependent on the primary key, the relation will be in
A program needs to process elements from a `Queue` until it becomes empty. Which control flow structure is most suitable for this task?
Which operation is NOT part of relational algebra?
Consider the following Java code snippet
public class Car {
private String model;
private int year;
publ...
In relational algebra, the operation that combines tuples from two relations using common attribute values is:
What is a table joined with itself called?
Which SQL command is used to retrieve data from a table?
In a relational schema, which normal form eliminates transitive dependencies (i.e., non-prime attribute depends on another non-prime attribute)?