Question
In the areas covered under the Panchayat
(Extension to the Scheduled Areas) Act, 1996, what is the role/power of Gram Sabha ? 1. Gram Sabh has the power to prevent alienation of land in the Scheduled Areas. 2. Gram Sabha has the ownership of minor forest produce Choose the correct Answer :- (a) 1 only (b) 2 only (c) 1 and 2 both (d) Neither 1, nor 2Solution
The correct answer is C
The concept of demand paging relies on:
Which register stores the temporary results during computation?
Python's built-in dict (dictionary) data structure is typically implemented using a hash table. What is the average-case time complexity for get, set, a...
Which component in Hadoop is responsible for managing cluster resources and scheduling tasks?
Consider the following Python code:
  def mystery(a, b):
    if a == 0:
      return b
    e...
Which of the following is a characteristic of "tight coupling" between software modules?
A Java method isLeaf(TreeNode node) is intended to check if a given node is a leaf in a binary tree.
class TreeNode {
  int val;
<...The following Python code intends to enforce that all `Worker` subclasses implement a `work` method. However, it's not working as expected.
class...
What is the main advantage of using subword tokenization in NLP?
Consider a system with 4 CPU cores. If there are 8 user-level threads in a single process, what is the maximum number of these threads that can execute ...