What is the relationship between caste system and inequality?
The poor health of people from the lower castes, their social exclusion and the steep social gradient are due to the unequal distribution of power, income, goods and services. Caste is inextricably linked to and is a proxy for socio-economic status in India.
How caste system is an example of inequality?
A person is considered a member of the caste into which he or she is born and remains within that caste until death, although the particular ranking of that caste may vary among regions. yes it is an example of inequality.
Who said caste is a closed class?
Mazumdar & Madan
Why is caste a closed system?
According to Mazumdar & Madan – ‘Caste is a closed class’ i.e. class refers to people based on property, business, occupation i.e. one can’t change his own caste system by can change the class system & can be a member of many classes at the same time. This is not allowed in caste system.
What are some pros and cons of the caste system?
Advantages and Disadvantages of the Caste System
- The Caste system protected people from foreign alien invasions.
- The caste system kept people in check.
- The caste system still let people study their cultures.
- If you good in the life you have now you will have good karma and be reincarnated into a better caste.
- They allowed you to marry anyone in your caste.
What are the merits and demerits of the caste system?
Caste System in India: Merits and Demerits
- (i) Trade union and orphanage: It has provided every individual with a fixed social environment.
- (ii) Spirit of cooperation:
- (iii) Defines economic pursuits:
- (iv) Racial purity:
- (v) Influences intellectual make-up:
- (vi) Integration of the country:
- (vii) Provides for various Junctions:
- (viii) Cultural diffusion:
What is the conclusion of caste system?
In the Indian social system, caste is a solid structure. Caste system is also an important identity of India. As an important institute of Indian social system its impact on equality, inequality, social and economic matters is seen for a long time.
Why are arrays used at all?
Arrays are used when there is a need to use many variables of the same type. It can be defined as a sequence of objects which are of the same data type. It is used to store a collection of data, and it is more useful to think of an array as a collection of variables of the same type. Arrays can be declared and used.
What is an array answer?
An array is a data structure that contains a group of elements. Typically these elements are all of the same data type, such as an integer or string. Arrays are commonly used in computer programs to organize data so that a related set of values can be easily sorted or searched.
How do arrays work?
An array is a container object that holds a fixed number of values of a single type. The length of an array is established when the array is created. After creation, its length is fixed. Each item in an array is called an element, and each element is accessed by its numerical index.
What are arrays for beginners?
Arrays represent a collection of elements, these elements can be of different types; integers , characters , strings , floating-point values and even composite types such as arrays which allows you to create nested array structures should you wish, or objects which are a group of elements all bundled together.
What are the types of arrays?
There are three different kinds of arrays: indexed arrays, multidimensional arrays, and associative arrays.
Are arrays efficient?
Arrays are extremely powerful data structures that store elements of the same type. The type of elements and the size of the array are fixed and defined when you create it. Removing at the end of the array is very efficient because you only delete the last element.
Is array or list faster?
The array is faster in case of access to an element while List is faster in case of adding/deleting an element from the collection.