Question
What was the key reason for the RBI cutting the repo
rate by 25 bps to 6.25% in February 2025?Solution
The RBI cut the repo rate by 25 bps to 6.25%, marking the first rate cut in five years. This move was intended to reduce borrowing costs, stimulate investment, and boost economic growth. Lower interest rates allow businesses and individuals to borrow at lower costs, promoting spending and economic activity.
Which constraint ensures that no duplicate values exist in a column?
Examine the following Java-like code:Â
  ```java
  class Parent {
    String name = "Parent";
    p...
What is the output of the following pseudo-code?Â
 ```
  count = 0
  for i from 1 to 3:
    for j from 1 t...
Given a `Queue` data structure with `enqueue` and `dequeue` operations. What is the element returned by the last `dequeue` operation in the following se...
Indexes improve query performance but can degrade performance of:
Which of the following is true about the primary key in a relational database?
Which normal form ensures no partial dependency of non-prime attributes on a candidate key?
Which concurrency anomaly is specific to phantom reads?
In a program that manages a collection of `Employee` objects, each with a `salary` attribute, which control flow mechanism would be most efficient to fi...
When implementing a `Graph` traversal algorithm like Depth-First Search (DFS) recursively, what is the primary control flow mechanism that manages the o...