Question
What is the total financial outlay of the Tex-RAMPS
Scheme for 2025-26 to 2030-31?Solution
The Tex-RAMPS Scheme, approved by the Government of India, has a total outlay of ₹305 crore for the period FY 2025–26 to FY 2030–31. It is a Central Sector Scheme fully funded by the Ministry of Textiles.
When choosing an algorithm for a specific task, what is the most important factor to consider first?
Dijkstra's algorithm, used for finding the shortest paths from a single source to all other vertices in a graph with non-negative edge weights, is an ex...
Which algorithm divides the input array into two halves, sorts each half, and then merges the sorted halves?
Which of the following network topologies is most resilient to node failures?
In a switch statement (e.g., C++, Java), what happens if a break statement is omitted from a case block?
Which statement is TRUE regarding DIAC thyristor.
Consider the following code:
let data = [1, 2, 3];
function modifyArray(arr) {
arr.push(4);
...
In a data analysis application, a hash table is used to store key-value pairs for fast lookups. What is the primary goal of a good hash function?
Which type of relationship does inheritance represent?
The following Python code intends to enforce that all `Worker` subclasses implement a `work` method. However, it's not working as expected.
class...