Question
According to Code 80 of the Occupational Safety, Health
and Working Conditions Code, 2020, how many days in advance must an employer apply for permission to close down an industrial establishment?Solution
Ans. c, As per Code 80. (1) An employer who intends to close down an undertaking of an industrial establishment to which this Chapter applies shall, electronically or otherwise, apply in such manner as may be prescribed, for prior permission at least ninety days before the date on which the intended closure is to become effective, to the appropriate Government, stating clearly the reasons for the intended closure of the undertaking and a copy of such application shall also be served simultaneously on the representatives of the workers in such manner as may be prescribed: Provided that nothing in this sub-section shall apply to an undertaking set up for the construction of buildings, bridges, roads, canals, dams or for other construction work.
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...