Question
Arjun acquired a smartphone with a price tag of Rs.
18,000. For the initial payment, he paid Rs. 2,160. The remainder was to be paid in two equal installments, but with a twist. The installments were subject to compound interest at a rate of 20% per annum, compounded annually. Calculate the value of each installment.Solution
ATQ, Amount due after down payment = 18000 β 2160 = Rs. 15,840 Let the amount of each instalment be Rs. βaβ Amount to be paid at the end of 1st year = 1.2 Γ 15840 = Rs. 19,008 According to the question, 1.2 Γ (19008 β a) = a Or, 1.2 Γ 19008 β 1.2a = a Or, 2.2a = 1.2 Γ 19008 Or, a = {(1.2 Γ 19008)/2.2} = 10368 Therefore, each installment = Rs.10,368
Which SQL statement is used to remove all rows from a table without logging individual row deletions?
What does re.sub(r'(\w+)', r'_\1_', 'hello world') return?
In a relational schema, which normal form eliminates transitive dependencies (i.e., non-prime attribute depends on another non-prime attribute)?
Which of the following is a transaction property ensuring all steps are completed or none?
Which of the following is a significant disadvantage of using a traditional file system compared to an RDBMS?
Which of the following is used to remove all records from a table without removing the table structure?
Which normal form removes partial dependency?
What is context switching?
Consider a `Stack` data structure implemented with `push` and `pop` operations. What is the final state of the stack after the following sequence of ope...
Which concurrency anomaly is specific to phantom reads?