Question
How many forms of justice are enshrined in the Preamble to
the Constitution of India?Solution
The Preamble to the Constitution of India articulates three distinct forms of justice: Social Justice (ensuring equality and fairness for all citizens, particularly marginalized groups), Economic Justice (promoting equitable distribution of wealth and economic opportunities), and Political Justice (guaranteeing equal participation in political processes and decision-making).
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...