Question
Consider the following statements with reference to the
socio-economic conditions prevalent in India during the 18th century: 1. Agriculture made progress with technological development and innovative methods of production. 2. Inter-caste marriages were forbidden. Which of the statements given above is/are correct?Solution
β Statement 1 is incorrect: Indian agriculture during the 18th century was technically backward and stagnant. The techniques of production had remained stationary for centuries. The peasants tried to make up for technical backwardness by working very hard. But, unfortunately, they seldom reaped the fruits of their labor. β Statement 2 is correct: Caste was a major divisive force and element of disintegration in India of the 18th century. Apart from the four varnas, Hindus were divided into numerous castes (Jatis). Inter-caste marriages were forbidden. There were restrictions on interdining among members of different castes. The Shia and Sunni (two sects of Muslim religion) nobles were sometimes at loggerheads on account of their religious differences.
The Boyer-Moore algorithm is known for its efficiency in practice, especially for long patterns and large alphabets. It uses two heuristics: the bad cha...
What is a primary feature of the Agile Model in software development?
When evaluating the performance of an algorithm, which of the following factors is generally considered most important for large input sizes?
What is the primary advantage of using an Object-Oriented Programming approach?
In pandas, what does df.groupby('A').agg({'B': 'sum', 'C': 'mean'}) return?
float i=10;
int f=i;
What kind of typecasting is happening in the above scenario a ?
What is a characteristic feature of a dense index in a database indexing system?
A recursive backtracking solution for the Subset Sum problem is generating duplicate subsets or missing valid subsets. Assuming the input array might co...
Consider the following Java code snippet:
Β Β import java.util.ArrayList;
Β Β import java.util.Arrays;
Β Β import java.util.L...
The following Python code intends to enforce that all `Worker` subclasses implement a `work` method. However, it's not working as expected.
class...