Quantcast
Channel: Learn CBSE
Viewing all 9452 articles
Browse latest View live

Informatics Practices Class 12 Important Questions Chapter 9 HTML and XML

$
0
0

Informatics Practices Class 12 Important Questions Chapter 9 HTML and XML is part of Informatics Practices Class 12 Important Questions. Here we have given Informatics Practices Class 12 Important Questions Chapter 9 HTML and XML.

Informatics Practices Class 12 Important Questions Chapter 9 HTML and XML

1 Mark Questions

Question 1.
Which tags of HTML are used to
(i) Change the font in a page
(ii) Add a row in a table? (Delhi 2014)
Answer:
(i) < FONT > tag is used to change font in a page.
(ii) <TR> tag is used to add a row in a table.

Question 2.
Which tags/attributes of HTML are used to
(i) Insert the picture in the web page.
(ii) Insert an empty line on the web page. (All India 2014)
Answer:
(i) <IMG> tag is used to insert a picture in a web page.
(ii) <BR> tag is used to insert an empty line in the web page.

Question 3.
Name two tags that are present in every HTML code. (All India 2014C)
Answer:
Two tags that are present in every HTML code:
(i) <HTML>
(ii) <BODY>

Question 4.
Write the name of HTML tag used to include an image in an HTML web page. (Delhi 2012)
Answer:
To include an image in HTML web page the < I MG src = “pathname”> tag is used. Here, in place of a pathname, we have to specify the location on the computer, where the image is stored.

Question 5.
Write HTML code for the following:
To provide a hyperlink to a website (HOTS; Delhi 2012)

http://WWW.w3schoo1.com

Answer:
To provide a hyperlink to a website http://www.w3school.com, we have to write following statement:

<A href=“http://www.w3school.com”>
Click Here </A>

Question 6.
Write the name of HTML tag used to include numbered list in a HTML web page. (All India 2012)
Answer:
To include a numbered list in a HTML web page, we have to use the <OL> tag.

Question 7.
Write HTML code for the following:
To provide hyperlink to a website (HOTS; All India 2012)

http://www.cbse.nic.in

Answer:
To provide hyperlink to a website http://www.cbse.nic.in, we have to use the following tag:

<A href=“http://www.cbse.nic.in”>
Click Here</A>

Question 8.
Which HTML tags are used for making a table and adding rows in an HTML document? (Delhi 2011; All India 2011)
Answer:
To make a table, the <TABLE > tag is used. We can use <TR> tag to define and insert a row into the table and to specify the data to be entered in the table we use the < TD > tag.

Question 9.
How is <OL> tag different from <UL> tag of HTML? (Delhi 2011; All India 2011)
Answer:
The <UL> tag in HTML is used to define an unordered or bulleted list, where the list items are displayed using bullets without numbering. Whereas, <OL> tag is used to define the ordered list, where the list items are displayed by using the numbers in different number formats.

Question 10.
Java is writing an HTML code. How can she see, how the code would look as a web page? (Delhi 2011C)
Answer:
She have to save the HTML code file created in a text editor with .htm or .html extension. Thereafter she needs to open the file in a web browser like Internet Explorer.

Question 11.
What is wrong in the following HTML code: (HOTS; Delhi 2011C)

<UL type = “a” start = 3>

Answer:
The corrected code is as follows:

<OL type = “a” start = “3”>

Question 12.
What is the full form of HTML?
Answer:
HTML stands for HyperText Markup Language.

Question 13.
What is an HTML tag?
Answer:
Tags have a simple structure. They begin with a ” < ” and end with a ” > “. Between the’ < >” angular bracket the tag name and may be some attributes are written, depending upon the tag.

Question 14.
How can you use a picture as a link?
Answer:
We can put an <IMG> between <A> and </A>, so the user can click on the picture to follow the link.

Question 15.
What is the use of comment in an HTML web page?
Answer:
We can put comments in your HTML file that won’t display on the web page. This lets you explain why your HTML code is in a certain way, to anyone viewing your HTML source code.

Question 16.
How can you set a column or a row spanning over more than one rows or columns? (HOTS)
Answer:
Sometimes, we need one cell to span more than one column across or more than one row deep. In these cases, we can use the colspan and rowspan attributes of the <TD> tag.

Question 17.
What is a hypertext link?
Answer:
A hypertext link is a special tag that links one page to another page or resource. If you click the link, the browser jumps to the given link’s destination.

Question 18.
How do you align a table to the right (or left)?
Answer:
You can use <TABLE align = “right” > to align a table to the right. (Use align = “left” to align it to the left.) Any content that follows the closing </TABLE> tagwillflow around the table.

Question 19.
How do you create a link that sends me an e-mail?
Answer:
Use a mailto link.

Question 20.
How can you show HTML examples without them being interpreted as a part of my document?
Answer:
Within the HTML example, first, replace the ‘&’ character with ‘&amp;’ everywhere it occurs. Then, replace the ‘&lt;’ character with ‘ < ‘ and the ‘&gt;’ character with ‘ >’ in the same way.
Note: It may be appropriate to use the CODE and/or pre-elements when displaying HTML examples.

2 Marks Questions

Question 21.
Explain with the help of example(s) the difference between container and empty elements of HTML. (Delhi 2014)
Answer:
The differences between container and empty element are as follows:

Container ElementEmpty Element
This type of elements requires starting as well as matching closing tag.This type of elements require only starting tag.
These tags affect everything that comes between their starting and ending tag.Empty elements are just carried out their specific job.
E.g.,
<HTML>-------- </HTML>

<Body>——- </Body>

e.g. <HR>, <BR>

Question 22.
Give two attributes of table element of HTML. (All India 2014)
Answer:
Two attributes of table element are:

  • BORDER
  • BORDERCOLOR

Question 23.
Write two features of XML. (All India 2014C)
Answer:
Features of XML

  • XML is the text files which can be managed by any text editor.
  • XML is widely used as a format for document storage and processing, both online and offline.

Question 24.
Differentiate between the <TR> and <TD> tags of HTML with the help of an appropriate example. (Delhi 2013)
Answer:
The ” <TR>” tag is used to define a table row. A row is made up of either table headers or table cells. Table rows are not allowed to directly contain data. Instead, table rows act as a container for the cells “<TD>” or the headers “<TH >” which contain data that is displayed in the table.

Question 25.
Why does not cTABLE width=100%> use the full browser width? (HOTS)
Answer:
Graphical browsers leave a narrow margin between the edge of the display area and the content. Also, note that navigator always leaves room for a scrollbar on the right, but draws the scrollbar only when the document is long enough to require scrolling. If the document does not require scrolling, then this leaves a right ‘margin’ that cannot be removed.

We hope the Informatics Practices Class 12 Important Questions Chapter 9 HTML and XML help you. If you have any query regarding Informatics Practices Class 12 Important Questions Chapter 9 HTML and XML, drop a comment below and we will get back to you at the earliest.

The post Informatics Practices Class 12 Important Questions Chapter 9 HTML and XML appeared first on Learn CBSE.


Informatics Practices Class 12 Important Questions Chapter 12 Integrity Constraints and Tables

$
0
0

Informatics Practices Class 12 Important Questions Chapter 12 Integrity Constraints and Tables is part of Informatics Practices Class 12 Important Questions. Here we have given Informatics Practices Class 12 Important Questions Chapter 12 Integrity Constraints and Tables.

Informatics Practices Class 12 Important Questions Chapter 12 Integrity Constraints and Tables

1 Mark Questions

Question 1.
Write a SQL command to view the constraints to EMP table. (All India 2013)
Answer:
To Dispaly all the constraints in table ‘EMP’

SHOW TABLE EMP; 
or
SELECT * FROM 
INFORMATION_SCHEME.
TABLE_CONSTRAINTS 
WHERE TABLE_NAME = ‘EMP’;

Question 2.
Ms. Mirana wants to remove the entire content of a table “BACKUP” along with its structure to release the storage space. What MySQL statement should be used? (All India 2012)
Answer:
The command to delete the content of the BACKUP table along with its structure is as follows:

DROP TABLE BACKUP;

Question 3.
In an Item table columns include ItemCode, ItemName, Price and Qty. Which one of these columns should be set as primary key and why? (Delhi 2011C)
Answer:
The ItemCode field is most suitable for the primary key because ItemCode for every record will be different and no two records can have same ItemCode.

Question 4.
Sheela created a table in MySQL. Later on she found that she did not need a column “Fee”. Which command should she use to delete the column from the table? (Delhi 2011c)
Answer:
To delete column “Fee”, from a table, we have to use the following command:

ALTER TABLE table_name 
DROP COLUMN Fee;

Question 5.
Write a command to add a NOT NULL constraint on FEES column of a student table.
Answer:
To add a NOT NULL constraint on FEES column of a STUDENT Table.

ALTER TABLE STUDENT 
Modify FEES INTEGER NOT NULL;

2 Marks Questions

Question 6.
Distinguish between a primary key and a unique key in a table. (All India 2014C)
Answer:

  • Primary key can’t accept null values while unique key can accept only one null value,
  • A table can contain only one primary key but can have several unique keys.

Question 7.
Write MySQL command to create the table SHOP with given structure and constraint:
Table SHOP
Informatics Practices Class 12 Important Questions Chapter 12 Integrity Constraints and Tables 1
Answer:

CREATE TABLE SHOP
( Fno INT(10) PRIMARY KEY,
Fname VARCHAR!15),
Type CHAR(IO),
Stock INTO),
Price DECIMAL(8,2)
);

Question 8.
Write an SQL query to create the table SALESPERSON with the following structure: (All India 2014 C)
Table SALESPERSON
Informatics Practices Class 12 Important Questions Chapter 12 Integrity Constraints and Tables 2
Answer:

CREATE TABLE SALESPERSON
( SCODE DECIMALS) PRIMARY KEY, FIRSTNAME VARCHAROO) NOT NULL,
LASTNAME VARCHAROO) NOT NULL,
CITY VARCHAROO),
SALES DECIMAL(8)
);

Question 9.
In a database STUDENT, there is a Table RESULT with the following contents (All India 2013)
Table RESULT
Informatics Practices Class 12 Important Questions Chapter 12 Integrity Constraints and Tables 3
(i) Identify the attributes, which can be chosen as candidate keys in the table RESULT.
(ii) Write SQL Query to change the Marks of Mukta to 95 in the table RESULT. (All India 2013)
Answer:
(i) Regno and Admno
(ii)

UPDATE RESULT 
SET Marks = 95 
WHERE Name = ‘Mukta’;

Question 10.
Write SQL command to create the table VEHICLES with given constraint.
Table VEHICLES
Informatics Practices Class 12 Important Questions Chapter 12 Integrity Constraints and Tables 4
Answer:

CREATE TABLE VEHICLES (RegNo CHAR(10)
Primary Key, Regdate Date, Owner 
VARCHAR (30), Address VARCHAROO));

Question 11.
Write MySQL command to create the Table STOCK including its constraints.
Table STOCK
Informatics Practices Class 12 Important Questions Chapter 12 Integrity Constraints and Tables 5
Answer:
The SQL command to create a table as per given structure is as follows:

CREATE TABLE STOCK
(ID DECIMALS) PRIMARY KEY,
Name VARCHAROO),
Company VARCHAROO),
Price DECIMAL(8) NOT NULL);

Question 12.
Write MySQL command to create the Table PRODUCT including its constraints. (All India 2012)
Table PRODUCT
Informatics Practices Class 12 Important Questions Chapter 12 Integrity Constraints and Tables 6
Answer:
The SQL command to create a table as per given structure is as follows:

CREATE TABLE PRODUCT
(P ID DECIMAL(4) PRIMARY KEY,
P_Name VARCHAROO),
P_Company VARCHAROO),
Price DECIMALS) NOT NULL);

Question 13.
Mr. Sondhi created two tables with DEPTNO as primary key in Tableland foreign key in Table2. (Delhi 2012)
While inserting a row in Table2, Mr. Sondhi is not able to enter a value in the column DEPTNO. What could be possible reason for it? (HOTS; Delhi 2012)
Answer:
The possible reason for this situation is referential integrity constraint is imposed.

Question 14.
Mr. Sanghi created two tables with CITY as primary Key in Tableland foreign key in Table2. While inserting a row in Table2, Mr. Sanghi is not able to enter a value in the column CITY. What could be possible reason for it? (All India 2012)
Answer:
The possible reason for this situation is referential integrity constraint is imposed.

Question 15.
Write a SQL query to create the Table MOVIE with the following structure: (Delhi 2011C)
Table MOVIE
Informatics Practices Class 12 Important Questions Chapter 12 Integrity Constraints and Tables 7
Answer:
The SQL command to create a table as per given structure is as follows:

CREATE TABLE MOVIE
(Movie_Code VARCHAR(5) PRIMARY KEY, 
Name VARCHAROO),
Category VARCHAROO),
Date_Release DATE);

Question 16.
Write a MySQL command to create the Table BANK whose structure is given below: (All India 2011)
Table BANK
Informatics Practices Class 12 Important Questions Chapter 12 Integrity Constraints and Tables 8
Answer:
The SQL command to create a table as per given structure is as follows:

CREATE TABLE BANK
(Acct_Number INTEGER(4) PRIMARY KEY, 
Name VARCHAR(3),
BirthDate DATE,
Balance INTEGERS) 
NOT NULL);

Question 17.
Write a MySQL command to create the Table PAYMENT, where structure is given below: (HOTS; Delhi 2011)
Table PAYMENT
Informatics Practices Class 12 Important Questions Chapter 12 Integrity Constraints and Tables 9
Answer:
The SQL command to create a table as per given structure is as follows:

CREATE TABLE PAYMENT 
(Loan_Number INTEGERS) PRIMARY KEY, 
Payment_Number VARCHAR(3), 
Payment_Date DATE,
Payment_Amount INTEGER(8) NOT NULL);

Question 18.
Discuss the role of FOREIGN KEY constraints in MySQL table.
Answer:

  • It results into the rejection of insert or update, if a corresponding value does not currently exist in the primary table.
  • The foreign key column in the child table must reference a primary key or unique column in the parent table.
  • Both the related table’s column should have the same data type.

4 Marks Questions

Question 19.
Table PATIENT
Informatics Practices Class 12 Important Questions Chapter 12 Integrity Constraints and Tables 10
(i) Identify the primary key in the table given above.
(ii) Write MySQL query to add a column Department with data type Varchar and size 30 in the table PATIENT. (Delhi 2012)
Answer:
(i) A primary key can be P_No.
(ii) The command for the given problem will be as follows:

ALTER TABLE PATIENT 
ADD (Department VARCHAR(30));

Question 20.
Table CD DETAILS
Informatics Practices Class 12 Important Questions Chapter 12 Integrity Constraints and Tables 11
Table CDTYPES
Informatics Practices Class 12 Important Questions Chapter 12 Integrity Constraints and Tables 12
(i) Which column can be set as the primary key in the CD DETAILS table?
(ii) Which column in the CD DETAILS table is the foreign key?
(iii) How many rows and columns will be there in the cartesian product of the above two tables?
(iv) Write commands in SQL to display the CDJD, CD_Title and corresponding types for all the CDs.
(v) Write the output of the following: (HOTS; Delhi 2011C)

SELECT CD_Title, Duration, Type 
FROM CD DETAILS, CDTYPES
WHERE CD DETAILS.CD_CODE=CDTYPES.CD_C0DE AND Type -‘Spiritual’;

Answer:
(i) The column CD_JD can be set as a primary key.
(ii) The column CD_CODE can be set as foreign key.
(iii) There will be 5 columns and 16 rows in cartesian product of the given two tables.

(iv) SELECT CD_ID,CD_Tit1 e, Type
FROM CD DETAILS, CDTYPES 
WHERE CD DETAILS. CD_C0DE 
= CDTYPES. CD_C0DE;

(v) The output of the given command will be as follow.
Informatics Practices Class 12 Important Questions Chapter 12 Integrity Constraints and Tables 19

Question 21.
In a database school there are two tables EMPLOYEE and DEPT as shown as below:
Table EMPLOYEE
Informatics Practices Class 12 Important Questions Chapter 12 Integrity Constraints and Tables 13
Table DEPT
Informatics Practices Class 12 Important Questions Chapter 12 Integrity Constraints and Tables 14
Write MySQL queries for the following:
(i) Identify the foreign key in the table EMPLOYEE.
(ii) What output will you get when an equijoin query is executed to get the Name from EMPLOYEE table and corresponding DName from DEPT table? (HOTS; Delhi 2011)
Answer:
(i) The column Deptno can be the foreign key of the table EMPLOYEE.
(ii) The required command is as follows

SELECT E.Name, D.DName 
FROM EMPLOYEE E, DEPT D 
WHERE E.Deptno = D.Deptno:

and, the output of the above command will be:
Informatics Practices Class 12 Important Questions Chapter 12 Integrity Constraints and Tables 20

Question 22.
In a database there are two tables STUDENT and STREAM as below:
Table STUDENT
Informatics Practices Class 12 Important Questions Chapter 12 Integrity Constraints and Tables 15
Table STREAM
Informatics Practices Class 12 Important Questions Chapter 12 Integrity Constraints and Tables 16
(i) What is the cardinality and degree of both tables?
(ii) Among both the tables which table has the foreign key and write the foreign key name.
Answer:
(i) Cardinality refers to number of records or rows in a given table and degree refers to number of colums in a given table. The cardinality and degree of both of the tables are as follows:
Informatics Practices Class 12 Important Questions Chapter 12 Integrity Constraints and Tables 21
(ii) Table Student has the foreign key and Strld is the name of foreign key.

Question 23.
In a database, there are two tables CUSTOMER and BILL as shown below
Table CUSTOMER
Informatics Practices Class 12 Important Questions Chapter 12 Integrity Constraints and Tables 17
Table BILL
Informatics Practices Class 12 Important Questions Chapter 12 Integrity Constraints and Tables 18
(i) How many rows and how many columns will be there in the cartesian product of these two tables?
(ii) Which column in the Bill table is the foreign key? (HOTS)
Answer:
(i) There will be 15 rows and 6 columns in the Cartesian product of these two tables.
(ii) The column CustID will be the foreign key of the table Bill.

We hope the Informatics Practices Class 12 Important Questions Chapter 12 Integrity Constraints and Tables help you. If you have any query regarding Informatics Practices Class 12 Important Questions Chapter 12 Integrity Constraints and Tables, drop a comment below and we will get back to you at the earliest.

The post Informatics Practices Class 12 Important Questions Chapter 12 Integrity Constraints and Tables appeared first on Learn CBSE.

Informatics Practices Class 12 Important Questions Chapter 10 Fundamentals of Database

$
0
0

Informatics Practices Class 12 Important Questions Chapter 10 Fundamentals of Database is part of Informatics Practices Class 12 Important Questions. Here we have given Informatics Practices Class 12 Important Questions Chapter 10 Fundamentals of Database.

Informatics Practices Class 12 Important Questions Chapter 10 Fundamentals of Database

1 Mark Questions

Question 1.
Write two examples of DML commands to SQL. (All India 2014C)
Answer:
Two examples of DML commands are:
SELECT, INSERT

Question 2.
When using the LIKE clause, which wildcard symbol represents any sequence of none, one or more characters? (All India 2014c)
Answer:
The % wildcard symbol is used in LIKE clause to represent any sequence of none, one or more characters.

Question 3.
Write the UPDATE statement in MySQL to increase commission by 100.00 in the “Commission” column in the ‘EMP’ table. (All India 2014C)
Answer:
UPDATE Emp
SET Commission = Commission +100;

Question 4.
Rewrite the following SQL statement after correcting the error(s). Underline the corrections made. (All India 2014C)

INSERT IN STUDENT(RNO, MARKS) 
VALUEC5, 78.5);

Answer:

INSERT INTO STUDENT (RNO, MARKS) 
VALUES (5, 78.5);

Question 5.
What happens when auto-commit is set on? (Delhi 2014)
Answer:
When AUTOCOMMIT is set on then we do not need to start a transaction explicity using a BEGIN command but every statement is treated as an independent transaction and will COMMIT automatically immediate after its completion.

Question 6.
Table ‘CLUB’ has 4 rows and 3 columns. Table ‘MEMBER’ has 2 rows and 5 columns. What will be the cardinality of the Cartesian product of them? (Delhi 2014)
Answer:
The cardinality of the cartesian product of Table ‘CLUB’ and Table ‘MEMBER’ = 8.

Question 7.
Distinguish between ALTER TABLE and UPDATE commands of MySQL. (All India 2014)
Answer:
ALTER TABLE command is a DDL (Data Definition Language) statement which is used to modify the table structure. On the other hand UPDATE command is a DML (Data Manipulation Language) statement which is used to modify the data stored in a table.

Question 8.
Mention two categories in which MySQL commands are broadly classified. (All India 2014)
Answer:
Two categories of Mysql commands are:

  • DDL (Data Definition Language)
  • DML (Data Manipulation Language)

Question 9.
Give two characteristics of Primary Key. (All India 2014)
Answer:
Two characteristics of Primary Key are:

  • All the values in the Primary Key field are unique.
  • Does not allow NULL values.

Question 10.
Write two examples of DBMS software. (Delhi 2014)
Answer:
Two examples of DBMS Software are:

  • MySQL
  • Oracle

Question 11.
Write SQL command to create a SAVEPOINT called All (Delhi 2013)
Answer:

Create Table CLASS (Rollno INTEGER, Name VARCHAR(20));
INSERT INTO CLASS(10, ‘CS’);
SAVEPOINT Al;

Question 12.
Define a foreign key with reference to RDBMS. (Delhi 2013)
Answer:
Foreign Key It is primary key of another table. It’s used to join two tables. Name of the foreign key and the primary key may or may not be same but their data type has to be same.

Question 13.
Write the command to display the list of existing databases. (Delhi 2012)
Answer:
The command to display list of existing databases are as follows:

Show databases;

Question 14.
Mr. William wants to remove all the rows from INVENTORY table to release the storage space, but he does not want to remove the structure of the table. What MySQL statement should be used? (Delhi 2012)
Answer:
The command to delete all rows from the Inventory table without deleting the structure of the table will be as follows:

DELETE FROM INVENTORY;

Question 15.
Write MySQL command to open an existing database. (All India 2012)
Answer:
The command to open an existing database is as follows:

USE database_name;

Question 16.
Give one difference between COMMIT and ROLLBACK commands used in MySQL. (HOTS; Delhi 2012; All India 2012)
Answer:
The COMMIT command is used to save the changes made during the execution of a transaction permanentely on the disk. After executing the COMMIT command, we cannot undo or cancel the changes made thereupon. Whereas the ROLLBACK command is used to undo the changes made during the execution of a transaction.

Question 17.
Write MySQL command, which will be used to open an already existing database “LIBRARY”. (All India 2012, Delhi 2011)
Answer:
The SQL command to open an already existing database LIBRARY will be as follows:

USE LIBRARY;

Question 18.
Differentiate between alternate key and candidate key (All India2011)
Answer:
The attribute or a combination of attributes that have unique values for each record known as candidate key whereas a candidate key that is not the primary key is known as an alternate key.

Question 19.
In MySQL Reena and Zebi are getting the following output of SELECT statement on a table EMPLOYEE (HOTS; Delhi2011c)
Informatics Practices Class 12 Important Questions Chapter 10 Fundamentals of Database 1
Which keyword has Zebi used with a select statement to get the above output?
Answer:
Zebi has used DISTINCT clause with the SELECT command.

Question 20.
Write MySQL command, which will open an already existing database “CONTACTS (Delhi 2011c)
Answer:
The SQL command to open an already existing database CONTACTS will be as follows:

Use CONTACTS;

Question 21.
Write SQL command used to display the structure of a table. (Delhi 2011c)
Answer:
The command to display the structure of a table is as follows:

DESCRIBE table_name; 
or DESC table_name;

Question 22.
Mr. lames created a table CLIENT with 2 rows and 4 columns. He added 2 more rows to it and deleted one column. What is the Cardinality and Degree of the Table CLIENT?
Answer:
Cardinality = 4
Degree = 3
Cardinality are the number of rows and degree is number of the columns in a table.

2 Marks Questions

Question 23.
(i) If you have not executed the COMMIT command, executing which command will reverse all updates made during the current work session in MySQL?
(ii) What effect does SET AUTOCOMMIT have in transactions? (All India 2014C)
Answer:
(i) ROLLBACK command can only be used to undo transactions.
(ii) Autocommit simply means that each statement in its own transaction which commits immediately. When autocommit is set ON, the SET IMLICITTRANSACTION sets the connection to implicit transaction mode. When set OFF, it returns the connection to autocommit transaction mode.

Question 24.
A table FUN FOOD has 13 rows and 17 columns. What is the cardinality and degree of the table? (All India 2014)
Answer:
Cardinality of FUN FOOD = 13
Degree of FUN FOOD = 17

Question 25.
What happens when “ROLLBACK” command is issued in a transaction process? (All India 2014)
Answer:
When a ROLLBACK command is issued in a transaction process then all the progress made by a transaction process upto that point will be lost i.e. all the changes made by that transaction process are undone.

Question 26.
Gopi Krishna is using a table EMPLOYEE. It has the following columns:
Code, Name, Salary, Dept code He wants to display maximum salary Departmentwise.
He wrote the following command:

SELECT Dept code, Max(Salary)
FROM EMPLOYEE:

But he did not get desired result.
Rewrite the above query with necessary change to help him get the desired output. (Delhi 2014)
Answer:

SELECT Deptcode, Max(Salary)
FROM EMPLOYEE GROUP BY Deptcode;

Question 27.
What is the use of COMMIT statement in SQL? How is it different from ROLLBACK statement? (Delhi 2013C)
Answer:
The use of the COMMIT statement in MySQL is to end your current transaction and make all changes permanent performed in the transaction. ROLLBACK statement roll back the present transaction, which means canceling a transaction’s changes.

Question 28.
Name two categories into which SQL commands may be categorized. Also, give one example of SQL commands in each category. (Delhi 2012)
Answer:
The two categories of SQL commands are as follow:
(i) DDL DDL stands for Data Definition Language. The DDL commands are used to Create, Modify or Destroy the structure of the database objects,
E.g., CREATE TABLE, ALTER TABLE are of this category.

(ii) DML DML stands for Data Manipulation Language. The DML commands are used to insert, display, delete or change data in tables,
E.g.,
SELECT, INSERT, UPDATE, DELETE, etc., commands are of this category.

Question 29.
The Mname Column of a table Members is given below
Informatics Practices Class 12 Important Questions Chapter 10 Fundamentals of Database 2
Based on information, find the output of the following queries

(i) SELECT Mname FROM Members WHERE Mname ' “%\v"; 
(ii) SELECT Mname FROM Members WHERE Mname LIKE "%e%"; (Delhi 2011)

Answer:
The output of given commands will be as follows
(i) Hirav, Rajeev
(ii) Sheetal, Rajeev.

Question 30.
What is the purpose of ALTER TABLE command in MySQL? How it is different from UPDATE commands? (All India 2011)
Answer:
The ALTER TABLE command is used to change the structure of an existing table. It can be used to add a new column, to change the size or type of a column or to remove a column from a table. But update commands cannot effect the table structure.

Question 31.
The Doc_name column of a table HOSPITAL is given below (All India 2011)
Informatics Practices Class 12 Important Questions Chapter 10 Fundamentals of Database 3
Based on information, find the output of the following queries

(i) SELECT Doc_name FROM HOSPITAL WHERE Doc_name LIKE ‘%v’;.
(ii) SELECT Doc_name FROM HOSPITAL WHERE Doc_name LIKE

Answer:
The output of given commands will be as follows:
(i) Sanjeev
(ii) Deepak, Sanjeev.

Question 32.
A table “TRAINS” in a database has degree 3 and cardinality 8. What is the number of rows and columns in it? (Delhi 2011; All India 2011)
Answer:
There will be 8 rows and 3 columns.

Question 33.
Sarthak, a student of class XI created a table “CLASS”. Grade is one of the column of this table. To find the details of students whose Grades have not been entered, he wrote the following MySQL query, which did not give the desired result

SELECT * FROM CLASS 
WHERE GRADE = "NULL”

Help Sarthak to run the query by removing the errors from the query and write the correct query. (Delhi 2011; All India 2011)
Answer:
The correct query is

SELECT * FROM CLASS.
WHERE GRADE IS NULL;

Question 34.
Anurag, a student of class XI created a table “PLAYER SCORE”. Current score is one of the column of this table. To find the details of players whose current score is more than 100, he wrote the following MySQL query, which did not give the desired result

SELECT * FROM PLAYER_SCORE
WHERE Current_score>“100”;

Help Anurag to run the query by removing the errors from the query and write the correct query. ‘
Answer:
As score is a numeric data type, so double quotes are not allowed.

SELECT * FROM PLAYER_SC0RE 
WHERE Current_Score > 100;

Question 35.
Differentiate between COMMIT and SAVEPOINT.
Answer:

S.No.CommitSave Point
1.Ends the current transactionDefine the breakpoints for the transaction
2.No rollback after the commitPartial rollback is allowed up to the save point

Question 36.
Amit, a salesman in an Outlet, created a table TRANSACTIONS an Amount is one of the column of this Table. To find the details of customer whose transaction amount is more than 800, he wrote the following MySQL query, which did not give the desired result:

SELECT * FROM TRANSACTIONS 
WHERE Amount > “800”;

Help Amit to run the query by removing the errors from the query and write the correct query.
Answer:
Correct query is

SELECT * FROM TRANSACTIONS 
WHERE Amount > 800;

Question 37.
Anushka, a salesman in an Outlet, created a table, CUSTOMERS. PhoneNumber is one of the column of this table, which is character type. To find the details of customers whose PhoneNumber is 259624, she wrote the following MySQL query, which did not give the desired result:

SELECT * FROM CUSTOMERS 
WHERE PhoneNumber = 259624;

Help Anushka to run the query by removing the errors from the query and write the correct query.
Answer:
As PhoneNumber is character type so it must be enclosed in single quotes So, correct query is

SELECT * FROM CUSTOMERS 
WHERE PhoneNumber = ‘259624’;

Question 38.
Natasha, a salesgirl in an outlet, created table SUPPLIERS. PhoneNumber is one of the column of this table, which is numeric type. To find the details of customers whose number is 345941, she wrote the following MySQL query, which did not give the desired result:

SELECT * FROM SUPPLIERS 
WHERE PhoneNumber = “345941”;

Answer:
As PhoneNumber is numeric type so it should not be enclosed in double quotes. The correct query is

SELECT * FROM SUPPLIERS 
WHERE PhoneNumber = 345941;

Question 39.
Shammi, a student of class XII created a table FRIENDS. Pincode is one of the column of this table, which is character type. To find the details of friend whose pin code number is 262122, he wrote the following MySQL query, which did not give desired result:

SELECT * FROM FRIENDS 
WHERE PinCode = 262122;

Help Shammi to run the query by removing the errors from the query and write the correct query.
Answer:
The correct query is

SELECT * FROM FRIENDS 
WHERE PinCode = ‘262122’;

4 Marks Questions

Question 40.
In a database BANK, there are two tables with a sample data given below
TABLE EMPLOYEE
Informatics Practices Class 12 Important Questions Chapter 10 Fundamentals of Database 4
TABLE DEPARTMENT
Informatics Practices Class 12 Important Questions Chapter 10 Fundamentals of Database 5
Note:
– EName refers to Employee Name
– DName refers to Department Name
– Dept refers to Department Code
– HOD refers to Employee number (ENO) of the Head of the Department
Write SQL queries for the following:
(i) To display ENo, EName, Salary and corresponding DName of all the employees whose age is between 25 and 35 (both values inclusive).
(ii) To display DName and corresponding EName from the tables DEPARTMENT and EMPLOYEE, (Hint’ HOD of the DEPARTMENT table should be matched with ENo of the EMPLOYEE table for getting the desired result).
(iii) To display EName, Salary, Zone and Income Tax
(Note Income Tax to be calculated as 30% of salary) of all the employees with appropriate column headings. (HOTS; Delhi 2013)
Answer:

(i) SELECT e.ENo,e.EName,e.Salary,d.DName
FROM EMPLOYEE e, DEPARTMENT d 
WHERE e.Dept = d.Dept AND e.Age BETWEEN 25 AND 35;
(ii) SELECT e.EName,d.DName
FROM EMPLOYEE e, DEPARTMENT d 
WHERE e.ENO = d.HOD;
(iii) SELECT EName, Zone, Salary x 0.3 
“Income Tax” FROM EMPLOYEE;

Question 41.
TABLE ITEM
Informatics Practices Class 12 Important Questions Chapter 10 Fundamentals of Database 6
TABLE BRAND
Informatics Practices Class 12 Important Questions Chapter 10 Fundamentals of Database 7
Write MySQL queries for the following
(i) To display ltem_Code, ltem_Name and corresponding Brand_Name of those items, whose Price is between 20000 and 40000 (both values included).
(ii) To display ltem_Code, Price and Brand_Name of the item which has ltem_Name as “Computer”.
(iii) To increase the prices of all the items by 10%.
Answer:

(i) SELECT i. Item_Code,i. Item_Name,
b.Brand_Name FROM ITEM i, BRAND b 
WHERE i .Item_Code = b.Item_code AND 
i.Price BETWEEN 20000 AND 40000;
(ii) SELECT i.Item_Code, Price, 
b.Brand_Name
FROM ITEM i, BRAND b
WHERE i. Item_Code = b. Item_Code
AND i. Item_Name = ‘Computer’;
(iii) UPDATE ITEM
SET Price = Price + (Price*0.1);

Question 42.
TABLE ITEM
Informatics Practices Class 12 Important Questions Chapter 10 Fundamentals of Database 8
TABLE CUSTOMER
Informatics Practices Class 12 Important Questions Chapter 10 Fundamentals of Database 9
Write MySQL queries for the following:
(i) To display the details of Item, whose Price is in the range of 40 and 95 (both values included).
(ii) To display CustomerName, City from table CUSTOMER and ItemName and Price from table ITEM, with their corresponding matching ID.
(iii) To increase the prices of all the Items by 50%. (Delhi 2011)
Answer:

(i) SELECT * FROM ITEM
WHERE Price BETWEEN 40 AND 95;
(ii) SELECT CUSTOMER. CustomerName, 
CUSTOMER.City, ITEM.Item_Name,
ITEM.Price
FROM ITEM, CUSTOMER 
WHERE ITEM.ID = CUSTOMER.ID;
(iii) UPDATE ITEM SET Price = Price +
Price * 0.50;

Question 43.
Create table CUSTOMER as per following Table Instance Chart
Informatics Practices Class 12 Important Questions Chapter 10 Fundamentals of Database 10
Answer:
The SQL command to create a table as per given structure is as follows:

CREATE TABLE CUSTOMER
(Cust ID INTEGER,
Cust_Name VARCHAR(30),
Cust_Add VARCHAR(20),
Pincode INTEGER,
Cust_Phone VARCHARC10));

Question 44.
Create table STUDENT as per following Table Instance Chart
Informatics Practices Class 12 Important Questions Chapter 10 Fundamentals of Database 11
Answer:
The SQL command to create a table as per given structure is as follows:

CREATE TABLE STUDENT
(RolI_No INTEGER,
Name VARCHAR(30),
Address VARCHAR(20),
Pincode INTEGER,
Phone VARCHAR!10));

Question 45.
Write an SQL query to create a table STUDENT with the following structure
Informatics Practices Class 12 Important Questions Chapter 10 Fundamentals of Database 12
Answer:
The SQL command to create a table as per given structure is as follows:

CREATE TABLE STUDENT
(Roll_Number INTEGER,
Name VARCHAR(20),
Stream VARCHAR(IO),
Date_of_Admission Date);

Question 46.
Write an SQL query to create a table CUSTOMER with the following structure
Informatics Practices Class 12 Important Questions Chapter 10 Fundamentals of Database 13
Answer:
The SQL command to create a table as per given structure is as follows:

CREATE TABLE CUSTOMER
(Cust_ID INTEGER,
Cust_Name VARCHAR(20),
Address VARCHAR(20),
Balance DECIMAL);

Question 47.
Write an SQL query to create a table TEACHER with the following structure
Informatics Practices Class 12 Important Questions Chapter 10 Fundamentals of Database 14
Answer:
The SQL command to create a table as per given structure is as follows:

CREATE TABLE TEACHER
(Teacher_ID INTEGER,
Teacher_Name VARCHAR(20), 
Qualification VARCHAR(20), 
Date_of_Appointment DATE);

Question 48.
Write an SQL query to create a table ITEM with the following structure
Informatics Practices Class 12 Important Questions Chapter 10 Fundamentals of Database 15
Answer:
The SQL command to create a table as per given structure is as follows:

CREATE TABLE ITEM
(Item_Code INTEGER,
Item_Name VARCHAR(20),
Unit_Price DECIMAL,
Qty_in_Stock INTEGER);

Question 49.
Write an SQL query to create a table ACCOUNTS with the following structure
Informatics Practices Class 12 Important Questions Chapter 10 Fundamentals of Database 16
Answer:
The SQL command to create a table as per given structure is as follows:

CREATE TABLE ACCOUNTS
(Trans_Date DATE,
Particulars VARCHAR(20),
Debit DECIMAL,
Credit DECIMAL);

Question 50.
Write an SQL query to create a table LIBRARY with the following structure
Informatics Practices Class 12 Important Questions Chapter 10 Fundamentals of Database 17
Answer:
The SQL command to create a table as per given structure is as follows:

CREATE TABLE LIBRARY
(Book_No INTEGER,
Book_name VARCHAR!20),
Category VARCHAR(20),
Price DECIMAL,
Qty INTEGER);

Question 51.
Write an SQL query to create a table LAB with the following structure
Informatics Practices Class 12 Important Questions Chapter 10 Fundamentals of Database 18
Answer:
The SQL command to create a table as per given structure is as follows:

CREATE TABLE LAB
(App ID INTEGER,
App_name VARCHAR (20),
Description VARCHAR(20),
Price DECIMAL,
Qty INTEGER);

Question 52.
Write an SQL query to create a table SPORTS with the following structure
Informatics Practices Class 12 Important Questions Chapter 10 Fundamentals of Database 19
Answer:
The SQL command to create a table as per given structure is as follows:

CREATE TABLE SPORTS
(Item_ID INTEGER,
Item_name VARCHAR(20),
Description VARCHAR(20),
Price DECIMAL,
Qty INTEGER);

We hope the Informatics Practices Class 12 Important Questions Chapter 10 Fundamentals of Database help you. If you have any query regarding Informatics Practices Class 12 Important Questions Chapter 10 Fundamentals of Database, drop a comment below and we will get back to you at the earliest.

The post Informatics Practices Class 12 Important Questions Chapter 10 Fundamentals of Database appeared first on Learn CBSE.

Informatics Practices Class 12 Important Questions Chapter 13 Front-End Interface

$
0
0

Informatics Practices Class 12 Important Questions Chapter 13 Front-End Interface is part of Informatics Practices Class 12 Important Questions. Here we have given Informatics Practices Class 12 Important Questions Chapter 13 Front-End Interface.

Informatics Practices Class 12 Important Questions Chapter 13 Front-End Interface

1 Mark Questions

Question 1.
Define a user interface.
Answer:
A user interface is a collection of techniques, styles, mechanisms, etc., to establish interaction between user and computer.

Question 2.
Explain the importance of good Graphical User Interface (GUI). (HOTS)
Answer:
A good Graphical User Interface (GUI) is important for user acceptance and success of software. It must be easy to use, yet powerful and capable of performing all the required tasks. When the software and its interface is too complex, the user will not accept it.

Question 3.
What do you understand by a front-end?
Answer:
A front-end is the user interface that interacts with the user and collects information from the user. It provides the user screen for working with the software.

Question 4.
Write names of some basic controls.
Answer:
Some basic controls used in Java NetBeans are JButton, JCheckBox, JList, JRadioButton, etc.

Question 5.
Write the names of controls used in Java NetBeans environment for interactive displays.
Answer:
Some of controls used for interactive displays in Java NetBeans are JColorChooser, JTextPane, JTable, etc.

Question 6.
Write the names of some uneditable information displays.
Answer:
Some uneditable controls for information displays are JLabel, JProgressBar, JToolTip, etc.

Question 7.
Write names of some top-level containers.
Answer:
Some top-level containers used with Java NetBeans are JApplet, JDialog, JFrame, etc.

Question 8.
Write the names of some general purpose containers used in Java NetBeans.
Answer:
Some of the general purpose containers used with Java NetBeans are JPanel, JScrollPane, JSplitPane, etc.

Question 9.
Explain the use of JButton control.
Answer:
The JButton control is used to display a push button on the screen. When during the execution of the program, the user clicks on it, the related action or event starts.

2 Marks Questions

Question 10.
Steve Antony works for HM Academy. He wants to create controls on a form for the following operations. Choose appropriate controls from TextBox, Label, RadioButton, ListBox, ComboBox, CheckBox and
Answer:

S.No.OperationControl
1.Enter name of EmployeeJTextField
2.Select Department from a list of department namesJComboBox
3.Gender out of options M and FJRadioButton
4.Submit FormJButton

Question 11.
Shobit is creating a form for his company. Help her to choose most appropriate controls from ListBox, ComboBox, TextField, TextArea, RadioButton, CheckBox, Label and Command Button for the following entries: (Delhi 2014)
Answer:

  • The most appropriate control to select citizenship from a list of countries is JList.
  • To allow to input grade out of ‘A’ to ‘D’ the most appropriate control is JRadioButton.
  • The most appropriate control in selecting one or many food items is JCheckBox.
  • The most appropriate control to allow entering feedback in the form of a paragraph is JTextArea.

Question 12.
Mr. Anurag Das working as Manager in Vivian Enterprises wants to create a form in NetBeans to take various input from user. Choose appropriate controls from Label, TextBox, RadioButton, CheckBox, ListBox, ComboBox and Command Button. Write the most appropriate controls in the third column. (Delhi 2012; All India 2012)
Answer:

S.No.Control used toControl
1.Enter Name, Address and SalaryJTextField
2.Select Gender (M/F)JRadioButton
3.Select Department from Available ListJListBox
4.Choose Hobbies (Singing/Dancing/Painting/Sculpture)JCheckBox

Question 13.
Jaina is creating a form for the practical file. Help her to choose most appropriate controls from ListBox, ComboBox, TextField, TextArea, RadioButton, CheckBox, Label and Command Button for the following entries from the user:
(i) A message “Enter Name” in front of a text field.
(ii) An input to choose more than one subjects from a set of given choices.
(iii) An input for entering comments of user.
(iv) An input for accepting the residential area out of rural and urban as option. (Delhi 2011)
Answer:
(i) To display message “Enter Name” in front of a text field, the most appropriate control is JLabel.
(ii) To choose more than one subjects from a set of given choices, the most appropriate command is JList or JComboBox.
(iii) To input comment for the user, the most appropriate control is JTextArea.
(iv) To input the residential area out of rural and urban as option, the most appropriate control is JRadioButton.

Question 14.
Anuja is creating a form for practical file. Help her to choose most appropriate controls from ListBox, ComboBox, TextField, TextArea, RadioButton, CheckBox, Label and Command Button for the following entries from the user
(i) A message “Enter Marks” in front of a text field.
(ii) An input to choose more than one subjects from a set of a given choice.
(iii) An input for entering remarks.
(iv) An input for accepting gender. (All India 2011)
Answer:
(i) The most appropriate control for displaying message “Enter Marks” in front of a text field is JLabel.
(ii) The most appropriate control to choose more than one subjects from a set of given choices is JList or JComboBox.
(iii) The most appropriate control for entering remarks is JTextArea.
(iv) The most appropriate control to accept gender is JRadioButton.

Question 15.
Namita works for a store. She wishes to create controls on a form for the following functions. Which controls should she use? Choose appropriate controls from TextBox, Label, OptionButton, CheckBox, ListBox, ComboBox, CommandButton. (HOTS; Delhi 2011C)
Answer:

S.No.Control used toControl
1.Enter Customer CodeJTextField
2.Choose Product bought from a list of productJList
3.Enter Quantity boughtJTextField
4.Submit FormJButton

Question 16.
Suruchi works for a Shopping Mart. She wants to create controls on a form for the following operations: Choose most appropriate controls out of TextBox, Label, RadioButton, ListBox, ComboBox, CheckBox and CommandButton.
Answer:

S.No.OperationControl
1.Enter the Item CodeJTextField
2.Select Item Size (from a list of sizes)JComboBox
3.Enter QuantityJTextField
4.Submit the FormJButton

Question 17.
Define a front-end of an information system.
Answer:
This is the user interface that the user sees and which is responsible for interacting with the user. The front-end is responsible for receiving user’s queries, requests, etc., and passing it over the back-end. The front-end basically includes graphical user interfaces and the input forms, through which users interact with the system. The interface allows users to issue commands to the system and view the results and in case of the input forms, enter and modify data.

Question 18.
Rohini wants to create an interface for the following. Suggest her the most appropriate command out of TextField, RadioButton, CheckBox, ListBox, TextArea.
(i) To accept name from the user.
(ii) To select Gender (M/F) from the user.
(iii) To display a message “Enter Name” in front of a text field.
(iv) To submit the form.
Answer:
(i) The most appropriate control to accept name from the user is JTextField.
(ii) The most appropriate control to select gender is JRadioButton.
(iii) The most appropriate control to display a message “Enter Name” in front of a text field is J Label.
(iv) The most appropriate control to submit the form is JButton.

Question 19.
Vineet developing one application for Sales Department. He wants to create some controls on a form for the following functions. Choose appropriate controls from TextField, TextArea, Label, RadioButton, CheckBox, ListBox, ComboBox, Button, OptionPane, DialogBox, Menu items.
Answer:

S.No.Control used toControl
1.Select Dr/CrJRadioButton
2.Enter ParticularsJTextArea
3.Enter party or item nameJTextField
4.Clear all entriesJButton

Question 20.
Kritika wants to create an interface for the following. Suggest her the most appropriate command out of TextField, RadioButton, CheckBox, ListBox, TextArea.
(i) To accept Product Name from the user out of given list of options.
(ii) To select Gender (M/F) from the user.
(iii) To select more than one options for hobbies out of given options.
(iv) To clear the fields of the form.
Answer:
(i) The most appropriate control to accept the product name from the user out of a given list of options is JList or JComboBox.
(ii) The most appropriate control to select Gender(M/F) is JRadioButton.
(iii) The most appropriate control to select one or more options for hobbies is JCheckBox.
(iv) The most appropriate control to clear the form is JButton.

Question 21.
Manoj is developing one application for accounting purpose. He wants to create some controls on a form for the following functions. Choose appropriate controls from TextField, TextArea, Label, RadioButton, CheckBox, ListBox, ComboBox, Button, OptionPane, DialogBox, Menultem.
Answer:

S.No.Control used toControl
1.Select Customer name from listJComboBox
2.Select the type of sales(cash/credit)JRadioButton
3.Enter quantity and priceJTextField
4.Calculation of total amountJButton

Question 22.
Tanuja wants to create an interface for the following. Suggest her the most appropriate command out of TextField, RadioButton, CheckBox, ListBox, TextArea.
(i) To accept Name, Address, Phone Number from the user.
(ii) To select Gender (M/F) from the user.
(iii) To accept address from the user.
(iv) To clear the fields of the form.
Answer:
(i) The most appropriate control to accept Name, Address, Phone Number from the user is JTextField.
(ii) The most appropriate control to select Gender(M/F) is JRadioButton.
(iii) The most appropriate control to accept address from the user is JTextArea.
(iv) The most appropriate control to clear the form is JButton.

We hope the Informatics Practices Class 12 Important Questions Chapter 13 Front-End Interface help you. If you have any query regarding Informatics Practices Class 12 Important Questions Chapter 13 Front-End Interface, drop a comment below and we will get back to you at the earliest.

The post Informatics Practices Class 12 Important Questions Chapter 13 Front-End Interface appeared first on Learn CBSE.

Informatics Practices Class 12 Important Questions Chapter 14 Back-End Database

$
0
0

Informatics Practices Class 12 Important Questions Chapter 14 Back-End Database is part of Informatics Practices Class 12 Important Questions. Here we have given Informatics Practices Class 12 Important Questions Chapter 14 Back-End Database.

Informatics Practices Class 12 Important Questions Chapter 14 Back-End Database

1 Mark Questions

Question 1.
Write one point of difference between front-end and back-end with one example of each. (Delhi 2008)
Answer:
The front-end is an application, where user interacts directly with an application. The back-end provides an indirect support to the front-end, e.g. client/server.

Question 2.
What do you mean by a database system?
Answer:
A database management system consists of a collection of interrelated data and a collection of programs to access that data. The data describe one particular enterprise.

Question 3.
Explain the main purpose of database system.
Answer:
Database systems are designed to store large bodies of information. The management of data involves both the definition of structure for the storage of information and the provision of mechanism for the manipulation of information.

Question 4.
How does cost of system influence the selection of DBMS?
Answer:
The cost includes the purchase price, cost of operation, maintenance, site license, installation, data migration, data conversion.

Question 5.
Define a term storage manager.
Answer:
A storage manager is a program module that provides the interface between the low level data stored in the database and the application program and queries.

Question 6.
What is transaction manager?
Answer:
The transaction manager is responsible for ensuring that the database remains in a consistent state despite system failures. The transaction manager also ensures that concurrent transaction executions proceed without conflicting.

Question 7.
Give some examples of most commonly used database management systems.
Answer:
Most commonly used DBMSs include Oracle, IBM DB2, Microsoft SQL Server, Microsoft Access, PostgreSQL, MySQL and SQLite.

Question 8.
By whom the relational model was first time proposed?
Answer:
The relational model was first proposed in 1970 by Edgar F. Codd.

Question 9.
When does data loads into database in DDLC?
Answer:
After creation of the database, the data must be loaded into the database.

Question 10.
Name the first two phases of DDLC.
Answer:
The first two phases of DDLC:

  • Requirement Analysis
  • Conceptual Database Design

Question 11.
What is the last phase of DDLC?
Answer:
Maintenance

Question 12.
Why study of existing system is required in requirement analysis phase?
Answer:
Study of existing system is required because it is use to identify the data needs and requirements, the data volume, the performance requirements, the security issues, data access restriction, number and types of users, the growth rate of the database.

Question 13.
Which system is used to organise the database?
Answer:
DBMS is stands for Database Management System. It is used to organise the database. It is a collection of software for organising the information in a database.

2 Marks Questions

Question 14.
Describe the term back-end database.
Answer:
A back-end database is a database that is accessed by users indirectly through an external application rather than by application programming stored within the database itself or by low level manipulation of the data.

Question 15.
Write down the purpose of requirement analysis phase of database design?
Answer:
The requirement analysis is the first phase of Database Development Life Cycle (DDLC). At this stage, it is required to find out what is required? What kind of a database is needed for the organisation, what is the volume of the data that must be handled on a day-to-day basis (transaction data), how much data is to be stored in the master files and so on.

Question 16.
What do we do in the conceptual design stage?
Answer:
In the conceptual design stage, data modeling is used to create an abstract database structure that represents the real world scenario.

Question 17.
What is physical database design?
Answer:
In physical database design phase, we identify typical expected workloads that our database must support and further refinement of the database design so that it can meet the expected performance criteria.

Question 18.
Explain the significance of logical database design phase.
Answer:
In the logical design stage, the conceptual design is translated into internal model for the selected DBMS. This includes mapping all objects in the model to the specific constructs used by the selected database software.

Question 19.
What is the importance of schema refinement phase of DDLC?
Answer:
Schema refinement is important because in this phase we analyse the database design produced in logical design phase to identify the potential problems and refines it further.

Question 20.
Describe the Entity-Relationship model.
Answer:
In software engineering, an Entity-Relationship model (ER model for short) is an abstract way to describe a database. It usually starts with a relational database, which stores data in tables. Some of the data in these tables point to data in other tables.

Question 21.
Write some points about the relationship. Name different types of relationships of databases tables.
Answer:
Relationship states the way through which an entity is related with other entity.
There can be following types:

  • One-to-one relationship
  • One-to-many relationship
  • Many-to-many relationship

Question 22.
What do you understand by one-to-one relationship?
Answer:
When one entity is related with one entity through a common attribute then such relation is known as a one-to-one relationship.

Question 23.
Explain any one relationship.
Answer:
When one entity is related with more than one entities through a common attribute or one attribute of an entity is related with more than one attributes of another table then such relation is known as a one-to-many relationship.

Question 24.
What do you understand by many-to-many relationship?
Answer:
When more than one attributes of one entity are related with more than one attributes of another table then such relation is known as a many-to-many relationship.

We hope the Informatics Practices Class 12 Important Questions Chapter 14 Back-End Database help you. If you have any query regarding Informatics Practices Class 12 Important Questions Chapter 14 Back-End Database, drop a comment below and we will get back to you at the earliest.

The post Informatics Practices Class 12 Important Questions Chapter 14 Back-End Database appeared first on Learn CBSE.

Informatics Practices Class 12 Important Questions Chapter 15 E-Services and ICT

$
0
0

Informatics Practices Class 12 Important Questions Chapter 15 E-Services and ICT is part of Informatics Practices Class 12 Important Questions. Here we have given Informatics Practices Class 12 Important Questions Chapter 15 E-Services and ICT.

Informatics Practices Class 12 Important Questions Chapter 15 E-Services and ICT

1 Mark Questions

Question 1.
Define e-Learning. Give one popularly used website of e-Learning. (Delhi 2014)
Answer:
e-Learning refers to using electronic applications and processes to learn. e-Learning applications include web-based learning, computer-learning, virtual classrooms and digital collaboration. One popular website of e-Learning is w3schools.com.

Question 2.
Define e-Business. Name one popularly used e-Business website. (All India 2014)
Answer:
e-Business means conducting business on Internet. It includes not only sale and purchase of goods through Internet but also servicing customers and collaborating with business partners. One more popularly used e-Business website. Shopping.indiatimes.com

Question 3.
What social impact does e-Governance has on society? (Delhi 2012; All India 2012)
Answer:
Impact of e-Governance on society:

  • It improves the efficiency of administration and service delivery.
  • It reduced waiting time.

Question 4.
Write two important features of e-Business. Give two most commonly used e-Business Sites. (Delhi 2012)
Answer:
Features of e-Business:

  • It improves speed of response.
  • It reduces cost.

Two most commanly used e-Business sites:

  1. www.ebay.in
  2. www.dell.in

Question 5.
How is e-Commerce beneficial to businessmen? Write one point. (HOTS; Delhi 2011C)
Answer:
e-Commerce advantage is acquisition of new customers and increased sales.

Question 6.
What is impact of e-Learning sites on students process? (Delhi 2011)
Answer:
The impact of e-Learning sites on students process are:

  • Students get current updation on these sites, which is not possible through books.
  • Family interaction may increase.
  • e-Learning sites make students learning more fast with the help of diagram and example.
  • Students are more engaged and able to develop latest skills.

Question 7.
Use of e-Governance has its social and economic impacts. Justify. (Delhi 2014)
Answer:
Social impacts of e-Governance Many projects have been developed to enhance efficiency and effectiveness in terms of time frame. Due to those applications, processes have become automated and therefore require less time.

Economic impacts of e-Governance Cost reduction, budget savings, growth of tax revenues and improved customer service are some major economic impacts of e-Governance on the society.

Question 8.
How does e-Governance help in reducing corruption? Write two points. (All India 2014; Delhi 2012C, 2011C)
Answer:
e-Governance can help reducing corruption. Two points are as follows:

  1. By making some departments online like customs, income tax, sales tax and property tax, so that citizens and businesses can directly communicate with them, resulting in reduced corruption as these departments are perceived to be more corrupt.
  2. e-Governance can lead to centralise data, which can be used for improving audits and analysis.

Question 9.
Write three important features of e-Governance. Give URL of one of the commonly used e-Governance portals. (Delhi 2011; All India 2011)
Answer:
Three important features of e-Governance are as follows:

  • It has helped to reduce cost of services.
  • It ensures that information is easily available to all citizens.
  • It has reduced waiting time for any work to be done.

One of the commonly used e-Governance portal is http:Wlndianarmy.nic.in

2 Marks Questions

Question 10.
How is e-Business beneficial to shopkeepers? Write tWO points? (All India 2014C)
Answer:

  • It promote the shopkeeper’s product globally,
  • It allows 24 x 7 accesses to the shop’s products and services.

Question 11.
Write two advantages of e-Learning sites. (Delhi 2011; All India 2011)
Answer:
Two advantages of e-Learning sites are as follows:

  • It eliminates distance problems.
  • Opportunity to learn almost anytime.

Question 12.
What do you understand by e-Governance?
Answer:
e-Governance refers to electronic governance.
The word electronic in the term e-Governance implies technology driven governance. e-Governance is the application of Information and Communications Technology (ICT) for delivering government services, exchange of information communication transactions, integration of various stand-alone systems and services between Govemment-to-Citizens (G2C), Government-to-Business(G2B), Government-to-Govemment (G2G) as well as back office processes and interactions within the entire government framework.

Question 13.
What do you understand by electronic business?
Answer:
Electronic business, commonly referred to as ‘E-Business’ or ‘e-Business’, or an Internet business, may be defined as the application of Information and Communication Technologies (ICT) in support of all the activities of business.

Commerce constitutes the exchange of products and services between businesses, groups and individuals and can be seen as one of the essential activities of any business. Electronic commerce focuses on the use of ICT to enable the external activities and relationships of the business with individuals, groups and other businesses.

Question 14.
Define e-Learning.
Answer:
e-Learning is commonly referred to the intentional use of networked information and communications technology in teaching and learning. A number of other terms are also used to describe this mode of teaching and learning.

Question 15.
Differentiate between e-Governance and e-Government.
Answer:
The difference between e-Governance and e-Government can be described as Government’s foremost job is to focus society on achieving the public interest. Governance is a way of describing the links between government and its broader political, social and administrative environment.

4 Marks Questions

Question 16.
(i) How has popularity of e-Business benefited a common man? Write domain name of one popular e-Business site as an example.
(ii) Give domain names of two most commonly used e-Commerce site. (HOTS; Delhi 2013)
Answer:
(i) Benefits of e-Business:

  • The reductions in transaction and other costs.
  • Un-shorted supply chain.
  • Improved customer service.
  • Increased productivity/efficiency.
  • Access to international markets. E.g., one e-Business site is www.ebay.in.

(ii) Domain names of two most commonly used e-Commerce sites:

  • www.dell.in
  • www.shopping.indiatimes.com

Question 17.
Write the challenges of e-Governance with specific focus to India.
Answer:
Lack of Integrated Services Most of the e-Governance services being offered by state or central governments are not integrated. This can mainly be attributed to lack of communication between different departments. So the information that resides with one department has no or very little meaning to some other department of government.

Lack of Key Persons e-Governance projects lack key persons, not only from a technological aspect, but from other aspects as well. Population This is probably the biggest challenge. Apart from being an asset to the country it offers some unique issues.
Establishing Person Identities There is no unique identity of a person in India.

Apart from this, measuring the population, keeping the database of all Indian nationals (& keeping it updated) are some other related challenges. Different Languages A challenge due to the diversity of the country. It enforces need to do governance (up to certain level), in local languages. Ensuring e-Governance in local language is a big task to achieve.

Question 18.
What is the national e-Governance plan?
Answer:
The national e-Governance plan (2003-2007) of Indian government seeks to lay the foundation and provide the impetus for long-term growth of e-Governance within the country. The plan seeks to create the right governance and institutional mechanisms, set-up the core infrastructure and policies and implement a number of mission mode projects at the center, state and integrated service levels to create a citizen-centric and business-centric environment for governance.

In 2005, the World Bank signaled its willingness to increase funding further (if required) for a range of e-Governance initiatives in India as part of the first phase of the country’s National e-Governance Plan (NeGP).

Question 19.
What are the main focus point of National e-Governance plan?
Answer:
The main focus of National e-Governance Plan is on following points:

  • Adequate weightage must be given for quality and speed of implementation in procurement procedures for IT services.
  • Incorporation of a suitable system of incentivisation of states to encourage adoption.
  • The trend of delivery of services through common service centres should be encouraged and promoted.
  • Wherever possible, services should be outsourced.
  • The full potential for private sector investment should be exploited.
  • Connectivity should be extended up to block level through NICNET/SWANs.
  • NeGP also envisages significant investments in areas such as government process re-engineering, capacity building, training, assessment and awareness.

The plan is to be executed over a four-year period. An apex committee under the Cabin Secretary is already in place for providing the strategic direction and management oversight.

We hope the Informatics Practices Class 12 Important Questions Chapter 15 E-Services and ICT help you. If you have any query regarding Informatics Practices Class 12 Important Questions Chapter 15 E-Services and ICT, drop a comment below and we will get back to you at the earliest.

The post Informatics Practices Class 12 Important Questions Chapter 15 E-Services and ICT appeared first on Learn CBSE.

Important Questions for Class 12 History Chapter 1 Bricks, Beads and Bones (The Harappan Civilisation)

$
0
0

Important Questions for Class 12 History Chapter 1 Bricks, Beads and Bones (The Harappan Civilisation)

Important Questions for Class 12 History Chapter 1 – 2 Marks Questions

Question 1.
Who was John Marshall? How did he mark a change in the Indian archaeology? (Delhi 2016)
Answer:
John Marshall was the Director-General of the Archaeological Survey of India. His contribution in the Indian Archeology can be understood by the following points:

  • He announced the discovery of new civilization i.e. Indus valley civilization.
  • He helped in the preservation or conservation of Sanchi Stupa.

Question 2.
Who was R.E.M Wheeler? Mention any one of his contributions in the field of archaeology? (Delhi 2016)
Answer:
R.E.M Wheeler was the Director-General of tire Archaeological Survey of India.
He was the first person who recognized that it was necessary’ to follow the stratigraphy of the mound rather than dig mechanically along uniform horizontal line which rectified the previous problems faced by the archaeologists.

Question 3.
Who was Cunningham? Mention any one account used by him to locate the early settlements of Harappan’ civilisation. (Delhi 2013)
Answer:
Cunningham was the first Director
General of the Archaeological Survey of India who began archaeological excavation in the mid-nineteenth century.
Cunningham used the accounts left by Chinese Buddhist pilgrims who visited the subcontinent between the 4th and 7th century CE to locate early settlements.

Question 4.
How were Harappa seals and sealings used to facilitate long distance communication? What did the sealings convey? (HOTS; All India 2013)
Answer:
Harappa seals and sealings were used to facilitate long distance communication. The mouth of the bag of goods was tied up with rope and on the knot was affixed some wet clay on which one or more seals were pressed, leaving an impression.
This sealing conveyed that if the bag reached with its sealing intact, then it had not been tampered with and also it conveyed the true identity of the sender of the goods.

Question 5.
Mention the two sections of the Harappan settlements and give one main feature of each.
or
Give two features of the Harappan settlements? (Delhi 2011)
The Harappan settlements were divided into two sections, i.e. the Citadel and the Lower Town.
There features are:

  • The Citadel was smaller but higher than the Lower Town and was walled.
  • In the Lower Town, several buildings were built on platforms and all building activity within the city was restricted to a fixed area on the platforms.

Question 6.
Give any two features of Harappan writing. (Delhi 2008)
Answer:
Harappan seals usually have a line of writing, which remains undeciphered still today. Its features are:

  • It is not alphabetical and has too many signs, somewhere between 375 and 400.
  • The script is written from right to left.

Important Questions for Class 12 History Chapter 1 – 4 Marks Questions

Question 7.
Describe the distinctive features of domestic architecture of Mohenjodaro. (All India 2017)
Answer:
The most unique feature of the Harappan Civilisation was the development of urban centres. Mohenjodaro is the most well-known site of Harappan Civilisation. The settlement was divided into following sections:

Citadel It was smaller but higher. It was walled and was physically separated from the lower town. Here the buildings were constructed with mud, bricks platform. Here, we find some structures that were probably used for special public purposes.

The Lower Town The lower town was also walled. Several buildings were built on platforms, which served as foundations. All building activity within the city was restricted to a fixed area on the platforms.

Drainage System Mohenjodaro had carefully planned drainage system. The roads and the streets were laid out along an approximate ‘grid’ pattern, intersecting at right angles. It seems that streets with drains were laid out first and then houses built along them. Every house had its own bathroom paved with bricks, with drains connected through the walls, to the street drains.

Question 8.
Mention any two changes that were observed after 1900 BCE in Harappan Civilisation. What could have brought these changes? Explain. (Delhi 2016)
Answer:
After 1900 BCE, very’ few Harappan sites were continued and significant changes appeared in the civilisation. These were:

  • In this period, distinctive artefacts like weights, seals, special beads, writing, long-distance trade and craft specialisation disappeared.
  • (House construction technique deteriorated and large public structures were no longer produced. Late Harappan Civilisation indicates a rural way of life. Long distance trade also disappeared.
  • The reasons for these changes were:
    • These changes were probably the result of climate change, deforestation and excessive flood.
    • The shifting or drying up of rivers and overuse of the landscape might be the cause. There was also decline and abandonment of cities due to these reasons.

Question 9.
Why do archaeologists and historians find Harappan script enigmatic? Explain reasons. (HOTS; Delhi 2016)
Answer:
Archaeologists and historians found Harappan script enigmatic. The reasons behind it were:

  • Harappan seals usually had a line of writing, containing the name and title of the owner, sometimes the motif conveyed a meaning to those who could not read.
  • The script was non-alphabetical, it had many signs, somewhere between 375 and 400. It was written from right to left.
  • Most inscriptions were short, the longest contained about 26 signs, each sign stood for a vowel or consonant. Sometimes it contained wider space, sometimes shorter, had no consistency. Till today, the script remains undeciphered.

Question 10.
‘Early Harappan archaeologists thought that certain objects which seem unusual and unfamiliar may have had a religious significance’. Substantiate. (All India 2016)
or
Describe briefly how seals of Harappan period help in reconstructing their religious beliefs. (Delhi 2010)
Answer:
Giving archaeologic interpretation to reconstruct religious practices of Harappan civilisation was not easy.
The important facts to reconstruct the religious belief of the Harappan period are as follows:

1. Archaeologists thought that certain objects which seemed unusual or unfamiliar may have had a religious significance. These included terracotta figurines of women, heavily jewelled with elaborate head dresses. These were regarded as mother Goddesses.

2. Rare stone statuary of men seated with one hand on the knee was regarded as ‘priest king’. Other structures found in Harappan Civilisation, like the great bath and fire altars found at Kalibangan and Lothal also were taken as significant for ritual practices.

3. Attempts were made to reconstruct religious beliefs and practices by examining different seals.

4. Mythical creatures like unicorn, figure seated cross-legged in yogic posture, sometimes surrounded by animals, regarded as ‘proto-shiva’ were all examples of Hindu religion. Conical stone objects were classified as Tingas’.
Many reconstructions of Harappan religion are made on the assumption that later traditions provide similarity with earlier ones. It follows from the rule that archaeologists try to know the facts by following the process of ‘known to the unknown.’ Thus, reconstructing religious practices was not easy for the archaeologists.

Question 11.
‘One of the most distinctive features of the Harappan cities was the carefully planned drainage system.’ Elaborate. (All India 2016)
Answer:
One of the most distinctive features of Harappan Civilisation was its carefully planned drainage system. If we look at the plan of the Lower Town, we can find that roads and streets were laid out along an approximate ‘grid’ pattern, intersecting at right angles. Every house had one wall alongside the street having drain connected to the street drain to flow out domestic waste water. It seems that streets with drains were laid out first and then houses built along them.

Mackay said about the drains, “It is certainly the most complete ancient system as yet discovered”. According to him, every house was connected to the street drains. The main channels were made of bricks set in Mortar and were covered with loose bricks that could be removed for cleaning. Sometimes limestone was used for the covers.
In Harappa, house drains first emptied into a sump or cesspit into which solid matter settled while waste water flowed out into the street drains. Very long drainage channels . were provided at intervals with sumps for cleaning.
Little heaps of material mostly sand were found lying alongside drainage channels, it meant that the debris was not always carted away when the drain was cleared.

Drainage systems were mostly found in smaller settlement, but were not unique to the larger cities. For example, at Lothal while houses were built of mud bricks, drains were made of burnt bricks. Therefore, we can say that Harappan cities have carefully planned drainage system.

Question 12.
How have historians provided new insight into the subsistence strategies of the Harappan culture? (Delhi 2015)
Answer:
According to historians mature Harappan culture developed in some of the areas occupied by the Early Harappan cultures. These cultures also shared certain common elements including subsistence strategies.
For example:

  • The Harappans ate a wide range of plant and animal products, including fish and meat, wheat, maize, millets, pulses, rice and another eatables.
  • Cattle, sheep, goat, buffalo and pig were domesticated by the Harappans for their sustenance.
  • The evidence of wild species like boar, deer and gharial have also been traced from the remains of bones, but it is not sure whether the Harappans hunted these animals themselves or obtained meat from other hunting community.
  • Archaeological evidences suggested that oxen were used for ploughing and two different crops were grown together. As most of the sites are located in semi-arid lands, it is evident that water from canals and wells was used for irrigation.

Question 13.
Explain the distinctive features of the residential buildings of Mohenjodaro. (Delhi 2015)
Answer:

The most unique feature of the Harappan Civilisation was the development of urban centres. Mohenjodaro is the most well-known site of Harappan Civilisation.

The following are the most unique architectural feature of Mohenjodaro: Citadel It was smaller but higher. It was walled and was physically separated from the lower town. Here the buildings w’ere constructed with mud, bricks platform. Here, we find some structures that were probably used for special public purposes.
These include the warehouse, a massive structure and the ‘Great Bath’. The uniqueness of the structure of ‘Great Bath’ suggested that it was meant for some kind of special ritual bath.

The Lower Town The lower town was also walled. Several buildings were built on platforms, which served as foundations. All building activity within the city was restricted to a fixed area on the platforms. Sun-dried or baked bricks were used at all Harappan settlements.

The courtyard of the houses was the centre of activities like cooking and weaving, particularly during hot and dry weather. There were no windows in the walls along the ground level. Besides, the main. entrance did not give a direct view of the interior or the courtyard.

Drainage System Mohenjodaro had carefully planned drainage system. The roads and the streets were laid out along an approximate ‘grid’ pattern, intersecting at right angles. It seems that streets with drains were laid out first and then houses built along them.

Every house had its own bathroom paved with bricks, with drains connected through the walls, to the street drains. Drainage systems were not only unique to the larger cities, but were found in smaller settlements also. All these features indicated that Mohenjodaro had a well planned architectural system.

Question 14.
Explain the strategies used by the archaeologists to understand socio-economic differences among the Harappans. (Delhi 2015)
Answer:
The archaeologists have tried to find out socio-economic differences among the Harappans through two types of evidences.

These were: Burials Burials have been significant evidence to establish social differences within the Harappan society’.
The dead were generally laid in pits. There were differences in the way the burial pit was made. In some cases, the hallowed out spaces were lined with bricks.

However, whether these variations were an indication of social differences or not, it is not yet established. Pottery ornaments, jewellery of both men and women have been found in some burials. But the Harappans did not believe in burying precious things with the dead.

Artefacts Two types of artefacts have been found, i.e. luxuries’ and ‘utilitarian’. Luxuries artefacts were made from costly and rare, non-local material with complicated technology e.g. little faience pots. Utilitarian objects included objects of daily use made of stone clay, e.g. querns, pottery, needles, flesh-rubbers (body scrubbers), etc. As far as distribution of such artefacts is concerned, we find that rare objects made of valuable materials were generally concentrated in large settlements like Mohenjodaro and Harappa and are rarely found in smaller settlements.
Thus, the findings of the above artefacts prove that there were social and economic differences in Harappan culture.

Question 15.
Explain the strategies for procuring materials by the Harappans for the craft production. (All India 2013)
Answer:
In Harappan Civilisation, a variety of materials was used for craft production. These were:

  • Clay was locally available, but stone, timber and metal had to be procured from outside.
  • They established settlements, such as Nageshwar and Balakot in areas where shell was available. Other such sites were Shortughai, the best source of lapis lazuli, a blue stone found here; from Lothal Carnelian, steatite were found.
  • Raw materials were also collected from Khetri region of Rajasthan (for copper)
    and South India (for gold). Recent archaeological finds suggest that copper was probably brought from Oman. The fact was also supported by Mesopotamian texts. Probably Harappan Civilisation was connected with Oman, Bahrain or Mesopotamia by sea.

Question 16.
Describe the opinions of the archaeologists over the central authority of the Harappan Civilisation. (All India 2015)
or
“The archaeological records provide no immediate answer to the Harappa central authority’. Analyse different views given on the same.
Answer:
Opinion of some of the archaeologists about the Harappan society are as follows:

  • Some archaeologists opine that Harappan society had no rulers and that everybody enjoyed equal status.
  • Other scholars have the opinion that there was no single ruler but several. Mohenjodaro had a separate ruler, Harappans had another. In the same way, other regions had different rulers.
  • Some scholars also argued that there was a single state given the similarity in artefacts, the evidence for planned settlements, the standardised ratio of brick size and the establishments near source of raw material.
  • Of all, the last theory seems to be the most plausible as it is unlikely that entire communities could have collectively made and implemented such complex decisions.

Question 17.
Explain the exclusive features of the craft production in Chanhudaro. (All India 2015)
Answer:
Chanhudaro was a tiny settlement as compared to Mohenjodaro. This area was exclusively devoted to craft production. Its features are:
1. The main craft productions included bead-making, shell-cutting, metal-working, seal-making and weight-making.

2. Here variety of materials were used to make beads. Stones like carnelian jasper, crystal, quartz, steatite; metals like copper, bronze and gold, moreover shell, faience and terracotta or burnt clay were used.

3. Some beads were made of two or more stones, these were cemented together and some were made of stones with beautiful gold caps. The shapes were of different types, e.g. dice cylindrical, spherical, barrel- shaped, etc. Some beads were decorated by incising or painting and some had designs etched (engraved) on to them.

4. Different techniques were applied in making beads. Steatite was a very soft stone and could be easily moulded. But how the steatite micro bead was made remains a surprise for the archaeologists. The red colour of carnelian
was obtained by firing the raw material. Grinding, polishing and drilling completed the full process. Specialised drills have been found at Chanhudaro, Lothal and Dholavira.

Question 18.
Mention any three features of Harappan cities. (All India 2011)
Answer:
Historians suggest that the most unique feature of the Harappan Civilisation was the development of urban centres, i.e., cities. The main features of Harappan cities were:

  • The Harappan cities were well planned. The cities were divided into two sections which are one smaller and higher, i.e. the Citadel and other much larger but lower, i.e. the Lower Town. Both these sections were walled and physically separated from each other.
  • One of the most distinctive features of Harappan cities was the carefully planned drainage system. If we look at the plan of the Lower Town, the roads and streets were laid out along an approximate ‘grid’
    ‘ pattern, intersecting at right angles.
  • At burials in Harappan areas, the dead were generally laid in pits. Some graves contained pottery and ornament, which indicated the belief that these materials could be used in the afterlife. But the Harappan did not believe in burying precious things with the dead.

Question 19.
Describe briefly how the centres of craft production are identified. (Delhi 2009)
Answer:
In order to identify centres of craft production, archaeologists usually look for the raw materials, like stone modules, whole shells, copper ore, unfinished objects, rejected and waste materials. Actually waste products indicate craft work. For example, if shell or stone is used to make any object, then pieces of shell or stone will be discarded as waste at the place of production.
These can be understood through following points:

  • Both Nageshwar and Balakot are near coast and shell objects are found here. These areas were specialised centre for making shell objects, including bangles, ladles and inlay, which were taken to other settlement.
  • Similarly, some finished products like different pots and beads are found in Lothal and Chanhudaro, which were taken to the large urban centres such as Mohenjodaro and Harappa.
  • For making beads, stones like carnelian, jasper, crystal, quartz, steatite and metals like copper, bronze, gold, and other materials like shell, faience, terracotta were used. For making beads, grinding, polishing and drilling were dome. Specialised drills have found at Chanhudaro, Lothal and Dholavira.
  • In order to identify the craft production centre, archaeologists look for raw materials and tools. Large- waste pieces of raw materials indicated the specialised craft production centres. But sometimes minuscule bits suggest that craft production was also undertaken in large cities like Harappa and Mohenjodaro.

Important Questions for Class 12 History Chapter 1 – 8 Marks Questions

Question 20.
How did architectural features of Mohenjodaro indicate planning? Support the statement with examples. Delhi 2014
Answer:
The most unique feature of the Harappan Civilisation was the development of urban centres. Mohenjodaro is the most well-known site of Harappan Civilisation.

The following are the most unique architectural feature of Mohenjodaro: Citadel It was smaller but higher. It was walled and was physically separated from the lower town. Here the buildings w’ere constructed with mud, bricks platform. Here, we find some structures that were probably used for special public purposes.
These include the warehouse, a massive structure and the ‘Great Bath’. The uniqueness of the structure of ‘Great Bath’ suggested that it was meant for some kind of special ritual bath.

The Lower Town The lower town was also w’alled. Several buildings were built on platforms, which served as foundations. All building activity within the city was restricted to a fixed area on the platforms. Sun-dried or baked bricks were used at all Harappan settlements.

The courtyard of the houses was the centre of activities like cooking and weaving, particularly during hot and dry weather. There were no windows in the walls along the ground level. Besides, the main . entrance did not give a direct view of the interior or the courtyard.

Drainage System Mohenjodaro had carefully planned drainage system. The roads and the streets were laid out along an approximate ‘grid’ pattern, intersecting at right angles. It seems that streets with drains were laid out first and then houses built along them.

Every house had its own bathroom paved with bricks, with drains connected through the walls, to the street drains. Drainage systems were not only unique to the larger cities, but were found in smaller settlements also. All these features indicated that Mohenjodaro had a well planned architectural system.

Question 21.
“The archaeological records provide no immediate answer to the Harappa’s central authority”. Analyse different views given in the same. (HOTS; Delhi 2013)
Answer:
If we want to analyse the concept of central authority of Harappan civilisation, the archaeological findings provide no immediate answer.
In support of these, some reasons have given by some archaeologists:

  • At the site of Mohenjodaro, a large building was found, but there were no such specific evidences which could have any association with it.
  • A stone statue was found at the site of Mohenjodaro labelled as the ‘priest king’. It was so because archaeologists had prior information of such statue found at the site of Sind and which was labelled as the priest king. But till date, the ritual practices of Harappans have not been understood. So, there are no reasons of knowing whether those who performed ritual practices also held some political power.
  • On the other hand, some archaeologists have also the view that there were no rulers in the Harappan society. According to them, all enjoyed equal status.
  • Other archaeologists feel that there was no single ruler, but there were several rulers.
  • Even some scholars argued that there was a single state which is evident from the similar artefacts, the planned settlements, the standardised bricks.

Question 22.
What are the aspects of Harappan economy that have been reconstructed from archaeological evidence? (All India 2013)
Answer:
The aspects of Harappan economy that have been reconstructed from the archaeological evidences are:
Agriculture From the evidences, it has been found that the agriculture was one of the most important source of food.

Evidences such as charred grains have been found in the Harappan Civilisation. The seeds like wheat, barley, lentil, chickpea and sesame were cultivated in the Harappa whereas millets were found in Gujarat. The evidence of rice cultivation was not there. Evidence of agriculture was easy to find out, but there is difficulty to find out agricultural practices. From the finds of terracotta sculpture, it has been assumed . that the oxen were used for ploughing the land. Moreover, terracotta models of plough also have been found at the sites in Ebolistan (Thar desert), Pakistan.

The field had two sets of furrows at right angles to each other. The irrigation was also known to the Harappans. Traces of canals, well also have been found at the Harappan site of Shortughai in Afghanistan. Besides these finds, several water reservoirs also have been traced which may have been used for the irrigation of agriculture.
Animal Domestication From the finds of bones of animals such as sheep, goat, cow, oxen, buffalo, etc, it has been assumed that the domestication of animals was also there.

Procurement of Crafts Prevalence of artefacts such as pottery sculptures, bead making, seal and sealings were also there. Besides these, weaving, building construction, jewellery-making were there. Trade The Harappans had long distance communication, it is evident from the finds of seals and sealings of Harappans in the distant sites of Mesopotamia.

From the finds of certain metals such as bronze, copper and gold in Harappa which was procured in different sites, these metals were traded with the other distant civilisations developed in Oman. Archaeologists think that there were communication between Oman, Bahrain or Mesopotamia with the Harappan Civilisation.

Question 23.
What are the evidences found by the archaeologists which show that the Harappans had contacts with distant lands? Does it show that the contact proved to have good trade relations with each other. (All India 2011)
or
To what extent had the Harappans established trade relations with the world? (Delhi 2013)
Answer:
The archaeologists found many evidences which show that the Harappans had contacts with distant lands. The important evidences are

1. Recent archaeological finds suggest that copper was probably brought from Oman, on the South-Eastern tip of the Arabian found Peninsula. Moreover chemical analysis proved traces of nickel both in Omani copper and Harappan artefacts. This suggests a common origin of both.

2. A large Harappan jar coated with a thick layer of black clay was found at Omani sites. It is possible that the Harappans exchanged the contents of these vessels for Omani copper.

3. Mesopotamian texts of third millennium BCE referred that copper came from a region called Magan. Historians thought that probably it was another name of Oman. Mesopotamian texts also mentioned contact with regions named Dilmun (probably the Island of Bahrain), Magan and Meluhha, possibly the Harappan region. Meluhha was a land of seafarers. Many products of Meluhha were mentioned. These were carnelian, lapis lazuli, copper, gold and varieties of wood.

4. Other archaeological finds suggest of long distance contacts which include Harappan seals, weights, dice and beads. All these evidences suggest that Harappan Civilisation was connected with Oman, Bahrain or Mesopotamia by sea.

5. Depictions of ships and boats on seals indicate the trade relations between different countries.

6.Cylinder seal found in Mesopotamia has humped bull motif which can be derived from the Indus region. The round ‘Persian Gulf seal found in Bahrain sometimes carries Harappan motifs. Local ‘Dilmun’ weights followed the Harappan standard.

All these evidences show that Harappan civilisation had good trade relations with other regions.

Question 24.
What factors in your opinion are responsible for the collapse of a mature Harapp’an Civilisation by 1800 BCE? (HOTS; All India 2009)
Answer:
There is strong evidence1 that by 1800 BCE, most of the mature Harappan sites in regions like Cholistan had been . abandoned. Simultaneously, there was a growth of settlements in Gujarat, Haryana and Western Uttar Pradesh. At that time, distinctive artefacts of civilisation like weights, seals, special beads, writing, long-distance trade and craft specialisation disappeared. House construction technique deteriorated and large public structures were not produced.
A variety of explanations were given by scholars to explain the decline of mature Harappan Civilisation.
These reasons are:

  • Climatic change
  • Deforestation
  • Excessive floods
  • Shifting and drying up of rivers
  • Overuse of the landscape

Some of these reasons may be holding true for certain settlements, but they do not account for the collapse of the entire civilisation.
No single reason was responsible for the decline of this civilisation. The civilisation might be destroyed by invaders which was proved by the bulk of bones found. It indicated a slaughter.
But the skeletons found did not belong to the same period according to George Dales. Thus, it was not concluded in favour of a dramatic collapse, rather it was believed that the end of Harappan culture was a gradual process.

Question 25.
Describe the contribution of John Marshall, Director General of the ASI to Indian archaeology, (All India 2009)
Answer:
The two discoveries in seals in Harappa and Mohenjodaro by Daya Ram Sahni and Rakhal Das Banerji led to the conjecture that these two sites were part of a single archaeological culture. Based on these finds, in 1924, John Marshall, Director General of the ASI announced the discovery’ of a-new civilisation in the Indus valley to the world. Similar seals were also found in the excavation of archaeological sites of Mesopotamia. In this way, not only new civilisation came to limelight but we also came to know that this civilisation was contemporary to Mesopotamia.
Sir John Marshall’s term as the Director General of ASI was actually a term of major change in Indian archaeology. He was the first professional archaeologist who worked in India.

He brought with himself his experience of Greece and Crete. Like Cunningham, he was also interested in spectacular findings. But he was equally interested in looking for patterns of daily life. John Marshall tended to excavate along regular horizontal units, measured unit formly throughout the mound, ignoring the stratigraphy of the site and this was the biggest drawback in his excavation process. It means all the artefacts, found from the same unit, were grouped together, even if they were found at different stratigraphic layers. As a result, valuable information found about the civilisation was lost forever.

Question 26.
Explain briefly the distinctive features of Harappan drainage system. (Delhi 2008)
or
Describe briefly the drainage system of Harappan cities. (Delhi 2012)
or
Mention two features of drainage system of the Harappan cities. (All India 2015)
or
“The drainage system in Harappan Civilisation indicates town planning”. Support the statement with suitable examples.
Answer:
One of the most distinctive features of Harappan Civilisation was its carefully planned drainage system. If we look at the plan of the Lower Town, we can find that roads and streets were laid out along an approximate ‘grid’ pattern, intersecting at right angles. Every house had one wall alongside the street having drain connected to the street drain to flow out domestic waste water. It seems that streets with drains were laid out first and then houses built along them.

Mackay said about the drains, “It is certainly the most complete ancient system as yet discovered”. According to him, every house was connected to the street drains. The main channels were made of bricks set in Mortar and were covered with loose bricks that could be removed for cleaning. Sometimes limestone was used for the covers.
In Harappa, house drains first emptied into a sump or cesspit into which solid matter settled while waste water flowed out into the street drains. Very long drainage channels . were provided at intervals with sumps for cleaning.
Little heaps of material mostly sand were found lying alongside drainage channels, it meant that the debris was not always carted away when the drain was cleared.

Drainage systems were mostly found in smaller settlement, but were not unique to the larger cities. For example, at Lothal while houses were built of mud bricks, drains were made of burnt bricks. Therefore, we can say that Harappan cities have carefully planned drainage system.

Important Questions for Class 12 History Chapter 1 Map Based Question

Question 27.
On the given political outline map of India, locate and label the followings with appropriate symbols.

  • Rakhigarhi. (Delhi 2016)
  • Name of three mature Harappan sites. (All India 2016, Delhi 2015)
    or
    Five Harappan sites. Delhi 2008
  • Dholavira. (All India 2015), (Delhi 2014, 2008)
  • Lothal. (All India 2014, 2010), (Delhi 2012, 2008)
  • Kalibangan, Nageshwar.
    (All India 2013, 2012, Delhi 2012)
  • (a) Dholavira
    (b) Lumbini. (Delhi 2014)

Answer:
Important Questions for Class 12 History Chapter 1 Bricks, Beads and Bones (The Harappan Civilisation) Map 1

Important Questions for Class 12 History Chapter 1 Value Based Questions

Question 28.
Read the following passage and answer the question that follows.
In the few Harappan sites that continued to be occupied after 1900 BCE, there appears to have been a transformation of material culture, marked by the disappearance of the distinctive artefacts of the civilisation weights, seals, special beads. Writing, long distance trade, and craft specialisation also disappear. In general, far fewer materials were used to make far fewer things. House construction techniques were no longer produced. Overall, artefacts and settlements indicate a rural way of life in what are called “Late Harappan” or “Successor Cultures”.

How can we say that, transformation of material culture had been taking place in . few Harappan sites of this civilisation?
Answer:
There are various evidences available which prove that transformation of material culture had been taking place in few sites of Harappan Civilisation.
These evidences are:

  • This transformation of material culture, marked by the disappearance of the distractive artefacts of the civilisation such as weights, seals, special beads, etc.
  • Writing, long distance trade and craft specialisation also disappeared.
  • In general, far fewer materials were used to make far fewer things.
  • House construction techniques deteriorated and large public structures were no longer produced.
  • There was a shift from a standardised weight system to the use of local weights.
  • Overall, artefacts and settlements indicate a rural way of life in what are called “Late Harappan” or “Successor Cultures”.

Question 29.
Read the following passage and answer the questions that follow.
The frontiers of the Harappan Civilisation have little or no connection with present-day national boundaries.
However, with the partition of the sub-continent and the creation of Pakistan, the major sites are now in Pakistan territory. This has spurred Indian archaeologists to try and locate sites in India. An extensive survey in Kutch has revealed a number of Harappan settlements and explorations in Punjab and Harappan settlements have added to the list of Harappan sites. While Kalibangan, Lothal, Rakhi Garhi and most recently Dholavira have been discovered, explored and excavated as part of these efforts, fresh explorations continue.

  1. What problem has occurred in the frontiers of the Harappan Civilisation?
  2. What has spurred Indian archaeologists to do? Which settements have been found recently?

Answer:
1.  The problem which has occurred in the Harappan Civilisation is that the frontiers of this civilisation have little or no connection with present day national boundaries due to partition of Indian sub-continent and Pakistan. However, with the partition of the sub-continent and the creation of Pakistan, the major sites of Harappan Civilisation are now in Pakistan territory.

2. The partition between the two nations i.e. India and Pakistan, created a problem of demarcation of Harappan sites. This has spurred Indian archaeologists to try and locate these sites in India.
After extensive survey of Kutch, Punjab and Haryana, a number of new sites have been discovered, e.g. Kalibangan, Lothal, Rakhi Garhi and most recently Dholavira

Important Questions for Class 12 History

The post Important Questions for Class 12 History Chapter 1 Bricks, Beads and Bones (The Harappan Civilisation) appeared first on Learn CBSE.

Important Questions for Class 12 History Chapter 2 Kings, Farmers and Towns (Early States and Economies)

$
0
0

Important Questions for Class 12 History Chapter 2 Kings, Farmers and Towns (Early States and Economies)

Important Questions for Class 12 History Chapter 2 – 2 Marks Questions

Question 1.
Why was Mauryan empire regarded as a major landmark in the early Indian history? (Delhi 2015)
Answer:
The Mauryan empire was regarded as a major landmark in the early Indian history because for the first time Chandragupta Maurya founded a vast empire which extended to far North West to Afghanistan and Baluchistan. Moreover, historians think that the messages on Asoka inscription were very different from the other contemporary rulers.

Question 2.
Why is the 6th century BCE often regarded as a major turning point in the early Indian history. (Delhi 2015)
Answer:
The 6th century BCE is regarded as a major turning point in early Indian history for the following reasons:

  • It is an era associated with early states, cities, the growing use of iron, the development of coinage, etc.
  • This era witnessed the growth of diverse system of thoughts like Buddhism and Jainism.

Question 3.
Why is James Prinsep’s contribution considered as the historic development in the Indian epigraphy? (HOTS; Delhi 2015)
Answer:
James Prinsep was an officer in the mint of the East India Company. He contributed a lot in the Indian epigraphy by deciphering two scripts, viz, Brahmi and Kharosthi in the earliest inscriptions and coins.

Question 4.
How were the coins used in the 1st century CE? Give two examples. (All India 2015)
Answer:
The Kushana rulers issued the first gold coins in the 1st century. For example:

  • The wide spread use of gold coins indicates that the enormous value of the transactions was taking place.
  • Hoards of Roman coins were found in South India which indicates that trade was extended beyond political boundaries.

Question 5.
How did Kushana rulers exemplify themselves with the high status? (All India 2015)
Answer:
The Kushana rulers washed to project the notions of kingship in their coins and sculpture.
Colossal statues of Kushana rulers have been found installed in a shrine at Mat near Mathura and in Afghanistan. Many Kushana rulers adopted the title ‘Devaputra’ or ‘Son of God’.

Question 6.
How have the Prashastis drawn the factual information about the Gupta rulers? (All India 2015)
Answer:
Prashastis were important source for reconstructing the histories of Gupta rulers. Historians tried to draw factual information from such compositions. These were composed in praise of kings in particular and patrons in general by poets. Harisena, the court poet of Samudragupta, composed the Prayag Prashasti (also known as Allahabad pillar inscription) where he described Samudragupta as the most powerful king of Gupta Empire who was equally powerful like God and protector of his poor subjects.

Question 7.
Mention any two features of the administrative system of the Mauryan Empire. (Delhi 2014)
Answer:
Two main features of the administrative system of the Mauryan Empire were:

  1. There were five major political centres in the empire viz, Pataliputra, Taxila, Ujjayini, Tosali and Suvamagiri.
  2. The administrative control was strongest in areas around the capital and the provincial centres and these centres were carefully chosen by the kings.

Question 8.
How did Magadha become the most powerful mahajanapada between 6th and 4th century BCE? Give two reasons.
(All India 2014)
Answer:
Historians explained the reason behind the emergence of Magadha as the most powerful mahajanapada in the following ways:

  • Agriculture was very productive in Magadha.
  • Magadha was rich in iron mines which provided resources for tools and weapons. Further, elephants were found in large number in this region.

Question 9.
Explain why the communication along both land and riverine routes was vital for the existence of the empire during the period of Mauryan. (Compartment 2013)
Answer:
During the Mauryan period, communication along both land and riverine routes was vital for the existence of the empire because:

  • The Mauryan empire was a very vast empire. Thus, for political control, military activity and people’s movement, both land and riverine routes were required.
  • Communication through roadways and waterways were necessary for trade and commerce and also for the exchange of ideas and knowledge, etc.

Question 10.
Mention any two pieces of evidence which referred to Asoka as the most popular ruler of the 6th century BCE.
(Compartment 2012)
Answer:
Asoka was the most popular ruler of the 6th century BCE as:

  • Historians found that the messages on Asokan inscriptions were very different from that of the most rulers and suggested that he was more powerful, industrious and humble than the other rulers.
  • Asoka tried to hold his vast empire together by propagating Dhamma, the principles that were universally accepted by all.

Question 11.
Who deciphered the Brahmi and Kharosthi scripts? What important facts were revealed through these scripts? (Compartment 2011)
Answer:
James Prinsep deciphered the Brahmi and Kharosthi scripts in 1838.
With the deciphered script, we know about the political, economic history and specially, the contribution of the king of that period.

Question 12.
Mention any two ways in which the inscriptions of land grants help us to understand rural society in ancient times.
(All India 2008)
Answer:
In ancient times, many land grants were recorded as inscriptions. We know these from:

  • Many land grants were given to religious institutions or Brahmanas. Some feel land grants were done to extend agriculture to new areas.
  • There were regional variations in the sizes of land donated, ranging from small to vast stretches of uncultivated land and the rights were given to donees, i.e. the recipients of the grant.
    BChapterwise CBSE Solved Papers : HISTORY

Important Questions for Class 12 History Chapter 2 – 4 Marks Questions

Question 13.
Critically examine the limitations of the inscriptional evidences in understanding political and economic history of India. (Delhi 2015)
Answer:
Inscriptions are important source to know history. But there are certain limitations of inscriptions. These were:
1.  Several thousands of inscriptions were discovered, but not all of them were deciphered or translated.

2.  Generally, inscriptions were composed in praise of kings and patrons, e.g. Prayaga Prashasti was composed in Sanskrit by Harisena, the court poet of Samudragupta. From this inscription, we know about the generosity, administrative capabilities of the king Samudragupta who was described as equal to different deities.

3. The context of the inscription invariably projected the perspective of the person who commissioned it. But it was not recorded what we consider politically and economically significant facts of that period. For example, routine agricultural practices, the joys and sorrows of common people were not mentioned in these inscriptions. History is not only the histories of kings, it includes different social groups and even marginalised sections of our society.

4. From mid-20th century historians’ become more interested in political and economic changes of society (e.g. the ways in which different social groups emerged). This lead to fresh investigations of old sources and in this respect, inscription had its own limitations to interpret political and economic history of India.

Question 14.
Historians have used a variety of sources to reconstruct the history of the Mauryan Empire. State any four such sources. (All India 2015, 2013)
Answer:
Historians have used a variety of sources to reconstruct the history of Mauryan Empire. These were:

  • Things found in archaeological excavation, specially sculpture are regarded as an important source.
  • Contemporary works like writings of Megasthenes, Arthashastra by Chanakya are important sources regarding that period.
  • The Mauryas were also mentioned in later Buddhist, Jaina, Puranic and Sanskrit literature.
  • Moreover the inscriptions of Asoka on rocks and pillars are regarded as the most valuable sources.

Question 15.
mat is the role played by the coins in the decipherment of Kharosthi script? (All India 2012)
Answer:
The role played by the coins in the decipherment of Kharosthi script was: Analysis of Indo-Greek Coins The coins of Indo-Greek kings who ruled over the north-western part of the sub-continent in c. second century BCE. were analysed by the epigraphists.

Comparison with Greek Script The Indo-Greek coins contain the names of kings written in Greek and Kharosthi scripts. The Kharosthi script was compared with the Greek one.

The European scholars who could read Greek, compared it with Kharosthi. There were few similarities e.g. letter ‘a’ was used in both scripts for writing names such as ‘Apollodotus’. James Prinsep identified the language of Kharosthi as Prakrit. After that, it became possible to read longer inscriptions easily

Question 16.
Explain briefly the notions of kingship during Kushana and Gupta empire. (Compartment 2011)
Answer:
In the 1st century BCE Kushanas ruled over a vast kingdom extended from Central Asia to North-West India. Their history has been reconstructed from inscriptions and textual traditions. The notions of kingship they wished to project are perhaps best evidenced in their coins and sculpture. The colossal statues of Kushana rulers were found in Mathura and Afghanistan.

According to some historians, this trend indicates that Kushanas thought themselves like God. Several Kushana rulers assumed the title ‘Devaputra’ or ‘Son of God’, perhaps they were influenced by the Chinese leaders who called themselves ‘Sons of Heaven’.

On the other hand, histories of the Gupta empire have been taken from literature, coins and inscriptions, including Prashastis. Prashastis were composed in praise of kings and patrons in general. The famous Prayaga Prashasti composed by Harisena, the court poet of Samudragupta, is a powerful document to know about the Gupta rulers.

Question 17.
Describe briefly any two strategies for increasing agricultural production from 6th century BCE to 6th century CE.(Delhi 2010)
Answer:
To increase the agricultural production, some strategies were adopted from 6th century BCE to 6th century CE. These strategies were:

  • There was a shift to plough agriculture. The iron-tipped ploughshare was used to turn the alluvial soil in areas which had high rainfall.
  • Irrigation through wells, tanks, canals were started to irrigate fields to increase agricultural production.

Question 18.
Describe briefly the sources used for reconstructing the history of the Gupta rulers. (All India 2010, Delhi 2009)
Answer:
The Gupta rulers established a vast empire in the 4th century which was reconstructed from various sources. These sources are explained in the following ways:
Inscriptions Inscriptions are writings engraved on hard surfaces like stones, metals, etc. These are generally composed in praise of kings in particular, and patrons in general by the poets. For example, Allahabad pillar inscription or Prayaga Prashasti were composed in Sanskrit by Harisena, the court poet of Samudragupta in praise of him.

Coins Coins are also an important source of reconstructing the history of Gupta rulers, as they include elements like scripts, images and the context in which they are found. Some of the most spectacular gold coins were issued by the Gupta rulers. These coins facilitated long distance transactions from which the expansion of trade and commerce was known.

Literature Historians attempted to draw factual information from the compositions of Prashastis. Those who composed these, often treated them as works of poetry, rather than an account that were literally true. These were written in praise of king and patron in general. Thus, historians have to constantly assess the statements made in inscriptions to judge whether they are true plausible or exaggerations.

Prashastis They contribute prominently in reconstructing the histories of the Gupta rulers, e.g. Prayaga Prashasti was composed in Sanskrit for Samudragupta.

Important Questions for Class 12 History Chapter 2 – 8 Marks Questions

Question 19.
Explain the main features of the Mauryan administration. (All India 2017)
or
Explain any four sources to reconstruct the history of Mauryas, Examine the system of Mauryan administration. (Delhi 2016)
What type of source have been used to reconstruct the history of Mauryan empire? Explain with suitable examples. (Delhi 2012)
Answer:
For sources to reconstruct the history of Mauryas, Historians have used a variety of sources to reconstruct the history of Mauryan Empire. These were:

  • Things found in archaeological excavation, specially sculpture are regarded as an important source.
  • Contemporary works like writings of Megasthenes, Arthashastra by Chanakya are important sources regarding that period.
  • The Mauryas were also mentioned in later Buddhist, Jaina, Puranic and Sanskrit literature.
  • Moreover the inscriptions of Asoka on rocks and pillars are regarded as the most valuable sources.

System of Mauryan Administration The growth of Magadha culminated in the emergence of the Mauryan empire. Chandragupta Maurya who founded the empire (321 BCE), extended control as far North-West as Afghanistan and Baluchistan, and his grandson Asoka, arguably the most famous ruler of early India, conquered Kalinga (present-day coastal Odisha).
There were five major political centres in the empire i.e. the capital Pataliputra and the provincial centres of Taxila, Ujjayini, Tosali and Suvarnagiri, that are all mentioned in Asokan inscriptions.
Due to Vastness of the empire administrative system of this empire was not uniform. It is likely that administrative control was strongest in areas around the capital and the provincial centres. These centres were carefully chosen, both Taxila and Ujjayini being situated on important long-distance trade routes, while Suvarnagiri (literally, the golden mountain) was possibly important for tapping the gold mines of Karnataka.
Communication along both land and riverine routes was vital for the existence of the empire. It is obvious that the army was an important means for ensuring the latter.

Megasthenes mentions a committee with six subcommittees for coordinating military activity. Of these, one looked after the navy the second managed transport and provisions, the third was responsible for foot-soldiers, the fourth for horses, the fifth for chariots and the sixth for elephants. The activities of the second subcommittee were rather varied-arranging for bullock carts to carry equipment, and recruiting servants and artisans to look after the soldiers.
Asoka also tried to hold his empire together by propagating Dhannna, the principles of which were simple and virtually universally applicable. This, according to him, would ensure the well-being of people in this world and the next. Special officers, known as the Dhamma Mahamatta, were appointed to spread the message of Dhamma.

Question 20.
Explain the agricultural practices followed by the cultivators to increase productivity from C 600 BCE to 600 CE. (All India 2017)
or
To what extent were agricultural practices transformed from 6th century BCE? Explain briefly. (Delhi 2011)
Answer:
Agricultural practices were transformed from 6th century BCE onwards because of increasing burden of taxes imposed by state. The kings demanded considerable taxes from the subjects, from 6th cent ury BCE onwards.
In order to fulfil this demand for more taxes, the farmers started finding new means to increase the production of their crops.

These new means were:
Shift Towards Plough Agriculture Agriculture practices were significantly transformed by the shift to plough agriculture which spread in fertile alluvial river valleys such as those of the Ganga and the Kaveri.

Use of Iron-Tipped Ploughshare In the areas of high rainfall, the use of iron-tipped ploughshare turned the alluvial soil into highly fertile ground.

Use of Paddy Transplantation Paddy transplantation technique was used in which seeds were first broadcast then the saplings were transplanted in water logged fields. This ensured a higher ratio of survival of saplings and higher yields and dramatically increased the production of paddy crop. Although, this process requires high degree of manual labour.

Use of Irrigation to Increase Productivity Irrigation was another strategy to increase agricultural production. The irrigation was done through wells and tanks and sometimes the canals were used.

Communities as well as individuals organised the construction of irrigation works. The process of construction of irrigation was often recorded in the inscriptions by the kings.

The use of such technologies led to an increase in agricultural production which ultimately led to a growing differentiation amongst people engaged in agriculture. The large landholders and village headmen emerged as powerful figures who exercised control over the cultivators or agricultural labourers. Thus, there was a remarkable change in the field of agriculture from 6th century BCE.

Question 21.
Explain the system of land grants and trade from 600 BCE to 600 CE. (Delhi 2016)
Answer:
From the early centuries, the grants of land were recorded in inscriptions. Some inscriptions were recorded in copper plates. The records that have survived, give us the following facts:

  • The land grants were given to religious institutions or to Brahmanas. The Brahmanas were usually exempted from paying land revenue and other due to the king. The Brahmanas were . often given the right to collect these
    dues from the local people.
  • Women were not supposed to have independent access to resources like land. But aristocrat women like Prabhavati Gupta, daughter of Chandragupta II had access to lands.
  • All the people in rural areas had to obey the new land of the village and pay him all the taxes.
  • Some historians claim that land grants were indicative of weakening political power, as kings were loosing control over their samantas. Sometimes, kings tried to win allies by making grants of land.
  • Land grants provide some insight into the relationship between cultivators and the state.
  • The system of trade from 600 BCE to 600 CE can be explained in the following ways:
    • Land and river routes criss-crossed the sub-continent and extended in different directions from the 6th century BCE. The ruler tried to control these routes by offering protection for a price.
    • These different routes were transversed by the peddlers who travelled on foot. But the merchants travelled with caravans of bullock carts and pack-animals.
    • There were seafearers. Their ventures
      were risky but highly profitable.
    • Successful merchants, designated as Manattuvan in Tamil and Setthis and Satavahanas in Prakrit w’ere very rich.
    • A wide range of goods were carried from one place to another. These were salt, grain, cloth, metal ores and finished products, stone, timber, medicinal plants, spices and pepper and textiles. All these were transported across the Arabian sea to the Mediterranean.

Question 22.
What does Asokan inscriptions tell about the Mauryas? Describe the limitations of the inscriptional evidences. (All India 2016)
or
To what extent the epigraphists face limitations of inscriptional evidence? Explain. (Delhi 2014, 2009)
Answer:
Asoka was the first ruler who inscribed his messages on stone surfaces i.e. natural rocks and polished pillars.
The major rock edicts explain the Mauryans administration specially about Asoka. Some of the important inscriptions are discussed below:

  • The name of Asoka was not mentioned in the inscriptions. Instead, the titles viz, ‘Devanampiya’ (beloved of the God) and ‘Piyadassi’ (pleasant to behold) were mentioned.
  • Asoka condemned the desire for fame and glory. He stressed on popularity of Dhamma.
  • Dhamma included respect towards elders, generosity towards Brahmanas and those who renounced worldly life, treating slaves and servants kindly and respect for religions and traditions other than one’s own.

Limitations of inscriptional evidence are:

Technical Limitations: Sometimes letters are very faintly engraved and thus doubts arise for inscriptions may be damaged or letters missing.

Damaged or Missing Letters: Sometimes important letters are damaged or missing in the inscription. It makes the work for epigraphists more difficult.

Lack of Clarity: It is not always easy to be sure about the exact meaning of the words used in the inscriptions, some of which may be specific to a particular place or time. So, scholars are constantly debating on alternative ways to read inscriptions.

Undeciphered Inscriptions: Thousands of inscriptions have been discovered, but not all have been deciphered, published and translated. Many inscriptions were destroyed and what we have today’ probably a fraction of it.

Non-relevance of Inscriptions: Inscriptions were composed in praise of kings and patrons in general. Not everything that is economically or politically important was recorded in the inscriptions, e.g. routine agricultural practice, the joys and sorrow of common man were not mentioned in the inscriptions. Thus, it is difficult for the epigraphists to give the complete picture of a society by relying on inscriptions only.

Question 23.
What do you mean by’ Numismatics?
How has the study of coins helped the Numismatists to reconstruct possible commercial networks? (All India 2014, 2010)
Answer:
Numismatics is the study of coins, including visual elements such as scripts and images, metallurgical analysis and the contexts in which they have been found.
The study of coins has helped the numismatists to reconstruct the possible commercial networks in the following ways:

Introduction of Coinage for Trade Facilitation: To some extent, exchanges were facilitated by the introduction of coinage. A wide range of goods like salt, grain, cloth, metal ores and finished products, stone, timber, medicinal plants, etc were carried from one place to another. These certainly required some kind of currency for exchange.
Hence, these led to the development of coinage across the trading cultures.

Excavation of Punch-marked Coins across the Sub-continent: Punch-marked coins made of silver and copper (16th century BCE onwards) were amongst the earliest to be minted and used. These have been recovered from excavations at a number of sites throughout the sub-continent. Numismatics have studied these and other coins to reconstruct possible commercial networks.

Kings, Merchants and Bankers as Issuing Authority: Attempts made to identify the symbols on punch-marked coins with specific ruling dynasties, including the Mauryas, suggest that these were issued by kings. It is also likely that merchants, bankers and towns people issued some of these coins.

Similarity of Kushana Coins with those of Greeks and Parthians: The first gold coins were issued in 1st century CE by the Kushanas. These were virtually identical in weight with those issued by contemporary Roman emperors and the Parthian rulers of Iran have been found from several sites in North India and Central Asia.

Close Connections with Roman Empire: The widespread use of gold coins indicates the enormous value of the transactions that were taking place. Besides, hoards of Roman coins have been found from archaeological sites in South India. It is obvious that networks of trade were not confined within political boundaries. South India was not a part of the Roman empire, but there were dose connections through trade.

Question 24.
How do the modern historians explain the development and growth of Magadhan power? Explain briefly. (All India 2012)
Answer:
Between the 6th and 4th centuries BCE, Magadha (in present-day Bihar) became the most powerful mahajanapada. Modern historians explain this development in a variety of ways:

  • Magadha was a region where agriculture was especially productive.
  • Besides, iron mines (in present-day Jharkhand ) were accessible and provided resources for tools and weapons.
  • Elephants, an important component of the army, were found in forests in the region.
  • Also, the Ganga and its tributaries provided a means of cheap and convenient communication.

However, early Buddhist and Jaina writers who wrote about Magadha attributed its power to the policies of individuals, ruthlessly ambitious kings of whom Bimbisara, Ajatashatru and Mahapadma Nanda are the best known, and their minister, who helped implement their policies.

The two capitals, i.e. Rajagriha (Rajgir) and Pataliputra (Patna) of Magadha had their own advantages. Rajagaha was a fortified settlement, located amongst hill, thus, was not easily captured. Pataliputra was easily communicable through the Ganga and its tributaries.

Important Questions for Class 12 History Chapter 2 Source Based Questions

Question 25.
In praise of Samudragupta:
He was without an antagonist on Earth; he, hy the overflowing of the multitude of (his) many good qualities adorned by hundreds of good actions, he wiped off the fame of other kings with the soles of (his) feet (he is) Purusha (the Supreme Being), being the cause of the prosperity of the good and the destruction of the bad (he is) incomprehensible; (he is) one whose tender heart can be captured only by devotion and humility; (he is) possessed of compassion; (he is) the giver of many hundred thousands of cows; (his) mind has received ceremonial initiation for the uplift of the miserable, the poor, the forlorn and the suffering; (he is) resplendent and embodied kindness to mankind; (he is) equal to (the Gods) Kubera (the God of wealth), Varuna (the God of the ocean), Indra (the God of rains) and Yama (the God of death).

  1. Who wrote the above Prashasti? State the importance of Prashasti?
  2. Mention any three qualities of the ruler described in the excerpt.
  3. How far are these values shown by the rulers, relevant in the contemporary society? Explain. (Delhi 2014)

Answer:
1. The Prayaga Prashasti also known as the Allahabad pillar inscription was composed in Sanskrit by Harisena. This Prashasti said that Samudragupta was without an antagonist on Earth and was adorned by hundreds of good actions.

2. The qualities of the ruler described in the excerpt are:

  • The ruler should be powerful with plethora of good qualities.
  • He should bring prosperity.
  • The ruler should have compassion and should try for the upliftment of the miserable, the poor and the forlorn.

3. The values shown in the above mentioned passage are relevant in the contemporary society to a great extent. The rulers ought to have positive attitude for the welfare of his countrymen. He should try incessantly to bring prosperity and equality in all walks of life.

Question 26.
The Sudarshana (beautiful) Lake in Gujarat:
The Sudarshana lake was an artificial reservoir. We know about it from a rock inscription (2nd century CE) in Sanskrit, composed to record the achievements of the Shaka ruler Rudradaman.
The inscription mentions that the lake, with embankments and water channels, was built by a local governor during the rule of the Maury as. However, a terrible storm broke the embankments and water gushed out of the lake. Rudradaman, who was then ruling in the area, claimed to have got the lake repaired using his own resources, without imposing any tax on his subjects.
Another inscription on the same rock (c 5th century) mentions how one of the rulers of the Gupta dynasty got the lake repaired once again.

  1. How do we get to know about the Sudarshana lake?
  2. Why this lake required the repair?
  3. Explain why did rulers make arrangements for irrigation? (All India 2014)

Answer:
1. We get to know about the Sudarshana lake from a rock inscription (2nd century CE) in Sanskrit, composed to record the achievements of the Shaka ruler Rudradaman.

2. The Sudarshana lake required repair because a terrible storm broke the embankments of the lake and water gushed out of the lake.

3. The rulers made arrangements for irrigation that included the repair of lakes, etc because the irrigation was crucial for the advancement of agriculture and eventual food security. The irrigation was adopted to increase the agriculture production through lakes, wells, tanks and canals.

Question 27.
The Importance of Boundaries:
The Manusmriti is one of the best-known legal texts of early India, written in Sanskrit and complied between 2nd century BCE and 2nd century CE. This is what the text advises the king to do.
Seeing that in the world controversies constantly arise due to the ignorance of boundaries, he should… have concealed boundary markers buried—stones, bones, cow’s hair, chaff, ashes, potsherds, dried cow dung, bricks, coal, pebbles and sand.
He should also have other similar substances that would not decay in the soil buried as hidden markers at the intersection of boundaries.

  1. Why did the controversies of boundaries arise? Explain.
  2. Suggest the ways to solve the boundary problems.
  3. Explain with example any such problem being faced by India today. (Delhi 2011)

Answer:
1. The ignorance of king to conceal the boundaries led to the controversies.

2. By concealing the boundaries by markers such as stones, bones, cow’s hair, chaff, ashes, potsherds, dried cow dung, bricks, coal, pebbles and sand. These substances do not decay in the soil and will act as markers at the intersection of boundaries.

3. India faces such problems in the villages where the land records are poorly maintained and various stakeholders try to claim their ownership of the disputed land.

Question 28.
The Anguish of the King
When the King Devanampiya Piyadassi had been ruling for eight years, the (country of the) Kalingas (present-day coastal Odisha) was conquered by him. One hundred and fifty thousand men were deported, a hundred thousand were killed and many more died.

After that, now that (the country of) the Kalingas has been taken, Devanampiya (is devoted), to an intense study of Dhamma, to the love of Dhamma and to instructing (the people) in Dhamma. This is the repentance of Devanampiya on account of his conquest of the (country of the) Kalingas. For this considered very painful and deplorable by Devanampiya that, while one is conquering an unconquered (country) slaughter, death and deportation of people (take place) there.

  1. Who was called ‘Devanampiya Piyadassi’? Give his brief description.
  2. Mention the importance and limitations of inscriptions.
  3. Explain the effects of war of Kalinga on Asoka.
  4. Why did the king repent after the war of Kalinga? (All India 2011)

Answer:
1. Emperor Asoka was called ‘Devanampiya Piyadassi’. Asoka was the most important ruler of Mauryan dynasty. He captured Kalinga and later repented on it and established the notion of ‘Dhamma’.

2. Importance of Inscriptions Inscriptions provide valuable information about those who commission it. They tell us about social and political conditions of that time when they were inscribed.
Limitations Inscriptions are source of limited information. They do not project the opinion of common people.

3. After the war of Kalinga, Asoka devoted hirnself to intense study of Dhamma and started instructing the people about the message of Dhamma.

4. The king repented after the war of Kalinga because it was very painful for him as the war led to slaughter, death and deportation of thousands of people.

Important Questions for Class 12 History Chapter 2 Map Based Questions

Question 29.
On the given outline map of India, locate and label the following. (Delhi 2013)
1. Avanti
2. Magadha
Answer:
Important Questions for Class 12 History Chapter 2 Kings, Farmers and Towns (Early States and Economies) Q 29

Question 30.
On the given political map of India, locate and label the following. (All India 2012 )
1. Topra – Pillar Inscription
2. Girnar – Major Rock Edicts
Answer:
Important Questions for Class 12 History Chapter 2 Kings, Farmers and Towns (Early States and Economies) Q 30

Question 31.
On the same map, three places related to Mahajanapada and cities have been marked as 1, 2 and 3. Identify them and write their names on the lines drawn near them. (Delhi 2008)
Important Questions for Class 12 History Chapter 2 Kings, Farmers and Towns (Early States and Economies) Q 31
Answer:
Important Questions for Class 12 History Chapter 2 Kings, Farmers and Towns (Early States and Economies) Q 31a

Question 32.
On the map of India, three Asokan Pillar inscriptions have been marked as 1, 2 and 3. Identify them and write the names on the lines drawn near them (All India 2008)
Important Questions for Class 12 History Chapter 2 Kings, Farmers and Towns (Early States and Economies) Q 32
Answer:
Important Questions for Class 12 History Chapter 2 Kings, Farmers and Towns (Early States and Economies) Q 32a

Important Questions for Class 12 History Chapter 2 Value Based Questions

Question 33.
Read the following passage and answer the questions that follow.
One story known as the Gandatindu Jataka describes the plight of the subjects of a wicked king. These included elderly women and men, cultivators herders, village boys and even animals. When the king went in disguise to find out what his subjects thought about him, each one of them cursed him for their miseries, complaining that they were attacked by robbers at night and by tax collectors during the day. To escape from this situation, people abandoned their village and went to live in the forest.

1. Who were not satisfied with the king mentioned in the story Gandatindu Jataka?
2. What were the possible reasons behind their plight?

Answer:
1. The people who were not satisfied with their king w-ere elderly women and men, cultivators, herders, village boys and even animals.
2. The reasons behind their plight are given below:

  • The subjects of the king mentioned the story were not satisfied with the actions of their king, because they were living in abject conditions and in insecurity.
  • There was no one to hear their complains and see their sufferings.
  • The people of the area became more aggressive due to there miseries. They were oftenly attacked by robbers at night. And in the day time, tax collectors used to come to trouble them and collect more taxes imposed on them almost every week or month.

After this plight the people were forced to abandon their homes and live in the forest to protect themselves from the king.

Question 34.
Read the following passage and answer the questions that follow.
While these technologies often led to an increase in production, the benefits were very uneven. What is evident is that there was a growing differentiation amongst people engaged in agriculture – stories, especially within the Buddhist tradition, refer to landless agricultural laborers, small peasants, as well as large landholders.
1. After having new technologies and an increase in agricultural production, why the benefits were very uneven among people engaged in agriculture? Discuss.
Answer:
1. The new’ technologies transformed the nature of agricultural production. In semi-arid areas irrigation was done by wells, tanks and less commonly canals. The iron-tipped ploughshare was also used to turn the alluvial soil in high rainy areas.

But after all these back-breaking efforts, the benefits share w7as very- uneven. It broke the society among landless agricultural laborers, small peasants, ploughman and large landholders.

Mostly large landholders had a large piece of land and due to their richness they w’ere able to use new technologies and hire landless agricultural labourers ploughmen and small peasants to work – on their fields to get more profits.

Due to having no land, the condition of landless laborers become very poor.
They searched for work everywhere. On the other hand, small farmers were not able to use new technologies in their fields due to lack of financial assistance. This created uneven situation, where large landholders become more powerful and enjoying more benefit, whereas small peasants and landless labourers enjoy less benefit.

Important Questions for Class 12 History

The post Important Questions for Class 12 History Chapter 2 Kings, Farmers and Towns (Early States and Economies) appeared first on Learn CBSE.


Important Questions for Class 12 History Chapter 3 Kinship, Caste and Class (Early Societies)

$
0
0

Important Questions for Class 12 History Chapter 3 Kinship, Caste and Class (Early Societies)

Important Questions for Class 12 History Chapter 3 – 2 Marks Questions

Question 1.
Identify any two occupations to be performed by Kshatrivas as per varna order. (All India 2017)
Answer:
Two occupations to be performed by Kshatriyas as per varna order were as follow:

  1. Kshatriyas were to engage in warfare and protect people i.e. they were soldiers.
  2. According to Shastras, only Kshatriyas could be kings.

Question 2.
Identify any two strategies evolved by Brahmanas to enforce the norms of varna order from C 600 BCE to 600 CE. (All India 2017)
Answer:
The Brahmanas evolved tvvo or three strategies for enforcing the norms of varna order, which are as follows:

  • The varna order was of divine origin.
  • They advised kings to ensure that these norms were followed within their kingdoms.

Question 3.
State whether gender differences were really important in the early societies from C 600 BCE to 600 CE. (All India 2017)
Answer:
Yes, it is seen in early societies that gender differences were important. Societies were generally patriliny. But matriliny family was also present. Sons were considered important for the continuity of the family and had share in paternal estate. But women could not claim a share of these resources.

Women were allowed to retain the gifts they received on the marriage ceremony. Women were also warned not to hoard family property without husband’s permission. In other words gender differences between men and women were sharpened due to unethical and biased rules.

Question 4.
Mention the rules about classification of people in terms of ‘gotra’ under Brahmanical practice around 1000 BCE onwards. (Delhi 2012)
Answer:
The rules about the gotra are as follows:

  • Women were expected to give up their father’s gotra and adopt their husband’s gotra on marriage.
  • Members of the same gotra could not marry.

Question 5.
How did Brahmanas develop a sharper social divide? Give two examples. (HOTS; All India 2012)
Answer:
Brahmanas developed a sharper social divide by suggesting the ideal occupations of the four varnas in society. For e.g.

  • They classified certain social categories as ‘untouchables’.
  • Those who considered themselves as pure avoided taking food from those designated as ‘untouchables’.

Question 6.
Mention one of the most challenging episodes in the Mahabharata. (Delhi 2009)
Answer:
One of the most challenging episodes in the Mahabharata is Draupadi’s marriage with the five Pandavas. It is an instance of polyandry (the practice of a woman having several husbands) which is a central theme of the epic. Different authors attempted to explain it in a variety of ways.

Question 7.
Mention two ideal occupations of Brahmanas according to Dharmashastras. (Delhi 2009)
Answer:
According to the Dharmashastras, the two ideal occupations of Brahmanas were as follows:

  • To study and teach Vedas.
  • To perform sacrifices and receive gifts.

Important Questions for Class 12 History Chapter 3 – 4 Marks Questions

Question 8.
Explain the language and content of Mahabharata. (All India 2017)
Answer:
The language and content of Mahabharata are discussed below:

  • Language: Mahabharata was written in Sanskrit language (although there are versions in other languages as well). However, the Sanskrit used in the Mahabharata is far simpler than that of the vedas.
  • Content: Historians usually classify the contents of the Mahabharata under two broad heads:
    Narrative This section contains stories.
  • Didactic: This section contains prescriptions about social norms, designated as didactic.

But this divisison is by no means watertight as the didactic sections include stories and the narrative often contains a social message.

However, generally historians agree that the Mahabharata was meant to be a dramatic, moving story, and that the didactic portions were probably added later.

Interestingly, the text is described as an itihasa within early Sanskrit tradition. The literal meaning of the term is “thus it was”, which is why it is generally translated as “history”. Historians are in a doubt that the war really took place or not, which is described in the epic.

Some historians think that the memory of an actual conflict amongst kinfolk was preserved in the narrative while other point out that there is no other corroborative (authentic) evidence of the battle.

Question 9.
Explain how you will prove that the text of Mahabharata was a dynamic one. (All India 2017)
Answer:
The following points prove that the text of Mahabharata was a dynamic one:

  • The growth of the Mahabharata did not stop with the Sanskrit version.
  • Over the centuries, version of the epic were written in a variety of languages through an ongoing process of dialogue between peoples, communities, and those who wrote the texts.
  • Several stories that originated in specific regions or circulated amongst certain people found their way into the epic.
  • The central story of the epic was often retold in different ways, and episodes were depicted in sculpture and painting.
  • They also provided themes for a wide range of performing arts i.e. plays, dance and other kinds of narrations.

Question 10.
What do you know about the authors and the period when Mahabharata was compiled? Explain. (All India 2017)
or
Who composed the original story of the text of Mahabharata? Describe the various stages through which Mahabharata was completed between the 5th century BCE and 400 CE? Delhi 2012
Answer:
The Mahabharata was composed over a period of about 1000 years between 500 BCE and 400 CE. The original story of the Mahabharata was composed by charioteer bards popularly called as Sutas.
The various stages were:

  • Brahmanas began to unite its story from the 500 BCE.
  • During this period, the chiefdoms of the Kurus and Panchalas were becoming kingdoms step by step.
  • Between 200 BCE and 200 CE, the worship of Vishnu was becoming important.
  • Krishna was one of the important figures of the Mahabharata and was coming to be identified with Vishnu between 200 C and 400 CE.

Between 200 and 400 CE, several didactic sections resembling the Manusmriti were added. This epic had about one lakh verses and this enormous composition is attributed to a sage named Vyasa.

Question 11.
Mention any two features of gotra as per the Brahmanical practice. What evidences do we get from the Satavahana inscription regarding the inheritance of gotra? Explain. (All India 2014)
Answer:
From 1000 BCE onwards, one Brahmanical practice was to classify people in terms of gotras. The two important features of gotra were:

  • Each gotra was named after a Vedic seer, all those who belonged to the same gotra were regarded as his descendants.
  • Women were expected to give up their father’s gotra and adopt their husband’s gotra at the time of marriage. Again members of the same gotra could not marry.

The evidences we get from the Satavahana inscriptions regarding the inheritance of gotra are as follows:

  • Inscriptions provide information which permits historians to get the family ties, including marriages.
  • Several women who married Satavahana rulers had retained their father’s gotras. They had names derived from gotras such as Gotama and Vasistha which were their father’s gotra, instead of adopting the name from their husband’s gotra.
  • Some of the women of Satavahana belonged to the same gotra which was against the ideal of exogamy, which refers to marriage outside the unit.

Question 12.
Critically examine the duties as laid down in ‘Manusmriti’ for the Chandalas. (HOTS: Delhi 2011)
Answer:
Chandalas or ‘untouchables’ were placed at the very bottom of the hierarchy. They had to live outside the village, use discarded utensils and wear clothes of the dead and ornaments of iron. They were not permitted to walk in villages and cities at night. They served as executioners and had to dispose of the bodies of those who had no relatives. They had to sound a clapper in the streets, so that people could avoid seeing them. Chinese scholars admitted that the Chandalas led a life of degradation.

Question 13.
Describe how, according to Manusmriti, paternal estate was to be divided after the death of the parents with special reference to the rights of women. (All India 2011)
Answer:
According to the Manusmriti, after the death of the parents, the paternal estate was to be divided equally amongst sons, with a special share for the eldest son. Women had no right to claim the share of the property.
Further, the scripture suggested that women were allowed to retain the gifts they received on the occasion of their marriage as stridhana (literally, a woman’s wealth). This could be inherited by their children, but the husband could not claim it. Further this scripture warned women against hoarding family property, or even their own valuables without the permission of the husband.

Question 14.
“The Dharmasutras and Dharmashastras also contained rules about the ideal occupations of the four categories of varnas.” Critically examine the statement. (HOTS, All India 2009)
Answer:
The Dharmasutras and Dharmashastras contained rules about the ideal occupations of four categories of varnas.
These categories are as follows:

  • Brahmanas were supposed to study and teach the Vedas, perform sacrifices and get sacrifices performed and give and receive gifts.
  • Kshatriyas were to engage in warfare, protect people and administer justice, study the Vedas, get sacrifices performed and make gifts.
  • Vaishyas were also assigned to study the Vedas, get sacrifices performed and make gifts as the Kshatriyas and in addition were expected to engage in agriculture, pastoralism and trade.
  • Shudras were assigned only one occupation i.e. of serving the three ‘higher’ varnas.
    In addition to assigning these occupations to the four varnas, the Brahmanas evolved two or three strategies for enforcing these norms.

Question 15.
Describe the position of the untouchables in ancient society. (All India 2008)
Answer:
The Brahmanas developed a sharp social divide by classifying certain social categories as untouchables. The Chandalas, according to the Brahmanical norms, were considered as ‘untouchables’. This rested on a notion that certain activities, especially those connected with the performance of rituals, were sacred and by extension pure. Those who considered themselves pure avoided taking food from those designated as untouchables.

In sharp contrast to the purity aspect, some activities were regarded as particularly ‘polluting’. These included handling corpses and dead animals. Those who performed such tasks, designated as Chandalas, were placed at the very bottom of the hierarchy. Their touch and in some cases even seeing them was regarded as polluting by those who claimed to be at the top of the social order. The Manusmriti laid down the ‘duties’ of Chandalas which determined their status in the society

Question 16.
Describe the various stages through which Mahabharata was compiled in the 20th century. (Delhi 2008)
Answer:
The work of compilation of Mahabharata started in 1919 under the leadership of noted scholar vs Sukthankar. The team comprised of dozens of scholars. They initiated the task of preparing a critical edition of the Mahabharata. The various stages of compiling Mahabharata were:

  • They collected Sanskrit manuscripts of the text, written in a variety of scripts, from different parts of the country.
  • They compared verses from each manuscripts. They selected the verses that appeared common to most versions.
  • These common verses were published in several volumes, running into over 13,000 pages.
  • The project took 4 years to complete.Two things became clear from this project:
    • There were several common elements in the Sanskrit version of the story and these were found all over the sub-continent.
    • More than half the 13000 pages had these types of variations which were documented in footnotes and appendices to the main text.

Important Questions for Class 12 History Chapter 3 – 8 Marks QuestionS

Question 17.
What are the rules of gotra as given in Brahmanical practice? Give some example to show that these rules were not always followed. (Delhi 2013)
Answer:
Brahmanical practice from 1000 BCE onwards classified people in terms of gotra. Each gotra was named after a vedic seer. All those who belonged to the same gotra were regarded as the descendants of the particular vedic seer. Two rules about gotra were particularly important.
These were:
1. Women were expected to give up their father’s gotra and adopt their husband’s gotra on marriage.
2. Members of the same gotra could not marry.

But always these rules were not followed. Many women who married Satavahana rulers retained their father’s name instead of adopting names derived from their husband’s gotra. For example, there were Satavahana rulers who were recognised by their mother’s name, like Gotami-puta Siri-Satakani, Vasithi-puta (Sami) Siri-Pulumayi, etc. This meant that these women did not adopt their husband’s gotra name and rejected the Brahmanical rules. Moreover, some of these women belonged to the same gotra, i.e. the gotras of their father and husband were same. This was against the rules of exogamy (referred to marriage outside the unit), recommended by the Brahmanieal seriptures.

Important Questions for Class 12 History Chapter 3 Source Based Questions

Question 18.
A Tiger-Like Husband
This is a summary of a story from the Adi Parvan of the Mahabharata.
The Pandavas had fled into the forest. They were tired and fell asleep; only Bhima, the second Pandava, renowned for his powers, was keeping watch. A man-eating rakshasa caught the scent of the Pandavas and sent his sister Hidimba to capture them. She fell in love with Bhima, transformed herself into a lovely maiden and proposed to him. He refused. Meanwhile, the rakshasa arrived and challenged Bhima to a wrestling match. Bhima accepted the challenge and killed him. The others woke up hearing the noise. Hidimba introduced herself and declared her love for Bhima.

She told Kunti, “I have forsaken my Am. friends, my dharma and my kin; and good lady, chosen your tiger-like son for my man…whether you think me a fool or your devoted servant, let me join you, great lady, with your son as my husband.” Ultimately, Yudhisthira agreed to the marriage on one condition that they would spend the day together, but that Bhima would return every night. The couple roamed all over the world during the day. In due course,
Hidimba gave birth to a rakshasa boy named Ghatotkacha. Then, the mother and son left the Pandavas.
Ghatotkacha promised to return to the Pandavas whenever they needed him.

Some historians suggest that the term rakshasa is used to describe people whose practices differed from those laid down in Brahmanical texts.

1. Who was Hidimba? Why was she sent to Pandavas and what did she do? Explain.
2. How did Hidimba plead with Kunti for her love?
3. Why were Pandavas sent to the forest?
4. On what conditions did Bhima agree for marriage with Hidimba? (Delhi 2016, All India 2012)

or

1. How did the story from Adi Parvan play an important role in shaping the value and ethos of the society?
2. How is this story a unique example of exogamy?
3. How did Hidimba and Yudhisthira interpret dharma in their context? (Delhi 2016)

Answer:
1. Hidimba was the sister of a man-eating rakshasa. She was sent by her brother to capture the Pandavas. Later, she fell in love with Bhima and married him with some conditions.

2. Hidimba pleaded with Kunti in order to declare her love for Bhima. She told Kunti that she left her family, friends and dharma for the sake of Bhima and requested Kunti for the approval to her marriage with Bhima.

3. The Pandavas were sent to the forest due to the conspiracy led by their cousin Duryodhana against them.

4. Bhima agreed for marriage with Hidimba on the conditions that they would spend the day together, but Bhima would return every night.

or

1. The story from Adi Parvan suggested that there was diversity in this sub-continent. There were people whose livelihood and social practices did not match with the Brahmanical thoughts, e.g. the rakshasa class in this story7. But society accepted them with some reservations. Here also, Hidimba was accepted with some preconditions.

2. Exogamy refers to marriage outside the unit. Here, Hidimba belonged to rakshasa class and Bhima belonged to Kshatriya class. Their marriage and conjugal life is a unique example of exogamy.

3. Hidimba gave up her friends, kin and dharma for the sake of her love for Bhima. She considered her love as the ultimate goal in her life. On the other hand, Yudhisthira agreed to the marriage of Hidimba with Bhima by seeing the love of Hidimba for Bhima. Here, Yudhisthira went beyond the regular boundary of dharma in our society.

Question 19.
Draupadi’s Marriage:
Drupada, the king of Panchala, organised a competition where the challenge was to string a bow and hit a target; the winner would be chosen to marry his daughter Draupadi. Arjuna was victorious and was garlanded by Draupadi.
The Pandavas returned with her to their mother Kunti, who, even before she saw them, asked them to share whatever they had got. She realised her mistake when she saw Draupadi, but her command could not be violated. After much deliberation, Yudhisthira decided that Draupadi would be their common wife.

When Drupada was told about this, he protested. However, the Seer Vyasa arrived and told him that the Pandavas were in reality incarnations of Indra, whose wife had been reborn as Draupadi and they were thus destined for each other. Vyasa added that in another instance a young woman had prayed to Shiva for a husband, and in her enthusiasm, had prayed five times instead of once. This woman was now reborn as Draupadi and Shiva had fulfilled her prayers. Convinced by these stories, Drupada consented to the marriage.

  1. How does this story reveal that mother was considered as the highest guru?
  2. Why did Kunti not save Draupadi from the dire situation?
  3. Why did Drupada and Seer Vyasa agreed Draupadi’s strange marriage . with five men? (All India 2016)

Answer:
1. After marriage of Arjuna with Draupadi, the Pandavas returned with her to their mother Kunti, Before seeing her, Kunti asked them to share whatever they had got. Kunti’s command could not be violated. So, the Pandavas married Draupadi and she became their common wife. This story reveals that mother was considered as the highest guru by the Pandavas.

2. Kunti was considered as the highest guru by her sons. The command of the highest guru could not be violated. Although, Kunti realised her mistake but she did not save Draupadi from the dire situation.

3. The Seer Vyasa told Drupada that the Pandavas w’ere in reality incarnation of Indra, whose wife has been reborn as Draupadi. So, they were destined to each other. Further, Vyasa said that according to other version, a young woman had prayed to Shiva for a husband five times. Shiva fulfilled her wish and the woman was reborn as Draupadi. Hearing this, Draupada agreed to Draupadi’s strange marriage with five men.

Question 20.
Draupadi’s Questions:
Draupadi is supposed to have asked Yudhisthira whether he had lost himself before staking her. Two contrary opinions were expressed in response to his question. Once, that even if Yudhisthira had lost himself earlier, his wife remained under his control, so he could stake her. Two, that an unfree man (as Yudhisthira was when he had lost himself) could not stake another person. The matter remained unresolved; ultimately, Dhritarashtra restored to the Pandavas and Draupadi their personal freedom.

  1. How did Draupadi’s questions unsettle everyone in the assembly?
  2. What was the implication of her questions?
  3. What makes Draupadi’s question admirable? (Delhi 2015)

Answer:
1. Draupadi’s questions unsettled everyone in the assembly because she asked the unpredictable questions that women during those times were not supposed to ask. She asked whether Yudhisthira had the right to stake her although he had lost earlier and a lost person could not stake another person.

2. The implication of her questions was that whether wives could he treated as property of husband and whether she enjoyed her own freedom and identity.

3. Draupadi’s question is admirable because she has questioned the male dominated system prevailing during those times. She had also questioned the unlimited control exercised by men over their wives, which in turn made the wives as the property of their husbands. Her question raised the justification about personal freedom and dignity of women.

Question 21.
‘Proper’ Social Roles.
Here is a story from the Adi Parvan of the Mahabharata.
Once Drona, a Brahmana who taught archery to the Kuru princes, was approached by Ekalavya, a forest-dwelling Nishada (a hunting community).

When Drona, who knew the dharma, refused to have him as his pupil, Ekalavya returned to the forest, prepared an image of Drona out of clay and treating it as his teacher, began to practise on his own. In due course, he acquired great skill in archery. One day, the Kuru princes went hunting and their dog, wandering in the woods, came upon Ekalavya. When the dog smelt the dark Nishada wrapped in black deer skin, his body caked with dirt, it began to bark. Annoyed, Ekalavya shot seven arrows into its mouth. When the dog returned to the Pandavas, they were amazed at this superb display of archery.

They tracked down Ekalavya, who introduced himself as a pupil of Drona. Drona had once told his favourite student Arjuna, that he would be unrivalled amongst his pupils. Arjuna now reminded Drona about this. Drona approached Ekalavya, who immediately acknowledged and honoured him as his teacher.
When Drona demanded his right thumb as his fee, Ekalavya, unhesitatingly cut it off and offered it. But thereafter, when he shot with his remaining fingers, he was no longer as fast as he had been before. Thus, Drona kept his word no one was better than Arjuna.

  1. Do you think Drona’s action was justified? Explain.
  2. Examine the story and explain the character of Ekalavya.
  3. After giving his thumb to Drona did he (Ekalavya) repent. Explain your opinion. (All India 2015, Delhi 2010)

Answer:
1. Drona promised to Arjuna that no one would beat him in archery. In order to fulfil his promise, Drona demanded Ekalavya’s right thumb as his fee. In this way, he kept his word, no one was better than Arjuna. But from the humanitarian point of view, it was completely unjustified. Drona never taught Ekalavya, so there was no question of fee for teaching. Doing harm to anyone for the sake of other is not justified.

2. Ekalavya was a forest-dweller who was called as Nishada. He was very keen to learn archery, for this he approached Dronacharya, but Dronacharya refused to have him as his pupil.
Ekalavya started to practise on his own in front of Drona’s image made of clay, prepared by himself. He acquired great skill in archery. It shows the strength and power of Ekalavya. His sense of gratitude made him cut off his thumb unhesitatingly even though it would cost him loosing his acquired skills.

3. No, Ekalavya did not repent. Ekalavya honoured Drona as his teacher. He obeyed his word and fulfilled his teacher’s wish of having his right thumb. In this way, he had proved himself a sincere and faithful student.

Question 22.
Why Kinfolk Quarrelled?
This is an excerpt from the Adi Parvan (literally, the first section) of the Sanskrit, Mahabharata, describing why conflicts arose amongst the Kauravas and Pandavas.

The Kauravas were the…sons of Dhritarashtra and the Pandavas…were their cousins. Since Dhritarashtra was blind, his younger brother Pandu ascended the throne of Hastinapura.. . However, after the premature death of Pandu, Dhritarashtra became king, as the royal princes were still very young. As the princes grew up together, the citizens of Hastinapura began to express their preference for the Pandavas, for they were more capable and virtuous than the Kauravas.

This made Duryodhana, the eldest of the Kauravas, jealous. He approached his father and said, “You yourself did not receive the throne, although it fell to you, because of your defect. If the Pandava receives the patrimony from Pandu, his son will surely inherit it in turn and so will his son and his.
We ourselves with our sons shall be excluded from the royal succession and become of slight regard in the eyes of the world, lord of the Earth!”

Passage such as these may not have been literally true, but they give us an idea about what those who wrote the text thought. Sometimes, as in this case, they . contain conflicting ideas.

  1. Why did the citizens of Hastinapura , express preference for Pandavas?
  2. Explain the reactions of Duryodhana against Pandavas.
  3. Explain the criterion of patrilineal succession. (Delhi 2012)

Answer:
1. The citizens of Hastinapura preferred the Pandavas to the Kauravas because the Pandavas were more capable and virtuous than Kauravas.

2. The preference of citizens for the Pandavas made Duryodhana jealous. He told his father that he lost the throne due to his defect. But if the Pandavas would get the throne as the patrimony of Pandu, then the Kauravas and their sons would lose their respect in the eyes of the world.

3. As per the criterion of patrilineal succession, it comes from father to son, grandson and so on. Consequently; sons could claim the resources of their fathers when the latter died.

Question 23.
The Wealthy Shudra
This story based on a Buddhist text in Pali known as the Majjhima Nikaya, is part of a dialogue between a king named Avantiputta and a disciple of the Buddha named Kachchana. While it may not be literally true, it reveals Buddhist attitudes towards varna.

Avantiputta asked Kachchana what he thought about Brahmanas who held that they were the best caste and that all other castes were low; that Brahmanas were a fair caste while all other castes were dark: that only Brahmanas were pure, not non-Brahmanas; that Brahmanas were sons of Brahma, born of his mouth, born of Brahma, formed by Brahma, heirs to Brahma.

Kachchana replied “What if a Shudra were wealthy….would another Shudra,.,..or a “Kshatriya or a Brahmana or a Vaishya… speak politely to him?” Avantiputta replied that if a Shudra had wealth or corn or gold or silver, he could have as his obedient servant another Shudra to get up earlier than he, go to rest later, to carry out his orders, to speak politely; or he could even have a Kshatriya or a Brahmana or a Vaishya as his obedient servant.
Kachchana asked, “This being so, are not these four varnas exactly the same?” Avantiputta conceded that there was no difference amongst the varnas on this count.

  1. What did Avantiputta want to know from Kachchana about Brahmanas?
  2. What was Kachchana’s reply? Explain
  3. If a Shudra had wealth, would Brahmanas and others speak to him politely? Give reasons. (All India 2010)

Answer:
1. Avantiputta wanted to know’ from Kachchana his thought about Brahmanas, whether the Brahmanas were the best caste having fair skin while other castes were dark; whether they were sons of Brahma or born of Brahma’s mouth.

2. Kachchana replied that if a Shudra were wealthy then he could have another Shudra or Kshatriya or a Brahmana as his servant.

3. Yes, if Shudra had wealth, Brahmanas and others would speak to him politely because he had power of wealth.

Question 24.
How could Men and Women acquire Wealth?
For men, the Manusmriti declares, there are seven means of acquiring wealth inheritance, finding, purchase, conquest, investment, work and acceptance of gifts from good people.

For women, there are six means of acquiring wealth what was given in front of the fire (marriage) or the bridal procession or as a token of affection and what she got from her brother, mother or father.

She could also acquire wealth through any subsequent gift and whatever her ‘affectionate’ husband might give her.

  1. Explain the means how men could acquire wealth, according to Manusmriti?
  2. Explain the means of acquiring wealth by women.
  3. Explain the result of having different ways of acquiring wealth by men and women.
  4. Do you agree with such division of acquiring wealth or not? Give one reason. Delhi 2009

Answer:
1. According to Manusmriti, men could acquire wealth by inheritance, finding, purchase, conquest, investment, work and acceptance of gifts from good people, etc.

2. Women could acquire wealth by six means what was given in front of the fire (marriage) or the bridal procession or as a token of affection and what she got from her brother, mother or father and also as a gift from her husband.

3. The following are the result of having different ways of acquiring wealth by men and women:

  • The gender access to property leads to a low economic and social position of women.
  • The dependency of women remained on the goodwill of the men in the family to have access to wealth.

4. No, I do not agree with such a division of acquiring wealth as it is gender-biased, which leads to inequality in the society.

Important Questions for Class 12 History Chapter 3 Value Based Questions

Question 25.
“The Mahabharata is a good source to study the Kinfolk values of ancient times.” Justify the statement with suitable arguments. (Delhi 2013)
Answer:
The Mahabharata is a good source to study the Kinfolk values of ancient times. This statement can be justified in the following ways:
1. Families are usually parts of the larger networks of people defined as relatives, or to use a more technical term Kinfolk. While familial ties often regarded as ‘natural’ and based on blood, they are defined in many different ways. Some societies regard cousin as being blood relations, some others do not. The Mahabharata was a story of Kinship relations.
It narrated a feud over land and power between two groups of cousins, viz, the Kauravas and the Pandavas. Both of the cousins had different set of ideal which shaped their actions and led to changes in their attitude of life.

2. Mahabharata reinforced the idea of patriliny, i.e. tracing descent from father to son, grandson and so on. Under patriliny, sons could claim the resources (including the throne in the case of kings) of their father when the latter died. In Mahabharata, both the Kauravas and the Pandavas believed that they were the real successor of the throne.

3. Draupadi’s marriage with the five Pandavas was the most challenging episode in the Mahabharata. It indicated polyandry (the practice of a woman having several husbands) among elites in that period.
It is evident that literature gives us an idea about the perception of the writer, but sometimes it contains conflicting ideas. Thus, epic like Mahabharata does not always depict the real picture of the society.

Question 26.
“Historians find it particularly a difficult task to understand a text as complex as the Mahabharata.” Justify this statement, (All India 2008)
Answer:
Historians find it particularly a difficult task to understand a text as complex as the Mahabharata because:

  • Historians classified the contents of the Mahabharata under two broad heads i.e. narrative section, which contains stories and didactic section which contains prescriptions about social norms. The historians suggested that the Mahabharata had a dramatic story and the didactic portions were probably added later.
  • Historians consider several dements when they analyse text to examine the language of the text.
  • The historians have to find out about the authors, whose perspectives and ideas have shaped the text, as well as the intended audience, as very often, authors keep in mind the interests of their audience while composing their work.
  • They also have to ascertain the possible date of the composition or compilation of the texts as well as the place where they may have been composed.

Question 27.
Read the following passage and answer the questions that follow.
Given the diversity of the sub-continent, there were, and always have been, populations whose social practices were not influenced by Brahmanical ideas. When they figure in Sanskrit texts, they are of ten described as odd, uncivilized or even animal-like. In some instances, these included forest-dwellers for whom hunting and gathering remained an important means of subsistence. Categories such as the Nishada, to which Ekalavya is supposed to have belonged, are examples of this,

  1. Which ideas were considered supreme which influenced social practices of all people in ancient times?
  2. Due to which reason there were populations whose social practices remained unaffected by Brahmanical ideas? Who were these people?

Answer:
1. The Brahmanical ideas were considered supreme and mandatory to be followed by people. These ideas influenced the social life of all the people of ancient times.

2. Due to the diversity of the Indian sub-continent, there were and always have been populations whose social practices were not influenced by Brahmanical ideas.
In some instances, these people included forest- dwellers for whom hunting and gathering remained an important means of subsistence. Categories such as Nishada, are example of this. These people are often described in Sanskrit texts as odd, uncivilised or even animal-like.

Question 28.
Read the following passage and answer the questions that follow.
These complexities are reflected in another term used in texts to refer to social categories jati. In Brahmanical theory, jati, like varna, was based on birth. However, while the number of varnas was fixed at four, there was no restriction on the number of jatis.

In fact, whenever Brahmanical authorities encountered new groups-for instance, people living in forests such as the Nishadas or wanted to assign a name to occupational categories such as the goldsmith or suvarnakara, which did not easily fit into the fourfold varna system, they classified them as a jati. Jatis which shared a common occupation or profession were sometimes organised into shrenis or guilds.

  1. Which different terms were used in Brahmanical text to refer to social categories?
  2. Why did Brahmanical authorities classify new groups as a jati and not as varna? Give a suitable reason.

Answer:
1. The Brahmanical texts used different terms to refer to social categories like varna, which were composed of four groups like Brahmans, Kshatriyas, Vaishyas and Shudras in terms of decreasing in social status. Another terms used in these texts were jati and shrenis.

2. When Brahmanical authorities encountered new groups such as people living in forests i.e. Nishadas or wanted to assign a name to occupational categories such as goldsmith or suvarnakara, they classified them as a jati. It is because the varna system was fixed at four and could not be altered. As new groups did not early fit into the fourfold varna system, they classified every new group as a jati and not as varna.

Important Questions for Class 12 History

The post Important Questions for Class 12 History Chapter 3 Kinship, Caste and Class (Early Societies) appeared first on Learn CBSE.

Important Questions for Class 12 History Chapter 4 Thinkers, Beliefs and Buildings (Cultural Developments)

$
0
0

Important Questions for Class 12 History Chapter 4 Thinkers, Beliefs and Buildings (Cultural Developments)

Important Questions for Class 12 History Chapter 4 – 2 Marks Questions

Question 1.
Why are Buddhist stupas said to be “stories in stone”? Explain. (HOTS, All India 2016)
Answer:
Each Buddhist stupa has a history of its own. The sculptures in the stupas depicted different stories which were taken from different texts at that time. Art historians have identified that the sculpture at Sanchi was a scene from the Vessantara Jataka. Often historians tried to understand the meaning of sculpture by comparing it with textual evidence.

Question 2.
How was Buddha’s presence shown through symbols? Give two examples. (Delhi 2010)
Answer:
Examples to show Buddha’s presence shown through symbols are:

  • The empty seat indicated the meditation of the Buddha.
  • The stupas represented the mahaparinibbana of the Buddha.

Question 3.
Mention the internal functioning of the Buddhist Sanghas. (All India 2010)
Answer:
The internal functioning of Buddhist Sangha was based on the traditions of ganas and sanghas. Within the sangha, there were equal status given to all of them because they shed their earlier social identities on becoming bhikkhus and bhikkhunis.
Women were included later in the sanghas.

The bhikkhus in the sangha had to observe certain rules such as to abide by their duties, such as a bowl to receive food once a day from the ordinary people. Consensus was arrived on all issues through discussions. All decisions were taken with the majority opinion or by a vote on the subject.

Question 4.
Name the two types of sources through which we come to know about Buddha and his teachings. (Delhi 2008)
Answer:
Two sources through which we come to know about Buddha and his teachings are as follows:

  • Various Buddhist texts like Tripitakas or three baskets and the Jataka stories.
  • Various pillar inscriptions and rock edicts.

Important Questions for Class 12 History Chapter 4 – 4 Marks Questions

Question 5.
How was the fate of Amaravati stupa different from the Sanchi stupa? Explain. (All India 2016)
or
Critically examine why Sanchi survived while Amaravati did not? HOTS, (All India 2010)
Answer:
The stupa at Amaravati was one of the largest and the most significant among the Buddhist stupas. The stupa at Sanchi survived while Amaravati did not. Ther reasons are:

  • It is said that the stupa at Amaravati was discovered sometime earlier than the one at Sanchi.
  • Perhaps, the scholars were not aware of the significance of preserving the archaeological remains at the site where they were originally found.
  • The Sanchi stupa Was discovered in the year 1818. At that time, three of its four gateways were still standing, the fourth was lying on the spot and the mound was in good condition.

But from the Amaravati, several pieces of sculptures were already used by the British administration in London to decorate the gardens. There was an insignificant little mound and was totally denuded of its former glory.

Question 6.
“Many rituals, religious beliefs and practices were not recorded in a permanent visible form as monuments or sculptures or even paintings”. Critically examine the statement. (HOTS, All India 2012)
Answer:
Many rituals, religious beliefs and practices were not recorded in a permanent visible form as monument, sculptures or even paintings.
This can be understood through the following points:

  • There are many communities and people who may not have known to keep records for their rituals, religious beliefs and practices.
  • However, they may had vibrant traditions of religious activities and their own philosophical ideas.
  • Generally, people want to record those things which are clearly visible. They do not feel urgency to record their daily practices about religion and philosophy.

Thus, we have a partial view of the rich visual traditions that were presented in the form of sculpture, architecture and paintings and any of these sculptures were damaged over the centuries. But beyond these, there is a vast history of men which is not yet recorded.

Question 7.
Describe the teachings of the Buddha. (Delhi 2011)
or
Describe how Buddha’s teachings have been reconstructed from the stories of Sutta Pitaka? All India 2011
or
Write down the eternal truth of Buddhism. (All India 2009)
or
Explain briefly the teachings of Buddha. (Delhi 2008)
Answer:
The teachings of Buddha are as follows:

  • The world is transient (anicca) and constantly changing. It is also soulless as there is nothing permanent or eternal in it.
  • Within this transient world, sorrow (dukkha) is intrinsic to human existence.
  • By following the path of moderation between severe penance and self-indulgence, human beings can use above these worldly pleasures.
  • He advised kings and gahapatis to be humane and ethical. Buddha regarded the social world as the creation of humans rather than of divine origin.
  • He emphasised individual agency and righteous action as the means to escape from the cycle of rebirth and attain self-realisation and nibbana (literally means the extinguishing of ego and desire).
    This ends the cycle of suffering for those who renounced the world.
  • The words to his followers were “Be lamps into yourselves as all of you must work out your own liberation.”

Question 8.
Describe how the Buddha’s teachings have been reconstructed from the stories of Sutta Pitaka. (All India 2011)
Answer:
The Buddha’s teachings have been reconstructed from the stories found mainly in the Sutta Pitaka in the following ways:

  • Although some stories suggest the Buddha’s miraculous powers, others suggest that the Buddha tried to convince people through reason and persuasion rather than through displays of supernatural powers.
  • When a grief-stricken woman, whose child had died, came to the Buddha, he sympathetically convinced her about the inevitability of death rather than bring her son back to life. These types of stories were narrated in the language spoken by ordinary people, so that they could easily understand.
  • In Sutta Pitaka, the Buddha explained five ways through which a master could look after his servants and employees. These were:
    • by assigning them work according to their strength.
    • by supplying them with food and wages.
    • by tending them in sickness.
    • by sharing delicacies with them.
    • by granting leaves at times.
  • In Sutta Pitaka, there were instructions about how to behave with parents, teachers and wife.

Question 9.
Describe briefly the early stupas at Sanchi and Bharhut. (Delhi 2009)
Answer:
The early stupas at Sanchi and Bharhut were built in the 2nd century BCE. The main features of these stupas were:

  • These were plain except for the stone railings, which resembled a bamboo or wooden fence. The gateways of these stupas were richly carved and installed at the four cardinal points.
  • Worshippers entered through the Eastern gateway and walked around the mound in a clockwise direction, keeping the mound on the right, imitating the sun’s course through the sky.
  • Later, the mound of the stupas made to be elaborately carved with niches and sculptures, like Amaravati and Shahji-Ki-Dheri in Peshawar.
  • An elevation of the great stupas of Sanchi provides a vertical perspective.

Important Questions for Class 12 History Chapter 4 – 8 Marks Questions

Question 10.
Explain the structural and sculptural features of the Sanchi stupa. (Delhi 2015)
Answer:
The Sanchi stupa was built in the 2nd century BCE and regarded as one of the important stupas in India. It was discovered in 1888.
The structural features of the Sanchi stupa are:

  • The stupa originated as a simple semi-circular mound of Earth, later called Anda. Above the anda was the harmika, a balcony-like structure that represented the abode of the Gods. There was a mast called the yashti, arising from the harmika and it was surmounted by a chhatri or umbrella.
  • Around the mound, there was a railing, separating the sacred space from the world. There were stone railings and the gateways, which were richly carved and installed at the four cardinal points.
  • An elevation of the great stupa provides a vertical perspective.

The sculptural features of the Sanchi stupa are:

  • Art historians identified the scene depicted in the gateways as a scene from the Vessantara Jataka. They often try to understand the meaning of sculpture by comparing it with textual evidence.
  • Many symbols like empty seat, wheel, tree were used to indicate the different teachings of Buddhism in Sanchi stupa. For instance, the empty seat was meant to represent the mahaparinibbana.
    Wheel stood for the first sermon of Buddha.
  • Other sculptures at Sanchi were perhaps not directly inspired by Buddhist ideas. These figures included beautiful women swinging from the edge of the gateway holding into a tree, like, Shalabhanjika was a woman whose touch caused trees to flower and bear fruit.
  • There are other images in Sanchi stupa. Depiction of animals like elephants, horses, monkeys and cattle were found there. Animals were used as symbols of human attributes, e.g. elephants were depicted to signify strength and wisdom.
  • There is a motif in Sanchi stupa of a woman surrounded by lotuses and elephants, which seems to be sprinkling water on her as if performing an Abhisheka or consecration. It has been identified by some historians as Maya, the mother of Buddha while others identify her with a popular Goddess Gajalakshmi (Goddess of good fortune).

Question 11.
How did Sutta Pitaka reconstruct the philosophy of Buddhism? Mention about Buddhist Tipitaka. (HOTS; All India 2015)
Answer:
After the death of Buddha, his teachings were compiled by his disciples and were known as Tipitaka. Sutta-Pitaka was one of the Tipitaka.
The main features of Sutta Pitaka are:
1. The Buddha’s teachings have been reconstructed from stories found mainly in the Sutta Pitaka. Some stories ’ describe his miraculous powers and other stories suggest that the Buddha tried to convince people through reason and persuasion, rather than through displays of supernatural power. Sometimes, through stories, the teachings of the Buddha were narrated in the language spoken by common men, so that individual effort was expected to transform social relations.

2. The Buddha emphasised individual agency and righteous action as the means to escape from the cycle of rebirth and attain self-realisation and nibbana. By extinguishing ego and desire, individual could end the cycle of his . sufferings and renounce the world.

Tipitaka literally means three baskets to hold different types of texts.
The main features of it are:

  • The Vinaya Pitaka included rules and regulations for those who joined the Sangha or monastic order.
  • The Sutta Pitaka included the teachings of the Buddha.
  • The Abhidhamma Pitaka dealt with philosophical matters. Each pitaka comprised a number of texts.
  • According to Buddhist philosophy the world is transient (anicca) and constantly changing. The world is soulless (anatta) as there is nothing permanent or eternal in it.
  • Within this transient world, sorrow (dukkha) is intrinsic to human existence. It is by following the path of moderation between severe penance and self-indulgence, the human beings can rise above these worldly troubles.
  • The Buddha regarded the social world as the creation of humans rather than of divine origin. Therefore, he advised kings and gahapatis to be humane and ethical.

Question 12.
Discuss how and why were stupas built? (All India 2013,2008)
Answer:
The stupas were built with donation made for building them. The kings such as Satavahanas, wealthy persons, guilds of the merchants and artisans and even monks, common men and nuns made donation for building stupas. We find records of donations that were made for building and decorating the stupa on the railings and pillars of the stupas. The inscriptions also mention the names of hundreds of donors and sometimes the name of the place from where they came, their occupations and names of their relatives as well. For instance, one of the gateways at Sanchi was built with the money donated by the guilds of ivory-workers.

The stupas were regarded as sacred place and the relics of Buddha i.e. his bodily remains or objects used by him were buried here. These mounds were known as stupas. The tradition of building stupas may have been pre-Buddhist, but they attained much popularity as an emblem of both the Buddha and Buddhism.

The scholars find a mention of ‘Ashokavadana’ a Buddhist text, in that Asoka distributed portions of the Buddha’s relics to every important town and ordered the construction of stupas over them. By the 2nd century BCE, a large number of stupas including those at Bharhut, Sanchi and Sarnath were built.

Important Questions for Class 12 History Chapter 4 Source Based Questions

Question 13.
Buddhism in Practice:
This is an excerpt from the Sutta Pitaka, and contains the advice given by the Buddha to a wealthy householder named Sigala.
In five ways should a master look after his servants and employees… by assigning them work according to their strength, by supplying them with food. and wages, by tending them in sickness; by sharing delicacies with them and by granting leave at times …
In five ways should the clansmen look after the needs of Samanas (those who have renounced the world) and Brahmanas; by affection in act and speech and mind, by keeping open house to them and supplying their worldly needs.
There are similar instructions to Sigala about how to behave with his parents, teacher and wife.
1. In what ways should a master look after his servants and employees? (All India 2017)
or
What advice was given by Buddha to Sigala regarding relationship between a master and his servants and employees? (Delhi 2013)
2. In what ways should the clansmen look after the needs of Samanas? (All India 2017)
or
List the instructions given by Buddha to the clansmen for Samanas and Brahmanas. (Delhi 2013)
3. Explain the main aspects of Buddhist philosophy. (All India 2017)
or
According to you what suggestion Buddha would have advocated regarding parents and teachers? (Delhi 2013)
Answer:
1. The advice given by Buddha to Sigala regarding relationship between a master and his servants and employees are:

  • A master should look after his servants and employees in five ways.
  • He should assign them work according to their strength, by supplying them with food and wages.
  • A master should tend them in sickness, by sharing delicacies with them and by-granting leave at times.

2. The instructions given by Buddha to the clansmen for Samanas and Brahmanas are:

  • The clansmen should look after the needs of Samanas (those who have renounced the world) and Brahmanas in five ways.
  • The clansmen should have affection in act and speech and mind by keeping open to house.
  • The clansmen should also fulfil the worldly needs of Samanas and Brahmanas.

3. The suggestions Buddha would have advocated regarding parents and teachers are similar. According to Buddha, parents and teachers ought to be respected and their needs should be fulfilled with grace and dignity.

Question 14.
Why were Stupas Built?
This is an excerpt from the Mahaparinibbana Sutta, part of the Sutta Pitaka. As the Buddha lay, dying Ananda asked him “What are we to do Lord, with the remains of the Tathagata (another name for the Buddha)?” The Buddha replied, “Hinder not yourselves Ananda by honouring the remains of the Tathagata. Be zealous, be intent on your own good.”
But when pressed further, the Buddha said, “At the four crossroads, they should erect a thupa (Pali for stupa) to the Tathagata. And whosoever shall there place garlands or perfume…. or make a salutation there, or become in its presence calm of heart, that shall long be to them for a profit and joy.”

  1. Why were the stupas built?
  2. What Asoka did with the relics of Buddha?
  3. Describe the structure of the stupas. (All India 2009)

Answer:
1. Stupas were built because the relics of Buddha such as his bodily remains or objects used by him were buried there. These mounds were called stupas which came to be associated with Buddhism.

2. Asoka distributed portions of Buddha’s relics to every important town and ordered the construction of stupas over them.

3. Structure of stupas is as follows:

  • Anda: It is a semi-circular mound of Earth called anda.
  • Harmika: Above anda was the harmika, a balcony-like structure that represented the abode of the Gods.
  • Yashti: Arising from harmika was a mast called yashti. It was surmounted by a chhatri or umbrella.
  • Railing: Around the mound was a railing which separated the sacred place from the secular world.

Important Questions for Class 12 History Chapter 4 Map Based Questions

Question 15.
In the outline map of India, three places which are major Buddhist sites have been marked as A, B and C. Identify them and write their correct names on the lines drawn near them. (All India 2017)
Important Questions for Class 12 History Chapter 4 Thinkers, Beliefs and Buildings (Cultural Developments) Q15
Answer:
Important Questions for Class 12 History Chapter 4 Thinkers, Beliefs and Buildings (Cultural Developments) Q15(i)

Question 16.
On the given political map of India, locate and label the following.

  1. Bodhgaya. (All India 2014 )
  2. Lumbini. (Delhi Board 2014)
  3. Sanchi. (Delhi Board 2011)

Answer:
Important Questions for Class 12 History Chapter 4 Thinkers, Beliefs and Buildings (Cultural Developments) Q16

Important Questions for Class 12 History Chapter 4 Value Based Questions

Question 17.
“The mid first millennium BCE is often regarded as a major turning point in the world history.” Justify. (Delhi 2016)
Answer:
The mid first millennium BCE is often regarded as a major turning point in world history because of the following facts:

  • Emergence of Thinkers: It saw the emergence of thinkers such as Zarathustra in Iran, Kong Zi in China, Socrates, Plato and Aristotle in Greece and Mahavira and Gautam Buddha among others in India.
  • Understanding of the Mysteries of Existence: Thinkers tried to understand the mysteries of existence and the relationship between human beings and the cosmic order.
  • Development of New Kingdoms and Cities: It was the time when new kingdoms and cities were developing.
  • Change in Social and Economic Life: Social and economic life were changing in a variety of ways, e.g. in the Ganga valley growth of town, new crafts and trade took place.
  • New Agricultural Technology: There was extension of agriculture due to occupation of new lands, application of new techniques and use of iron tools.

Question 18.
“Buddha laid stress on right conduct and values.”
In the light of the above message, explain his teachings of life. (Delhi 2014)
Answer:
The teachings of Buddha are as follows:

  • The world is transient (anicca) and constantly changing. It is also soulless as there is nothing permanent or eternal in it.
  • Within this transient world, sorrow (dukkha) is intrinsic to human existence.
  • By following the path of moderation between severe penance and self-indulgence, human beings can use above these worldly pleasures.
  • He advised kings and gahapatis to be humane and ethical. Buddha regarded the social world as the creation of humans rather than of divine origin.
  • He emphasised individual agency and righteous action as the means to escape from the cycle of rebirth and attain self-realisation and nibbana (literally means the extinguishing of ego and desire).
    This ends the cycle of suffering for those who renounced the world.
  • The words to his followers were “Be lamps into yourselves as all of you must work out your own liberation.”

Question 19.
“The principle of ahimsa and renunciation emphasised by Jainism has left its mark.” Support the statement with Lord Mahavira’s messages. (Delhi 2013)
Answer:
The most important idea of Jainism is that the entire world is animated, even stones, rocks and water have life. In Jainism, the principle of ahimsa is emphasised. Jainism focuses on non-injury to living beings especially to humans, plants and insects.

Impacts of Jainism on Indian thinking are:

  • The idea of ahimsa left its mark on Indian thinking on the whole especially the thinking of Buddha and Gandhiji.
  • It also influenced Indian thinking in the light of the cycle of birth and rebirth through karma and renouncing the world to free oneself from the cycle of karma. In this respect, asceticism and penance are required.
  • From the perspective of morality, vows like not to steal, kill, lie or possess property and observing celibacy were emphasised, which is easily evident in Indian thinking.
  • It has stressed on simple way of life.
  • Vegetarianism’has also been derived from this thinking.

Question 20.
Read the following passage and answer the questions that follow.
According to these traditions, Siddhartha, as the Buddha was named at birth, was the son of a chief of the Sakya clan. He has a sheltered upbringing within the palace, insulated from the harsh realities of life. One day he persuaded his charioteer to take him into the city. His first journey into the world outside was traumatic. He was deeply anguished when he saw an old man, a sick man and a corpse. He realised in that moment that the decay and destruction of the human body was inevitable. He also saw a homeless mendicant, who, it seemed to him, had come to terms with old age, disease and death, and found peace. Siddhartha decided that he too would adopt the same path. Soon after, he left the palace and set out in search of his own truth.

  1. Who was Siddhartha?
  2. Which truths of life changed the life of Siddhartha?

Answer:
1. Siddhartha, as the Buddha was named at birth, was the son of a chief of the Sakya clan. He has a sheltered upbringing within the palace, insulated from the harsh realities of life.

2. One day Siddhartha went on to a journey into the city with his charioteer. This journey changed the life of Siddhartha. He was deeply anguished when he saw an old man, a sick man and a corpse. He realised in that moment that the decay and destruction of the human body was inevitable. He also saw a homeless mendicant, who, it seemed to him, had come to term with old age, disease and death, and found peace. Siddhartha decided that he too would adopt the same path. Soon after, he left the palace and set out in search of his own truth.

Question 21.
Read the following passage and answer the questions that follow.
Soon there grew a body of disciples of the Buddha and he founded a sangha, an organisation of monks who too became teachers of dhamma. These monks lived simply, possessing only the essential requisites for survival, such as a bowl to receive food once a day from the laity. As they lived on alms, they were known as bhikkhus.
Initially, only men were allowed into the sangha, but later women also came to be admitted. According to Buddhist texts, this was made possible through the mediation of Ananda, one of the Buddha’s dearest disciples, who persuaded him to allow women into the sangha. The Buddha’s foster mother, Mahapajapati Gotami was the first woman to be ordained as a bhikkhuni. Many women who entered the sangha became teachers of dhamma and went on to become theris, or respected women who had attained liberation.

  1. What were the attributes of Buddhist monks?
  2. How did women come to be admitted in sangha? What was the position of women in this sangha?

Answer:
1. The attributes of Buddhist monks are:

  • Buddhist monks were the disciples of the Buddha for whom he founded a sangha.
  • In this organisation, these monks were the teachers of dhamma.
  • These monks lived simply, possessing only the essential requisites for survival, such as a bowl to receive food once a day from the laity.
  • As they lived on alms, they were known as bhikkhus.

2. Women came to be admitted in sangha after the mediation of a disciple of Buddha, Ananda. The Buddha’s foster mother, Mahapajapati Gotami was the first woman to be ordained as a bhikkhuni. Many women who entered the sangha became teachers of dhamma and went on to become theris or respected women who had attained liberation.

Important Questions for Class 12 History

The post Important Questions for Class 12 History Chapter 4 Thinkers, Beliefs and Buildings (Cultural Developments) appeared first on Learn CBSE.

Important Questions for Class 12 History Chapter 5 Through the Eyes of Travellers (Perceptions of Society)

$
0
0

Important Questions for Class 12 History Chapter 5 Through the Eyes of Travellers (Perceptions of Society)

Important Questions for Class 12 History Chapter 5 – 2 Marks Questions

Question 1.
How had Bernier described a complex social reality of the artisans under the Mughals? Give one reason. (HOTS, Delhi 2011)
Answer:
Bernier projected the Mughal state as tyrannical, his descriptions hinted at a more complex social reality. He thought that artisans had no incentive to improve the quality of their manufactures as all the profits were enjoyed by the state.

Question 2.
Mention any two characteristics of the cities in the Indian sub-continent as described by Ibn Battuta. (All India 2011)
Answer:
Ibn Battuta described the cities of the sub-continent and mentioned important features of these as follows:

  1. These cities were densely populated and prosperous.
  2. These cities had crowded streets, bright and colourful markets with a wide variety of goods.

Question 3.
Name the book written by Ibn Battuta. What was his observation about female slaves in the sub-continent? (All India 2008)
Answer:
Ibn Battuta wrote the book named ‘Rihla’.
Ibn Battuta had following observation about the female slaves of Indian sub-continent:

  • The female slaves excelled in music and dance and they were employed in Sultan’s service,
  • They were also employed by the Sultan to keep an eye on his noble’s activities.

Important Questions for Class 12 History Chapter 5 – 4 Marks Questions

Question 4.
Examine the causes that made Al-Biruni visit India. (All India 2017)
Answer:
There are many causes that made Al-Biruni visit in India. These are:

  • Al-Biruni arrived in Ghazni as a hostage by Sultan Mahmud of Ghazni. It was the place where he developed an interest for India.
  • When the Punjab became a part of the Ghaznavid Empire, Al-Biruni travelled widely in the Punjab and parts of northern India.
  • Al-Briuni spent years in the Company of Brahmana priests and scholars, learning Sanskrit and studying religious and philosophical texts. He read the Vedas, the Puranas, the Bhagavad Gita, the works of Patanjali, the Manusmriti, etc to understand Indian society properly.

Question 5.
“India had a unique system of communication during the fourteenth century”. Examine the statement of Ibn Battuta. (All India 2017)
Answer:
Ibn Battuta examined the unique system of communication of India which impressed him very much. He explained:

  • There were two kinds of postal system in India. These were uluq (horse post) and dawa (foot-post).
  • Uluq stationed at a distance of every four miles while the dawa has three stations per mile, means one-third of a mile.
  • The foot-post is quicker than the horse post and often it was used to transport the fruits of Khurasan.
  • Ibn Battuta was also amazed by the efficiency of the postal system which allowed merchants to not only send information and remit credit across long distances, but also to dispatch goods required at short notice.
  • The postal system was so efficient that while it took fifty days to reach Delhi . from Sind, the news reports of spies would reach the sultan through the postal system in just five days. Thus, enabled the ruler to keep a strict watch over the vast empire.

Question 6.
Examine why Bernier described the Mughal .towns as the ‘Camp Towns’. (All India 2017)
Answer:
Bernier described Mughal cities as ‘camp towns’. By camp towns he mean towns that depended for their survival on the imperial court. He believed that these towns came into existence when the imperial court moved in the area and rapidly lost their importance when imperial court moved out. These towns became singificant with the royal patronage, basically they did not have any other social and economic foundations. During Mughal period, 15 per cent of the population lived in these ‘camp towns’ according to Bernier.

Question 7.
State the inherent problems faced by Al-Biruni in the task of understanding Indian social and Brahmanical practices. Mention any two sources that provided him the support. (Delhi 2016)
Answer:
Al-Biruni mentioned several ‘barriers’ that obstructed proper understanding of Indian social and Brahmanical practices. These were:

  • Sanskrit was so different from Arabic and Persian that ideas and concepts could not be translated from one language to another.
  • The second barrier was the difference in religious beliefs and practices.
  • The self-absorption and consequent insularity of the local population constituted the third barrier.

Two sources that provided Al-Biruni support were:

  • Al-Biruni depended exclusively on the Vedas, the Puranas and the Bhagavad Gita.
  • Al-Biruni also mentioned the support from the works of Patanjali and Manusmriti to understand Indian society.

Question 8.
“Bernier’s description of imperial land ownership influenced Western theorists like French philosopher Montesquieu and German Karl Marx.” Justify it with suitable arguments. (Delhi 2013)
Answer:
Bernier asserted that in Mughal empire, the land was owned by the state and hence it led to the decline of agricultural production. It was harmful both for the state and its people.
This description of Bernier influenced the Western theorists from the 18th century onwards in following ways:

‘Oriental Despotism’ Theory by Montesquieu:
Montesquieu further developed Bernier’s idea into oriental despotism. According to it, the rulers in Asia exercised the full authority over their subjects. The subjects were kept in the conditions of subjugation and poverty. All land belonged to the king and private property was non-existent. According to this view, everybody except the king and nobles barely managed to survive.

Karl Marx’s Concept of ‘Asiatic Mode’ of Production:
This idea was further developed as the concept of the Asiatic mode of production by Karl Marx in the 19th century.
He argued that in India and other Asian countries, the surplus was appropriated by the state. He added that this led to the emergence of a society with a large number of autonomous and egalitarian village communities. Marx thought that it was a stagnant system.

Question 9.
Explain Al-Biruni’s description of caste system. (Delhi 2010)
Answer:
Al-Biruni’s description of the caste system was influenced by his study of the Sanskrit texts. These texts written by the Brahmanas and followed the four divisions of varna. Al-Biruni accepted this division. According to him, the Brahmana was created from the head of God, Brahma and regarded as the highest caste of society.

The next caste was Kashatriyas, who were created from the shoulders and hands of Brahma. After them followed the Vaishyas, who were created from the thigh of Brahma. The Shudras were created from the feet of Brahma.
However, as these classes differed from each other, they lived together in the same town and villages, mixed together in the same houses and lodgings. In real life, this system was not quite as rigid.

Important Questions for Class 12 History Chapter 5 – 8 Marks Questions

Question 10.
“Ibn Battuta found Delhi as a city full of exciting opportunities.” Support your answer with evidences given by him. (Delhi 2013)
or
Explain the observations of Ibn Battuta about the cities of India, with special reference to Delhi. (All India 2010)
Answer:
Ibn Battuta arrived at Delhi in the 14th century. His description regarding Indian cities was very informative and helpful to understand the lifestyle of Indians.
He described Indian cities in the following ways:

  • Indian cities were densely populated and prosperous although sometimes these were affected by the wars.
  • Most cities had crowded streets and bright colourful markets with a wide variety of commodities.
  • Delhi with its vast population became the largest city in India. Daulatabad was no less, easily rivalled Delhi in size.
  • The rampart round the city was widely expanded. Inside the rampart, there were houses for the night sentry, gate keepers and store houses.
  • The lower part of the rampart was built of stone and the upper part was of bricks. It had many towers.
  • There were twenty eight gates in Delhi, which were called as ‘Darwazas’. Of these gates, Budaun darwaza, Mandi darwaza, Gul darwaza were very famous.
  • The markets and bazaars of Indian cities were the places of economic transactions and social and cultural activities. Most of the bazaars had a masjid and a temple. These places also had fixed spaces for public performances by dancers, musicians and singers.
  • Ibn Battuta found that many towns derived their wealth and prosperity through the appropriation of surplus from villages.

Question 11.
“The conception of social pollution intrinsic to the caste system was contrary to the law of nature.” Examine Al-Biruni’s statement on Indian caste system. (HOTS, All India 2013)
Answer:
Al-Biruni wrote the voluminous text ‘Kitab-ul-Hind in which he elaborately discussed about the social life of India. According to him, the conception of the pollution intrinsic to the caste system in India was contrary to the law of nature. Al-Biruni tried to explain the caste system by looking for parallels in other societies. He noted that in ancient Persia, four social categories were recognised. These were kings and princes; monks, fire-priests and lawyers; physicians, astronomers and other scientists and peasants and artisans.
He further explained that

Social Divisions not Unique to India:
In other words, he attempted to suggest that social divisions were not unique to India. At the same time, he pointed out that within Islam all men were considered equal, differing only in their observance of piety (deep respect for God).

Rejection of Notion of Pollution: In spite of his acceptance of the Brahmanical description of the caste system, Al-Biruni disapproved the notion of pollution. He remarked that everything which falls into a state of impurity strives and succeeds in regaining its original condition of purity, e.g. the sun cleanses the air, and the salt in the sea prevents the water from becoming polluted. ,

Cycle of Purification Important for Life on Earth: Al-Biruni believed that if there . were no phenomenon of removing impurity, then the life on Earth would have been impossible. Hence, the conception of social pollution intrinsic to the caste system, was according to him, contrary to the laws of nature.

Al-Biruni’s description of caste system was deeply influenced by his study of normative Sanskrit texts, thus he described caste system from the point of view of Brahmanas. But in real life, the caste system was not so rigid.

Question 12.
Explain the views of Bernier about a more complex social reality of the Mughal empire, (All India 2010)
Answer:
Bernier had the following views about the complex social reality of the Mughal empire:

  • Bernier had a belief that the Mughal state was tyrannical.
  • He observed that artisans had no incentives to improve the quality of their manufactures, as the profit was appropriated by the state.
  • The manufacturers were consequently, everywhere in decline.
  • Bernier also pointed out that vast quantities of the world’s precious metals flowed into India, as manufactures were exported in exchange for gold and silver.
  • Bernier noted the existence of a prosperous merchant community engaged in long-distance exchange.
  • Bernier noted that a large portion of land were extremely fertile and the large kingdom of Bengal surpassed Egypt in agricultural production and innumerable articles like, silk, cotton, indigo, etc.
  • He observed that many parts of India were sufficiently populated and the land was well tilled.
  • People were employed in manufacturing carpets, brocades, embroideries, gold and silver cloths and various sorts of silk and cotton goods.
  • There were several kinds of towns in India. These were manufacturing towns, trading towns, port towns, sacred centres, pilgrimage towns, etc.

Different community of people having different professions like mahajans, sheta, nagarsheth, hakim, pundit, wakil, puinters, archittes, musicians, calligraphers were there in Indian society.

Important Questions for Class 12 History Chapter 5 Map Based Question

Question 13.
A Warning for Europe:
Bernier warned that if European kings followed the Mughal model, their kingdoms would be very far from being well-cultivated and peopled, so well built, so rich, so polite and flourishing as we see them. Our kings are otherwise rich and powerful and we must avow that they are much better and more royally served.
They would soon be kings of deserts and solitudes, of beggars and barbarians, such as those whom I have been representing (the Mughals)…. We should find the great cities and the great Burroughs (boroughs) rendered uninhabitable because of ill air and to fall to mine (ruin) without any bodies (anybody) taking care of repairing them; the hillocks abandoned and the fields overspread with bushes or filled with pestilential marishes (marshes), as hath been already intimated.

  1. In what ways did Bernier condemn Mughal rulers?
  2. What contrasts do the account of Bernier and Abul Fazl’s Ain-i-Akbari?
  3. Pride has its fall if power and negligence of duty rules anyone Explain the statement in relevance to the Bernier’s warning. (All India 2016)

Answer:
1. Bernier suggested that one of the fundamental differences between Mughal India and Europe was the lack of private property in India. All the land was owned by the emperor and the nobles. It had disastrous consequences for the economy and society. Bernier criticised this land ownership system.

2. Bernier suggested that the state was the sole owner of land. But this fact was not supported by Abul Fazl in his Ain-i-Akbari. Abul Fazl described the land revenue as “remunerations of sovereignty” that was claimed by the ruler for the protection he provided to them. It was not a rent on land that he owned. Thus, Abul Fazl’s view was totally different from Bernier’s view.

3. Bernier thought that in the Mughal empire the emperor owned all the land and distributed it among his nobles. Thus, Indian society consisted of undifferentiated masses of impoverished people who were subjugated by a small minority of a very rich and powerfid ruling class. This had disastrous result for the economy and society. Bernier described the Mughal emperor as the king of ‘beggars and barbarians’.

Question 14.
The Poor Peasant:
An excerpt from Bernier’s description of the peasantry in the countryside Of the vast tracts of country constituting the empire of Hindustan, many are little more than sand or barren mountains, badly cultivated and thinly populated. Even a considerable portion of the good land remains untilled for want of labourers; many of whom perish in consequence of the bad treatment they experience from Governors. The poor people, when they become incapable of discharging the demands of their rapacious lords, are not only often deprived of the means of subsistence, but are also made to lose their children, who are carried away as slaves.

Thus, it happens that the peasantry, driven to despair by so excessive a tyranny, abandon the country. In this instance, Bernier was participating in contemporary debates in Europe concerning the nature of state and society and intended that his description of Mughal India would serve as a warning to those who did not recognise the ‘merits’ of private property.

  1. Name the book written by Francois Bernier on the critical insight and reflection on the empire of Hindustan.
  2. What description Bernier has given – on the condition of Indian peasantry during the Mughal empire?
  3. Which fundamental differences he found between Mughal India and Europe during 16th and 17th century? (Delhi 2015)

or

  1. How have the tracts of Hindustan been described by Bernier?
  2. Why did the land remain untilled? Explain.
  3. What happens when the poor peasants are unable to fulfil the demands of their landlords? (Delhi 2011)

or

  1. What were the problems about cultivating the land, according to Bernier?
  2. Why did the peasantry abandon the land?
  3. Explain the reasons given by Bernier for the exploitation of the peasants.
  4. How did his observation influence thinkers in Europe? Explain. (All India 2008)

Answer:
1. Francois wrote the book ‘Travel in the Mughal Empire’ on the critical insight and reflection on the empire of • Hindustan.

2. Bernier gave a description of miserable condition of Indian peasantry during Mughal period. Sometimes, the poor peasants were unable to pay the demand of their lords due to bad harvest. They were not only deprived of the means of subsistence, but were also made to lose their children who were carried away as slaves.

3. Bernier was a supporter of private property. He observed that the Mughal emperor owned all the lands and distributed it among his nobles. It led to a disastrous result for economy and society. The lack of private property to the common men was the main difference between the Mughal India and Europe during 16th and 17th century. He opined that ‘There is no middle state in India.’ But on the other hand, none of the Mughal official documents suggested that the state was the sole owner of the land.

or

1. On the vast tract of country constituting the empire of Hindustan, many were little more than sand, or barren mountains that were badly cultivated and densely populated. Even a considerable portion of good land remained untilled due to the lack of labourers.

2. The land remained untilled for want of labourers as many of them perished in consequence of bad treatment they experienced from Governors.

3. The poor people were exploited by the ways at the hands of the officials of the king. When they were incapable of discharging the demands of their greedy landlords, they were deprived of the means of subsistence and were also made to lose their children, who were taken as slaves.

or

1. According to Bernier, the problems about cultivating the land arose due to the following factors:

  • Lands were little more than sand.
  • Lands were in barren mountains.
  • Lands were badly cultivated.
  • Lands were densely populated.

2. The peasantry abandoned the land due to excessive tyranny and bad treatment by the land owners.

3. The poor peasants when they became incapable of discharging the demands of the greedy landlords, were often deprived of the means of subsistence. They were also made to lose their children who were carried away as slaves.

4. Bernier’s description influenced Western theorists from the 18th century onwards. French philosopher Montesquieu used his account to develop the idea of oriental despotism. His idea was further developed as the concept of Asiatic mode of production by Karl Marx in the 19th century.

Question 15.
The Child Sati:
This is perhaps one of the most poignant descriptions by Bernier.
At Lahore, I saw a most beautiful young widow sacrificed, who could not, I think, have been more than twelve years of age.

The poor little creature appeared more dead than alive when she approached the dreadful pit; the agony of her mind cannot be described; she trembled and wept bitterly; but three or four of the Brahmanas, assisted by an old woman who held her under the arm, forced the unwilling victim towards the fatal spot, seated her on the wood, tied her hands, feet, lest, she should run away, and in that situation the innocent creature was burnt alive. I found it difficult to repress my feelings and to prevent their bursting forth into clamorous and unavailing rage….

  1. Why did Bernier consider this treatment as a crucial marker of the difference between Western and Eastern societies?
  2. What role did the Indian patriarchal society play towards this social evil?
  3. Compare the conditions of the women of the era mentioned above to that of today. (All India 2015)

or

  1. How has Bernier described the pratice of Sati?
  2. Describe the feelings of Bernier that he has expressed in the passage.
  3. Explain how Bernier has highlighted the treatment of women as a crucial marker of difference between Western and Eastern societies. (All India 2014)

or

  • Describe what Bernier saw at Lahore.
  • How had the agony of the girl been described?
  • How and why was the girl forced towards the fatal spot? (All India 2011)

Answer:
1. Bernier considered this inhuman custom of Sati in which women were forced to die was the most cruel treatment the women got at that time. This marked a crucial difference between Western and Eastern societies regarding the treatment of women. Western society was free from this social evil but Eastern society was affected with this shameful social evil.

2. The Indian orthodox patriarchal society had no respect and compassion for women. They supported this shameful custom and tried to maintain it.

3. The Sati system was formally banned on 4th December, 1829 by Lord William Bentick. The practice of Sati of burning or burying alive the widows of Hindu was declared illegal and punishable by the criminal courts.
Today the condition of women has changed a lot. Social awareness and education for all brought this change in the condition of women today. Our Constitution has given equal freedom, respect and opportunity for all, irrespective of gender.
or
Answer:

1. Bernier described the practice of Sati in the following ways:

  • He saw a very beautiful young widow aged twelve years only being sacrificed. The poor little girl appeared more dead than alive when she approached the pyre.
  • The young widow trembled and wept bitterly.
  • Three or four Brahmanas and an old woman who hold the widow’ under her arm, forced her towards the pyre, seated her on the wood, tied her hands and feet and the unfortunate girl was burnt alive.

2. Bernier was shocked to see this heinous crime. Really, it was an inhuman system of India in which widows were burnt alive. Bernier found it difficult to repress his emotion, thus he included this incident in his writings. ‘

3. The Sati system was not found in Western society. It was only found in India as a result of patriarchal Brahmanical system. Bernier and other travellers highlighted this barbaric system as a crucial marker of difference in the status of women in Western and Eastern society.
or
Answer:
1. Bernier saw the process of widow sacrifice or sati, in which a twelve year old girl was burnt alive.

2. Bernier described the agony of the girl by indicating that she trembled, wept bitterly but was forced and burnt alive.

3. The girl was forced towards the fatal spot by three or four Brahmans and assisted by an old woman. The girl was forced because she was a widow and was brought there for being burnt alive as a ‘sati’.

Question 16.
Travelling with the Mughal Army:

Bernier often travelled with the army.
This is an excerpt from his description of the army’s march to Kashmir.

I am expected to keep two good Turkoman horses and I also take with me a powerful Persian camel and driver, a groom for my horses, a cook and a servant to go before my horse with a flask of water in his hand, according to the custom of the country.

I am also provided with every useful article, such as a tent of moderate size, a carpet, a portable bed made of four very strong but light canes, a pillow, a mattress, round leather table-clothes used at meals, some few napkins of dyed cloth, three small bags with culinary utensils which are all placed in a large bag and this bag is again carried in a very capacious and strong double sack or net made of leather thongs. This double sack likewise contains the provisions, linen and wearing apparel, both of master and servants.

I have taken care to lay in a stock of excellent rice for five or six days’ consumption of sweet biscuits flavoured with anise (a herb) of limes and sugar. Nor have I forgotten a linen hag with its small iron hook for the purpose of suspending and draining dahi or curds; nothing being considered so refreshing in this country as lemonade and dahi.

  1. Who was Bernier? Give his brief introduction.
  2. What was the purpose of his travel and what was expected of him while going on travel? Describe briefly.
  3. What things would you like to take with you while going on travel and why? Explain. (All India 2012)

Answer:
1. Francois Bernier was a French doctor, political philosopher and historian. He was in India for twelve years from 1656 to 1668. He was closely associated with the Mughal court.

2. Bernier, like many other travellers came to the Mughal empire to seek opportunities. He was closely associated with the Mughal court and became a physician to Prince Dara Shukoh. Later he was appointed as an intellectual and scientist in Mughal court.
At the time of going on travel, Bernier was expected to have two good Turkoman horses, a strong Persian camel and driver, a groom for horses, a cook and a servant alongwith all articles of daily needs.

3. While going on travel, I would prefer to have all the necessary articles like medicines, food, clothes, etc which make my travel secured and comfortable. I also keep some important contact numbers which will be helpful in case, I face any unwanted situation during my travel. Finally, I must not forget to take my plastic money i.e. debit and credit cards while travelling.

Important Questions for Class 12 History Chapter 5 Value Based Questions

Question 17.
Read the following passage and answer the question that follows.
Contemporary European travellers and writers often highlighted the treatment of women as a crucial marker of difference between Western and Eastern societies. Not surprisingly, Bernier chose the practice of sati, some women seemed to embrace death cheerfully, others were forced to die.

However, women’s lives revolved around much else besides the practice of sati. Their labour was crucial in both agricultural and non-agricultural production. Women from merchant families even taking mercantile disputes to the court of law. It therefore seems unlikely that women were confined to the private spaces of their homes.

1. With the help of travellers and writers accounts, highlight the different conditions of women in which they were treated?
Answer:
1. According to travellers and writers accounts, the conditions of women were different in many places such as

  • In the sub-continent, social inequality persisted and women were considered a sort of thing kept inside the homes.
  • Women were treated as an inferior article. Some women slaves used to entertain the Sultans in their service like by music and dance performances and also worked as a sky to keep a watch on their nobles.
  • The discrimination between genders
    is apparent from this point that the price of female slaves was very low as compared to thier male counterparts.
  • Besides, the practice of sati made the condition of women more worse. Some seemed to embrace death cheerfully but who refused was forced to die.
  • Some women also worked in agricultural fields and non-agricultural production.
  • In merchant class, the situation Was very different. Women actively participated in commercial activities.

Thus, it is not appropriate to say that women were only confined to the private space of their homes in the sub-continent.

Question 18.

  1. Explain the unique system of communication in India which amazed Ibn Battuta with special reference to the postal system.
  2. How far this postal system is relevant in contemporary India? (All India 2008)

Answer:

1. Ibn Battuta was quite impressed by the communication system in India. The state took special measures by providing inns and guest houses in all trading centres. The advanced postal system allowed merchants to send information and remit credit across long distances and also to dispatch goods required at short notice. The postal system was of two types:

  • The horse-post called uluq.
  • The foot-post called dawa.

2. This postal system is quite relevant in contemporary India as it is a symbol of all round and holistic progress. Letters and different objects i.e. parcels still today are delivered manually

Important Questions for Class 12 History

The post Important Questions for Class 12 History Chapter 5 Through the Eyes of Travellers (Perceptions of Society) appeared first on Learn CBSE.

Important Questions for Class 12 History Chapter 6 Bhakti-Sufi Traditions (Changes in Religious Beliefs and Devotional Texts)

$
0
0

Important Questions for Class 12 History Chapter 6 Bhakti-Sufi Traditions (Changes in Religious Beliefs and Devotional Texts)

Important Questions for Class 12 History Chapter 6 – 2 Marks Questions

Question 1.
Point out one similarity and dissimilarity between Lingayats and Nayanars. (HOTS; Delhi 2016)
Answer:
Similarity Both Lingayats and Nayanars protested against caste system and the dominance of Brahmanas.
The Alvars were devotees of Vishnu, whereas the Nayanars were devotees of Shiva.

Question 2.
Point out any two similarities between the philosophy of Kabir and Guru Nanak Dev. (Delhi Z016)
Answer:
Two similarities between philosophy of Kabir and Guru Nanak Dev are:

  • Both Kabir and Guru Nanak Dev advocated a form of Nirguna Bhakti.
  • Both Kabir and Guru Nanak Dev rejected idol worship, also rejected sacrifices and ritual baths.

Question 3.
Point out one difference and one similarity between Be-Shari’a and Ba-Shari’a Sufi traditions. (HOTS; Delhi 2016)
Answer:
Difference The Ba-Shari’a traditions followed Shari’a i.e. the Islamic law.
However, the Be-Shari’a were not bound by it.
Similarity They both ignored rituals and observed extreme forms of asceticism.

Question 4.
Mention any two sources to know about Bhakti and Sufi traditions from 8th century to 18th century. (All India 2016)
Answer:
Sources are as follows:

  • Textual sources were available to know about Bhakti and Sufi traditions from 8th century to 18th century. These textual sources included composition attributed to poet saints. Most of them expressed themselves orally in regional languages used by common man.
  • Historians also got information from the biographies of saints written by their followers.

Question 5.
How did Karaikkal Ammaiyar become the greatest figure of Nayanar tradition? Explain. (All India 2016)
Answer:
Karaikkal Ammaiyar was a devotee of Shiva. She adopted the path of extreme asceticism in order to attain her goal. Her composition was a challenge to patriarchal norms of the society and it was preserved with the Nayanar tradition. In this way, she became the greatest figure of Nayanar’s philosophy.

Question 6.
Name the major anthology compiled by the Alvars which is also described as the Tamil Veda. How did various chiefdoms in the Tamil region help them in the early first millennium CE? (Delhi 2015)
Answer:
Nalayira Divyaprabandham complied by the Alvars is also described as the Tamil Veda. There were several important chiefdoms in the Tamil region in the early first millennium CE. Rulers like Pallavas, Pandyas, Cholas were patron of Brahmanical and bhakti traditions, making land grants and constructing temples. Chola rulers were the patrons to Shiva temples in Chidambaram, Thanjavur and Gangaikonda Cholapuram.

Question 7.
The Lingayats disapproved certain practices of the Dharmashashtras. Give two examples. (All India 2015)
or
Mention the two ideas of Brahmanical system challenged by the Lingayats. (Delhi 2012)
Answer:
Followers of Basavanna were known as Virashaivas or Lingayats. They challenged the Brahmanical system in the following ways:

  • They challenged the idea of caste and the ‘pollution’ attributed to certain groups by Brahmanas.
  • They questioned the theory of rebirth.

Question 8.
‘The Message of Guru Nanak Devji was based on divinity’. Mention any two aspects of it. (All India 2015)
Answer:
The message of Guru Nanak Devji was based on divinity. Two aspects of it are:

  1. Absolute or ‘rab’ had no gender or form.
  2. He proposed a simple way to connect to the divine by remembering and repeating the divine name.

Question 9.
Kabir Bijak and Kabir Granthavali are the two distinct but overlapping traditions. How are they preserved? (All India 2015)
Answer:
Both the traditions are preserved in the following ways:

  • The Kabir Bijak is preserved by the Kabir panth (the path or sect of Kabir) in Varanasi and elsewhere in Uttar Pradesh.
  • The’Kabir Granthavali is associated with the Dadupanth in Rajasthan.

Question 10.
By the 11th century Sufism evolved into a well developed movement. Give two examples. (Delhi 2014)
Answer:
By the eleventh century, Sufism evolved into a well developed movement in the following ways:

  • It developed a body of literature on Quranic studies and Sufi practices.
  • The Sufis began to organise communities around the hospice or Khanqah and it was controlled by a teaching master known as Shaikh, Pir or Murshid.

Question 11.
Who were Alvars and Nayanars?
Mention the support they got from the Chola rulers. (All India 2014)
Answer:
Alvars: Alvars were those people who immersed themselves in devotion to Vishnu.
Nayanars Nayanars were the devotees of Shiva. They initiated the early Bhakti Movement during the 6th century CE.

Support from Chola Rulers Alvars and Nayanars got support from the Chola rulers in the form of land grants for the construction of splendid temples with stone and metals sculpture to recreate the visions of these popular saints who sang in the language of people.

Question 12.
Explain the meaning of Sufi Silsila. (All India 2012)
Answer:
Sufi Silsila began to flourish in different parts of Islamic world around the 12th century. The literal meaning of Silsila was a chain, signifying a continuous link between master and disciple. It stretched as an unbroken spiritual lineage to the prophet Muhammad. It was through this channel that spiritual power and blessings were transmitted to devotees. Special rituals for initiation were followed, e.g. taking an oath of allegiance, wearing a patched garment and shaving the hair.

Question 13.
Why do thousands of devotees visit dargahs of Muslim saint? (Delhi 2008)
Answer:
Pilgrimage, called Ziyarat to the tombs of Sufi saints is very common all over the Muslim world. For more than seven centuries people of various creeds, classes and social backgrounds have travelled to the dargahs of the five great chisthi saints and expressed their devotions. This practice is an occasion for seeking the sufi’s spiritual grace (barakat).

Important Questions for Class 12 History Chapter 6 – 4 Marks Questions

Question 14.
Explain the features of Islamic religion which contributed to its spread through the sub-continent. Delhi 2013
Answer:
The development of Islam was not restricted to ruling aristocrats, actually it spread far and wide, through the sub-continent, amongst various social strata i.e. peasants, artisans, warriors, merchants, etc.

All those who adopted Islam accepted the five pillars of this religion. These are:

  1. There is one God, Allah and Prophet Muhammad is his messenger (Shahada).
  2. Offering prayers five times a day (namaz/salat).
  3. Giving alms (Zakat).
  4. Fasting during the month of Ramzan (Sawm).
  5. Performing the pilgrimage to Mecca (hajj)

The universal features were often overlaid with diversities in practice derived from affiliations (Sunni, Shia) and local customary practices to convert from different social backgrounds. For example, Arab Muslim traders adopted local customs such, as matriliny and matrilocal residence. There was also difference in the architecture of mosque due to the change of regions.

Question 15.
“The Lingayats challenged the idea of caste and the ‘pollution’ attributed to certain groups by Brahmanas,” Critically examine the statement. (HOTS; Compartment 2013)
Answer:
The Lingayats or Virshaivas emerged in the 12th century in Karnataka under the leadership of Basavanna. They worshipped Shiva in his manifestation as a linga and usually wore a small linga in a silver case on a loop strung over their left shoulder.

They believed that on death the devotee would be united with Shiva and would not return to this world. They challenged some important ideas given in our dharmashastras.
The Lingayats challenged the idea of caste and the ‘pollution’ attributed to certain groups by Brahmanas. They did not accept the theory of rebirth. They did not follow the varna system in our society given by the Brahmanas. These won the large number of followers among the marginalised section of the society.

Moreover, the Lingayats encouraged certain practices like post-puberty marriage and the remarriage of widows. Our dharmashastras disapproved these practices. Even the Lingayats did not practise funerary rites such as cremation, prescribed in the dharmashastras. They ceremonially buried their dead.

In this way the lingayats rejected the caste system and other practices followed in our society given by the Brahmanical scriptures.

Question 16.
Mention any two universal architectural features of Mosque. (Delhi 2010)
Answer:
Mosque is regarded as the basis of Islamic religious life. It has an open compound and pillars on all sides. The roof stands on all these pillars. In the middle of the compound, there is a pond, which is artificially made. Here, devotees can take bath or wash themselves before offering Namaz.
Some special architectural features of Mosque are:

  • Mosque has orientation towards Mecca. It makes evident in the placement of the milirab (prayer niche) and the minbar (pulpit).
  • Mosque blends a universal faith with local traditions. In Kerala, we find the shikhara like roof and in Bangladesh, we find dome like roof. In Kashmir we find the Shah Hamadan mosque which is the best example of Kashmiri wooden architecture, decorated with paper mache.

Important Questions for Class 12 History Chapter 6 – 8 Marks Questions

Question 17.
Identify the relationship between the Sufis and the state from the eighth to the eighteenth century. All India 2017
Answer:
A major feature of the Chishti tradition was austerity, including maintaining a distance from worldly power. However, this was by no mean a situation of absolute isolation from political power.
The sufis accepted unsolicited grants and donations from the political elites. The Sultans in turn set up charitable trusts (auqaf) as endowments for hospices and granted tax-free land (inam).

The Chishtis accepted donations in cash and kind. Rather than accumulate donations, they preferred to use these fully on immediate requirements such as food, clothes, living quarters and ritual necessities (such as sama). All this enhanced the moral authority of the shaikhs, which in turn attracted people from all walks of life.

Further, their piety and scholarship, and people’s belief in their miraculous powers made sufis popular among the masses, whose support kings wished to secure.

Kings did not simply need to demonstrate their association with sufis; they also required legitimation from them. When the Turks set up the Delhi Sultanate, they resisted the insistence of the ulama on imposing shari’a as state law because they anticipated opposition from their subjects, the majority of whom were non-Muslims. The Sultans wanted their tombs to be in the vicinity of sufi shrines and hospices.

However, there were instances of conflict between the Sultans and the sufis. To assert their authority, both expected that certain rituals be performed such as prostration and kissing of the feet. Occasionally the sufi shaikh was addressed with high-sounding titles. For example, the disciples of Nizamuddin Auliya addressed him as Sultan-ul-Mashaikh (literally, Sultan amongst Shaikhs).

Other sufis such as the Suhrawardi under the Delhi Sultans and the Naqshbandi under the Mughals were also associated with the state. However, the modes of their association were not the same as those of the Chishtis. In some cases, sufis accepted courtly offices.

Question 18.
Identify the relationship of the Alvars and Nayanars of Tamil Nadu with the state from the eighth to the eighteenth century. (All India 2017)
Answer:
The realtionship of the Alvars and Nayanars of Tamil Nadu with the state is discussed below:

  • Some of the earliest bhakti movements were led by the Alvars (literally, those who were immersed in devotion to Vishnu) and Nayanars (who were devotees of Shiva).
  • They preached their message in Tamil. During their travel they identified certain shrines as abodes of their chosen deities. And these were developed as centres of pilgrimage.
  • One of the major themes in Tamil bhakti hymns was the poet’s opposition to Buddhism and Jainism. The main reason for this opposition was competition between members of other religious traditions for royal patronage.
  • The Chola rulers (ninth to thirteenth centuries) supported Brahmanical and Bhakti traditions, making land grants and constructing temples for Vishnu and Shiva.
  • The Chola rulers constructed many Shiva temples e.g. Chidambram, Thanjavur and
    Gangaikandacholapuram. They done this to proclaim their own power and status.
  • This was also the period when some of the most spectacular representations of Shiva in bronze scuplture were produced.
  • Both Nayanars and Alvars were revered (admire) by the Vellala peasants. Not surprisingly rulers tried to win their support as well.

Thus, are can say that the Chola rulers had intimate relations with the both Alvars and Nayanars as they had much honour and status in the society.

Question 19.
Explain the teachings of Kabir. How did he describe the ultimate reality through his poems? (Delhi 2010)
or
Explain the significance of Kabir’s poems and the traditions he drew to describe the ultimate reality. (All India 2009)
Answer:
The historians tried to reconstruct Kabir’s life and timings through a study of compositions attributed to him and later hagiographies.

Verses ascribed to Kabir have been compiled in three distinct traditions, viz, Kabir Bijak, Kabir Granthavali and Adi Granth Sahib. All these compilations were made long after the death of Kabir. Kabir’s poems have survived in several languages and dialects.

The significance of Kabir’s poems is as follows:

Source of Inspiration:
Kabir’s poems have been a source of inspiration to those who questioned rigid and unrooted social institutions, ideas and practices in search of God.
Taken from both Hinduism and Islam:
The significance of Kabir’s poem also lies in the fact that his teachings were inspired by both Hinduism and Islam which sometimes expressed diverse and conflicting ideas. For instance, some poems imbibed Islamic ideas and used monotheism and attacked Hindu polytheism and idol worship while others used the Sufi concept of zikr and ishq to express the Hindu practice of nam-simaran i.e. remembrance of God’s name.
Kabir’s ideas crystallised through dialogue and debate and his legacy was claimed by several groups. The traditions, he drew to describe ultimate reality through his poems are:
Islamic Traditions:
He described the ultimate reality as Allah, Khuda, Hazrat and Pir.
Vedantic Tradition:
He used the terms Alakh (Unseen), Nirakar (Formless), Brahman, Atman, etc to describe the ultimate reality.
Yogic Tradition:
Other terms with mystical connotations such as shabda (sound) or Shunya (emptiness) were drawn from yogic tradition.

Question 20.
Explain how the biography of the saint poetess Mirabai has been primarily constructed. How did she defy the norms of society? (HOTS; All India 2010)
Answer:
Reconstruction of Mirabai’s: Biography The reconstruction of biographies of Mirabai has been done from the bhajans composed by herself (transmitted orally for centuries).
Royal affiliations of Mirabai From the bhajans it has been reconstructed that she was a Rajput princess from Merta in Marwar. She was married to a prince of the Sisodia clan of Mewar, Rajasthan, which had been done against her wishes so she defied her husband. She even refused to submit to the traditional role of wife and mother.

Recognition of Krishna as lover: She recognised Krishna, the incarnation of Vishnu, as her lover. Because of her behaviour, her in-laws once tried to poison her, but she managed to escape the in-laws home and preferred to live as a wandering saint and composing the songs of bhakti and love for the Krishna. Her compositions are known for intense expression of her emotion.

Defiance of social barriers: In some traditions, Mirabai has been mentioned as a disciple of Raidas, a leather worker. It indicates that she did not recognise the bonds of caste system and the practices of the society. For her intense love of Krishna, she rejected all the comforts of her husband’s palace and donned the saffron robe of the renouncer or the white robe of widow.

Popular source of inspiration: Mirabai, now-a-days recognised as the source of inspiration instead of attracting a sect or group of followers. Still she and her songs are popular among the poor or ‘low caste’ population in the State of Gujarat and Rajasthan.

Important Questions for Class 12 History Chapter 6 Source Based Questions

Question 21.
The One Lord:
Here is a composition attributed to Kabir Tell me, brother, how can there be No one lord of the world but two?
Who led you so astray?
God is called by many names.
Names like Allah, Ram, Karim, Keshav, Hari and Hazrat. Gold may be shaped into rings and bangles. Isn’t it gold all the same? Distinctions are only in words that we invent.

Kabir says they are both mistaken. Neither can find the only Ram. One kills the goat, the other cows. They waste their lives in disputation.

  1. Name any two scriptures, in which verses, ascribed to Kabir, have been complied.
  2. How did Kabir describe the ‘Ultimate Reality’?
  3. Explain the arguments give by Kabir against the lords of the world of different communities.
  4. Do you agree with Kabir? Give your own views as well. Delhi 2012

Answer:
1. The two scriptures in which verses of Kabir are found are:
(a) Kabir Bijak
(b) Kabir Granthavali

2. Kabir described the ‘Ultimate Reality’ by drawing the ranges of traditions such as from Islam, he had drawn the Ultimate Reality as Allah, Khuda, Hazrat and Pir. Several terms from the vedantic traditions, such as Alakh, Nirakar, Brahmana, Atman were also taken.

3. Kabir used monotheism and iconoclasm to attack Hindu polytheism and idol worship and said God is one. God is the ultimate reality and one lord of the world, although he is known by several names.

4. Yes, I agree with Kabir’s view. The God is only one inspite of having several names. We the people of different religions worship him differently, but God is the ultimate reality and he is one.

Question 22.
A Church in Khambat:
This is an excerpt from a farman (imperial order) issued by Akbar in 1598. Whereas it reached our eminent and holy notice that the padris (fathers) of the Holy Society of Jesus wish to build a house of prayer (Church) in the city of Kambayat (Khambat, in Gujarat); therefore an exalted mandate… is being issued… that the dignitaries of the city of Kambayat should in no case stand in their way but should allow them to build a Church so that they may engage themselves in their own worship. It is necessary that the order of the Emperor should be obeyed in every way.

  1. What did the padris want to do?
  2. How did Akbar ensure that their desire was fulfilled?
  3. Who guided the Muslim rulers?
  4. How was the situation complicated in the sub-continent and how did the rulers adopt to this situation?
    (Delhi 200B)

Answer:
1. The padris (fathers) of the Holy Society of Jesus wanted to build a house of prayer i.e. church in the city of Khambat, in Gujarat.

2. Akbar issued an exalted mandate. It contained that the dignitaries of the city of Khambat should not create any hindrance to the making of churches. But they should allow the padris to build a church, so that they would follow their own religion.

3.Theoretically, Muslim rulers were to be guided by the ulama. The ulaina were expected to ensure that they ruled according to the Shari’a.

4. The situation in the sub-continent became complicated, as there were enough population outside Islam. So the category of Zimmi meaning protected was developed by the Muslim rulers for Jews, Christians, Hindus and other non-Muslims who lived under Muslim leadership.

They all had to pay a tax called ‘Jizya’ and gained the right to be protected by the Muslim leaders. In India, Mughal rulers regarded themselves as emperor of not just Muslims but of all peoples. Several Mughal rulers like Akbar and Aurangzeb gave land endowments and granted tax exemption to other, religious institutions and expressed respect and devotion towards non-Muslim religious leaders.

Important Questions for Class 12 History Chapter 6 Value Based Questions

Question 23.

  1. Explain the teachings of Guru Nanak.
  2. Did he wish to establish a new religion? Delhi 2009

Answer:
1. We can understand his message which were spelt out in his teachings and hymns called Shabad in Punjabi. The teachings of Baba Guru Nanak are as follows

  • Nanak repudiated the external practices of the existing religions.
  • He advocated the specific form of bhakti i.e. Nirguna bhakti.
  • He rejected the sacrifices, ritual baths, image worship, austerities and scriptures of both Hindus and Muslims.
  • According to him, the absolute or ‘rab’ had no gender or any specific form.
  • There is only a simple way to connect to the divine by remembering and repeating the divine name.
  • He sang his compositions in various ragas while his disciple, Mardana played the rabab.

2. Guru Nanak Dev did not wish to establish a new religion. He organised his followers into a community. He set up rules for congregational worship (sangat) involving collective recitation. He appointed his disciple Angad as the preceptor (guru) after him. After the death of Guru Nanak Dev, his followers consolidated their own practices and distinguished themselves from both Hindus and Muslims. The practice of selecting Guru was followed for nearly 200 years by his followers.

Question 24.
Read the following passage and answer the questions that follow. Historians who have tried to understand these developments suggest that there were at least two processes at work. One was a process of disseminating Brahmanical ideas. This is exemplified by the composition, compilation and preservation of Puranic texts in simple Sanskrit verse, explicitly meant to be accessible to women and Shudras, who were generally excluded from Vedic learning. At the same time, there was a second process at work that of the Brahmanas accepting and reworking the beliefs and practices of these and other social categories. In fact, many beliefs and practices were shaped through a continuous dialogue between what sociologists have described as “great” Sanskritic Puranic traditions and “little” traditions throughout the land.

  1. Why were shudras and women excluded from vedic learning in vedic period?
  2. According to historians what was the second process of integration of cults?

Answer:
1. In Vedic period women and Shudras were generally excluded from Vedic learning because women was treated like a thing which was kept at home only and not allowed to go outside and get education. Thus, prohibited from learning Vedas.
In the same way due to Varna system Shudras treated as the lowest caste and were consider to do only polluted jobs. Thus, prohibited to learn Vedas.

2. In the second process of integration of cults the Brahmanas accept and rework on the beliefs and practies of women and Shudras and other social categories.

Question 25.
Read the following passage and answer the questions that follow.
Some historians suggest that the Alvars and Nayanars initiated a movement of protest against the caste system and the dominance of Brahmanas or atleast attempted to reform the system. To some extent this is corroborated by the fact that Bhaktas hailed from diverse social backgrounds ranging from Brahmanas to artisans and cultivators and even from castes considered “untouchable”.

The importance of the traditions of the Alvars and Nayanars was sometimes indicated by the claim that their compositions were as important as the Vedas. For instance, one of the major anthologies of compositions by the Alvars, the Nalayira Divyaprabandham, was frequently described as the Tamil Veda, thus claiming that the text was as significant as the four Vedas in Sanskrit that were cherished by the Brahmanas.

  1. What was the attitude of Alvars and Nayanars towards caste system?
  2. Give an example which indicates that the composition of Alvars was as significant as Vedas of Brahmanas?

Answer:
1. According to some scholars both Alvars and Nayanars were opposed to caste system made by the Brahmanas. In this regard, they initiated a movement to protest against the caste system and the dominance of Brahmanas or at least attempted to reform the system. By these efforts, people from various social backgrounds joined the movement, ranging from Brahmanas to artisans and cultivators and even from the castes considered ‘untouchable’.

2. The importance of the traditions of the Alvars and Nayanars was sometimes indicated by the claim that their compositions were as important as the Vedas. For instance, one of the major anthologies of compositions by the Alvars, the Nalayira Divyaprabandham, was frequently described as the Tamil Veda, thus claiming that the text was as significant as the four Vedas in Sanskrit that were cherished by the Brahmanas:

Important Questions for Class 12 History

The post Important Questions for Class 12 History Chapter 6 Bhakti-Sufi Traditions (Changes in Religious Beliefs and Devotional Texts) appeared first on Learn CBSE.

Important Questions for Class 12 History Chapter 8 Peasants, Zamindars and the State (Agrarian Society and the Mughal Empire)

$
0
0

Important Questions for Class 12 History Chapter 8 Peasants, Zamindars and the State (Agrarian Society and the Mughal Empire)

Important Questions for Class 12 History Chapter 8 – 2 Marks Questions

Question 1.
Mention any two steps taken by the Mughals to create the revenue as an administrative apparatus. (All India 2013)
Answer:
The Mughal created the revenue as an administrative apparatus in the following ways:

  • The office (daftar) of the diwan was responsible for supervising the fiscal system of the empire.
  • The revenue officials and record keepers penetrated the agricultural domain and became decisive agent in shaping agrarian relations.

Question 2.
Write two functions of Jati Panehayat in the 16th and 17th centuries. (Delhi 2008)
Answer:
Following are the two major functions of Jati Panchayat:

  • They decided land disputes, and decided whether marriage were being performed according to the norms laid down by caste.
  • Jati Panchayats decided civil cases between members of different castes.

Quesiton 3.
Why were women considered as an important resource in agrarian society? Mention two reasons. (HOTS; Delhi 2009)
Answer:
Women were considered as an important resource in the agrarian society due to the following reasons:

  • Women were child bearers in agrarian society which was dependent on labour.
  • Artisanal tasks such as spinning yarn, sifting and kneading clay for pottery, and embroidery were among the many aspects of production dependent on female labour.

Question 4.
Mention the major crop of Western India during 17th century. How did it come to India. (All India 2010)
Answer:
Maize was the major crop of Western India. It come into India via Africa and Spain and by the 17th century it was being listed as one of the major crops of Western India.

Important Questions for Class 12 History Chapter 8 – 4 Marks Questions

Quesiton 5.
Describe the life of forest dwellers in the Mughal Era. (All India 2015)
or
Describe the life led by the forest dwellers during the Mughal Era in 16th-17th centuries. (Delhi 2014)
Answer:
The life of the forest dwellers during the Mughal Era in 16th-17th centuries can be described in the following ways:

  • Forests dwellers were termed as Jangli, but it did not mean an absence of ‘civilisation’.
  • The term ‘Jangli’ rather described those whose livelihood came from the gathering of forest products, hunting and shifting agriculture.
  •  Their activities were mainly season specific. For example, among the Bhils spring was reserved for collecting forest produce, summer for fishing, the monsoon months for cultivation and autumn and winter for hunting.
  • For the state, the forest became a subversive place i.e. a place of refuge for troublemakers.
  • Forest dwellers supplied elephants for the army.
  • In the Mughal period regular hunting expeditions to the forests, often enabled the king to attend personally to the grievances of its inhabitants. ,

Question 6.
How were the subsistence and commercial production closely interwined in an average peasant’s holding during the Mughal period in 16th and 17th centuries? Explain. (HOTS; All India 2014)
Answer:
The agriculture in medieval India was not only for subsistence. The term jins-i-kamil or perfect crops was found in the sources. The subsistence and commercial production were interwined in an average peasant’s holding in the following ways:

  • The Mughal state encouraged peasants to produce commercial crops like cotton and sugar for more revenue. These two crops were jins-i-kamil par excellence.
  • Cotton was grown over a vast territory, spreading over central India and the Deccan plateau. Bengal was famous for its sugar production.
  • Other cash crops included various sorts of oilseeds (mustard) and lentils.
  • Many new crops from the different parts of the world reached India. These were maize, tomatoes, potatoes, chillies, pineapple and papaya. It clearly shows that subsistence and commercial production were closely intertwined.

Question 7.
Describe three factors that accounted for the constant expansion of agriculture during 16th and 17th centuries.
(Delhi 2012, 2010)
Answer:
During the 16th and 17th centuries about 85 percent of the population of India lived in villages and agriculture was the main. profession of people. The factors which were responsible for the expansion of agriculture can be explained in the following ways:

The Abundance of Land: The cultivating peasants (asamis) i.e. plough up the fields, marked the limit of each field for identification and demarcation with borders of earth, brick and thorn. There was abundance of land for agriculture.

Availability of labour during Mughal Regime: There was much labour available for the purpose of agriculture, mobility of peasants, which would help in continuous expansion of agricultural land as it increased cultivable land.

Artificial System of Irrigation: Monsoons remained the backbone of Indian agriculture as they are even today. But there were crops which required additional water. Artificial system of irrigation had to be devised for this. Irrigation projects received state support as well. For example e.g. in Northern India, the state undertook digging of new canals and also repaired the old canals.

Question 8.
Describe the condition of an average peasant of North India during the 17th century. (All India 2012)
Answer:
In the Mughal period raiyat, muzarian, kisan or asami were the terms to denote a peasant.
Condition of peasants in North India during 17th century was as follows:

  • Overall condition was very ordinary, they had to face economic distress after a femine.
  • They had hardly one pair of bullocks and two ploughs. However, most of them even had less than these. In Gujarat, peasants possessing about 6 acre of land were considered to be affluent. In Bengal, 5 acre was the upper limit of an average peasant farm and 10 acres would make a peasant a rich asami.
  • Cultivation was based on the principle of individual ownership. Lands of peasants were bought and sold in same way as the lands of other property owners.
  • There existed two kinds of peasants: Khud-Kashta They were residents of village in which they had their lands. Pahi-Kashta They were non-resident cultivators, meaning, resident of other village and cultivated in other village. People became Pahi-Kashta either out of a choice (e.g. when terms of revenue were more favourable in other village) or out of compulsion (e.g. forced by economic distress after a famine).

Question 9.
Why were the Jati Panchayats formed during 16th and 17th centuries? Explain their functions and authority. (All India 2011)
Answer:
The Jati Panchayats were formed during 16th and 17th centuries due to the following reasons:
1. The decision of the Panchayat in conflicts between Tower-caste’ peasants and state officials or the local zamindar could vary from case to case.

2. Archival records from Western India-notably Rajasthan and Maharashtra contain petitions presented to the Panchayat complaining about extortionate taxation or the demand for unpaid labour (begar) imposed by the ‘superior’ castes or officials of the state. These included excessive tax demands which, especially in times of drought or other disasters, endangered the peasant’s subsistence.

Thus, Jati Panchayats came into existence. Authorities and functions of Jati Panchayats are as follow:

  • These Panchayats wielded considerable power in rural society. In Rajasthan Jati Panchayats arbitrated civil disputes between members of different castes.
  • They mediated in contested claims on land.
  • They decided whether marriages were performed according to the norms laid down by a particular caste group.
  • They also determined who had ritual precedence in village functions, and so on.
  • In most cases, except in matters of criminal justice, the state respected the decisions of Jati Panchayats.

Question 10.
Explain why Ain-i Akbari remains an extraordinary document of its times even today. (Delhi 2008)
Answer:
Ain – i Akbari written by Abu’l Fazl remains an extraordinary document of Mughal period even today.

The following are the reasons:
1. It is the third book of Akbar Nama. The Ain is made up of five books, of which the first three books describe the administration, the fourth and fifth books deal with religious, literary cultural tradition and a collection of Akbar’s auspicious sayings. It provided a fascinating glimpses into the structure and organisation of the Mughal empire.

2. It gave us ‘quantitative’ information about its products and people. The value of the Ain’s quantitative evidence is uncontested, where the study of agrarian relations is concerned. Abu’l Fazl adopted completely different stand point from the traditional writers of chronicles by recording the information about the country, its people and products. It contained people, their professions and trades on the imperial establishment and the grandness of the empire. It enables historians to reconstruct the social fabric of India at that time.

Question 11.
Describe the results of India’s overseas trade under the Mughals. (All India 2008)
Answer:
The Mughal Empire was considered as one of the largest territorial empires in Asia which consolidated power and resources during the 16th and 17th centuries. India’s overseas trade under the Mughals flourished due to the following reasons:

  • The political stability achieved by the Ming (China) empire, Salavid (Iran) empire and Ottoman (Turkey) empire helped to create vibrant networks of overland trade from China to the Mediterranean Sea.
  • Voyages of discovery’ and the opening up of the New World resulted in a large expansion of Asia’s, particularly India’s trade with Europe. It led to a greater geographical diversity of India’s overseas trade. An expansion in the commodity composition of this trade also developed.
  • An expanding trade brought in huge amounts of silver bullion to India which was good for India as it did not have natural resources of silver.
  • The 16th and 18th century saw a remarkable stability in the availability of silver currency (Rupya) in India.
  • It facilitated a large scale expansion of minting coins and circulation of money which helped Mughal state to extract taxes and revenue in cash.

Important Questions for Class 12 History Chapter 8 – 8 Marks Questions

Question 12.
“There was more to rural India than the sedentary agriculture”. Explain the statement in the context of Mughal period. (Delhi 2016)
Answer:
There was more to rural India than the sedentary agriculture. Apart from . intensively cultivated land, there were dense forests or scrubland all over Eastern India, Central India, Northern India, Jharkhand and in Peninsular India down the Western Ghats and the Deccan plateau. The life of the forest dwellers justify the above statement in the following ways:

  • Forest dwellers were termed as ‘Jangli’ which did not mean an absence of civilisation.
  • The livelihood of forest dwellers included the gathering of forest produce, hunting and shifting agriculture.
  • The livelihood of the forest dwellers were largely season specific. For e.g. among the Bhil tribes, spring season was reserved for collecting forest produce, summer for fishing, the monsoon months for cultivation, and autumn and winter for hunting.
  • For the state, the forest was regarded as a subversive place i.e. a place of refuge for troublemakers.
  • The state required elephants for army. Thus, forest people supplied elephants.
  • In the Mughal period, hunting ensured justice to all its subjects, rich and poor. Regular hunting expeditions enabled the emperor to travel extensively and attend grievances of its inhabitants. These were the observations found in Ain-i Akbari.
  • New cultural influences also began to penetrate into forested zones. Sufi-saints played a major role in the slow acceptance of Islam among agricultural communities in newly colonised places.

Question 13.
Inspite of the limitations, the Ain-i Akbari remains an extraordinary document of its time. Explain the statement. (HOTS; Delhi 2016)
Answer:
The major sources for the agrarian history of the 16th and early 17th centuries are chronicles and documents from the Mughal court.

One of the most important chronicles was the Ain-i Akbari. Ain was authored by Akbar’s court historian Abu’l Fazl. This text meticulously recorded the arrangements made by the state to ensure cultivation to enable the collection of revenue by the agencies of the state and to regulate the relationship between the state and the zamindars.
Ain-i Akbari was not a mere reproduction of official papers. Abu’l Fazl had worked very carefully to search the authenticity of the documents. He tried to cross-check and verify oral testimonies before incorporating them as facts in the chronicle.

This was why that the text achieved its final form only after having gone through five . revisions. But there are some problems in using the Ain-i Akbari as a source for reconstructing agrarian history of that period. These are:

  • We should realise that the Ain-i-Akbari was penned under patronship of the emperor. It was a part of larger royal project of history writing. Its main objective was to depict the Mughal empire under Akbar in such a way as to prove that social harmony was provided by a strong ruling class in the empire.
  • The totalling given in the Ain-i Akbari are not thoroughly accurate. We find numerous errors in the totalling.
  • Another problem while using the Ain-i Akbari as a source for reconstructing agrarian history is that the quantitative data given in it is of skewed nature.
  • Similarly, though the fiscal data from the provinces has been given in detail, sufficient light had not been thrown on vital parameters such as prices and wages of the same areas.

However, it should be kept in mind that despite these limitations, Ain-i-Akbari has its own significance as a historical document. It is a mine of information for us about the Mughal Empire during Akbar’s reign, although it gives us a view, of society from its apex.
The various information compiled in the text, help us significantly in reconstructing the history of the period under consideration.

Question 14.
“The village panchayat during the Mughal period regulated rural society. Explain the statement. (Delhi 2016)
or
Describe caste and rural milieu of Mughal India. How did Jati-Panchayats wield considerable power in the rural society during Mughal period? Clarify. (Delhi 2016)
or
Assess the role played by Panchayats in the villages during Mughal period. (All India 2016)
or
Explain the ways through which Mughal village Panchayats and village headmen regulated rural society. (Delhi 2013)
or
How were the Panchayats formed during 16th and 17th centuries? Explain their functions and authorities (Delhi 2011)
or
Explain the role of Panchayats in the Mughal Rural Indian Society during 16th-17th centuries. (Delhi 2014)
or
Examine the role of Panchayat as the main constituent of the Mughal village community. (Delhi 2015)
Answer:
The Panchayat and villagemen occupied a significant place in rural society during the period of the 16th and 17th centuries. They played an important role in regulating the rural society.

Generally the Village Panchayat was an assembly of important and respected elders of the village having hereditary rights over their property Every Panchayat was headed by a headman who was known as Muqaddam or Mandal. The headman could hold his office as long as he enjoyed the confidence of the village elders. He had to lose his position if he failed to win the confidence of the elders. The Panchayat had its own funds. All the villagers contributed to a common financial pool. All expenditures of the Panchayat were met from these funds. The functions of Panchayat are:

1. The Panchayat was responsible for the administration of the village. All the functions such as security, health, and cleanliness, primary education, law and order, irrigation, construction work and making arrangements for the moral and religious upliftment of the masses were performed by the Panchayat.
One of the main function of the Panchayat was to keep accounts of the income and expenditure of the village. It used to accomplish this task with the help of the accountant or patwari of the Panchayat.

2. The most important function of the Panchayat in medieval India was to regulate the rural society The Panchayat endeavoured to ensure that the various communities inhabiting the village were up holding their caste limits and were following their caste norms as well. Thus, overseeing the conduct of the members of the village community in order to prevent any offence against their caste w’as an important duty of the village headman or mandal.

In addition to the village Panchayat, each caste or jati in the village had its own Jati Panchayat. The caste Panchayat protected the rights and interests of its members and raised voice against any injustice caused to them. The members of a particular caste could complain to their Panchayat in case the members of a superior caste or state officials forced them to pay taxes or to perform unpaid labour.

Villagers regarded the village Panchayat as the court of appeal that would ensure that the state carried out its moral obligations and guaranteed justice. The decision of the Panchayat in relation to conflicts between ‘lower caste’ peasants and state officials or lower zamindars could vary from case to case. Sometimes panchayat suggested to compromise and in cases where reconciliation failed, peasants took their own decisions.

3. The Panchayats had the authority to levy fines and inflict more serious forms of punishment like expulsion from the community. These meant that the person was forced to leave the village and became an outcaste and he lost the right to practise his profession. Such a measure was taken on a violation of caste norms.

Question 15.
“Revenue was the economic mainstay of the Mughal Empire”. Explain the statement in the context of agriculture and trade. (Delhi 2016)
Answer:
Revenue was the economic mainstay of the Mughal Empire. This can be explained in the following ways:

  • It was vital for the state to create an administrative apparatus to ensure control over agricultural production and to fix and collect revenues from the entire empire.
  • The administrative apparatus included the office (daftar) of the diwan who was responsible for supervising the fiscal system of the empire. The revenue officials and record keepers became decisive agents in shaping agrarian relations.
  • The Mughal state tried to first acquire specific information about the extent of the agricultural lands in the empire and what these lands produced before fixing the burden of taxes on people.
  • The land revenue arrangements consisted of two stages-first assessment and then actual collection. The ‘Jama’ was the amount assessed, and the hasil was the amount collected by the cultivators.
  • Akbar decreed that cultivators could pay in cash or in kinds. While fixing revenue, the attempt of the state was to maximise its claims. Both cultivated and cultivable lands were measured in each province.
  • In the field of trade, a huge amounts of silver bullion from Europe came to India which was good for our country, as India did not have natural resources of silver. It resulted a remarkable stability in the availability of metal currency i.e. silver rupya. It also facilitated an unprecedented expansion of minting of coins and the circulation in the economy. It helped the Mughal state to extract taxes and revenues in cash.

Question 16.
Analyse the role of zamindars during the Mughal period. (HOTS; All India 2016, 2014, 2013)
Answer:
The zamindars in the Mughal period were the class of those people who lived off agriculture but did not take part directly in the processes of agricultural production. Role of zamindars during the Mughal period are:

  • They were landed proprietors who enjoyed certain social and economic privileges by virtue of their superior status in rural society.
  • The factor of caste hierarchy played a significant role in the elevated status of zamindars. Another factor was that, they performed certain services (Khidmat) for the state.
  • The zamindars had extensive personal lands, known as milkiyat. These lands w’ere cultivated with the help of hired labour for the private use of zamindars. The zamindars had the right to sell or mortgage these lands.
  • The zamindars could often collect
    revenue on behalf of the state, a service for which they were compensated financially.
  • The zamindars had fortresses and armed military resources which comprised of cavalry, artillery and infantry.
  • If we visualise social relations in the Mughal countryside as a pyramid, zamindars constituted its very narrow apex. Abu’l Fazal said that an upper-caste, Brahmana-Rajput combine had already established firm control over rural society. However, Muslim zamindars were also present at that time.
  • The dispossession of weaker people by a powerful military chieftain was a way of expanding a zamindari system. State did not support this aggression unless the zamindar had an imperial order (sanad).
  • Sometimes in the slow processes of zamindari consolidation people belonging to the relatively lower castes entered the rank of zamindars. For e.g. peasant-pastoralists (like the Sadgops) carved out powerful zamindaris in areas of Central and South-Western Bengal.
  • Zamindars spear headed the colonisation of agricultural land and helped in setting cultivators by providing them means of cultivation, cash, loan, etc.
    The buying and selling by zamindars accelerated the process of monetisation in the country side. They sold the produce from their milkiyat lands. They often established markets (haats) to which peasants came to sell their produce.
  • Although, zamindars were an exploitative class, their relationship with the peasantry had an element of reciprocity, paternalism and patronage.
  • Two views supported this fact. Firstly, the Bhakti saints who were the strong critic of casteism and other forms of oppression, did not portray the zamindars as exploiters of the peasantry. Secondly in a large number of agrarian uprisings in the 17th century, zamindars often received the support of the peasantry in their struggle against the state.

Question 17.
Examine the status and role played by women in the agrarian society during Mughal period. All India 2016 or
Explain the role of women in the agrarian society in Mughal India (Delhi 2008)
Answer:
Women played an important role in Indian agrarian society during the medieval period. Women belonging to peasant families participated actively in agricultural produce and worked shoulder to shoulder with men in the field.
Status and role of women were as follows:

1. The work of tilling and ploughing the fields was performed by men. The women particularly did the work of sowing, weeding and harvesting. They also extended their cooperation in threshing and winnowing the harvest. In fact, the labour and resources of the entire household had become the basis of production with the growth of nucleated village and expansion in individual peasant fanning during the 16th and 17th centuries. Therefore, it became quite difficult to draw a divisive line between the spheres of works for women and men.

2. Some aspects of production especially, artisanal tasks like spinning yarn, sifting and kneading clay for pottery and embroidery, etc were thoroughly dependent on female labour. It seems that the demand of women’s labour started growing with the commercialisation of the product. The peasant and artisan women worked in the fields, went to the house of their employers or to the markets, if necessary.

3. It is worth mentioning that as the women were child bearers in a society dependent on labour, they were regarded as an important resource in agrarian society. But because of frequent pregnancies, malnutrition and death during child birth, the mortality rate among women was very high. Thus, the number of the married women or wives in the society became less. Thus, marriages in many rural communities required the payment of bride price rather than dowry.

4. Instances from the contemporary sources suggest that several Hindu and Muslim women were inherited by zamindaris. They could sell or mortgage those zamindars. We find mention of women zamindars in Bengal and Rajasthan.

5. However, it should be kept in mind that the biases related to women’s biological functions still remained in existence.
For instance, in Western India, menstruating women could not touch the plough or potter’s wheel. In fact, they were not allowed to do so. Similarly, in Bengal, the menstruating women were not allowed to enter the groves where betel leaves (pan) were grown.

6. Women were kept under strict control by the male members of the family and the community. There was strict punishment for women if they suspected infidelity. But male infidelity was not always punished. Documents from Rajasthan, Gujarat and Maharashtra showed that record of petition sent by women to seek justice.

Question 18.
Explain the organisation of the administration and army during the rule of Akbar as given in ‘Ain-i Akbari’. (All India 2012)
Answer:
Ain-i Akbari consists of 5 books or daftars. The first three books of the Ain are about the description of the administration. Akbar was a great administrator and viewed it as the central point of his policies in administration. It is considered as a rich treasure of various information regarding the Mughal Empire during the rule of Akbar.
The following points can be the highlights:

The Manzil-Abadi:
The first book among 5 describes the royal household and its maintenance.

Sipah-Abadi:
The second book gives the detailed account of civil and military administration and the establishment of servants. It includes notices and short biographical sketches of imperial officials, learned men, poets and artists.

Mulk-Abadi:
The third book gives the fiscal polices of Mughal rule. It gives the detailed information on revenue rates alongwith the account of the 12 provinces. It also comprises of statistical figures having information on geographic, topographic and economic details of all subas and their administrative and fiscal divisions (Sarkars, Paraganas and Mahals), total measured area and assessed revenue (Jama).

Ain also provides a detailed picture of the Sarkars below the Suba. It does give a table data which has 8 columns with the following information:

  • Parganat/Mahal
  • Qila/(Forts)
  • Arazi and Zamin-i-Paimuda (measured area)
  • Naqdi, revenue assessed in cash
  • Suyurghal, grants of revenue in charity
  • Zamindars and

Columns 7 and 8 contain details of the castes of these zamindars, and their troops including their horsemen, foot soldiers and elephants.

Organisation of the Army during Akbar

  • It consisted mainly three parts
    • The troops provided by the Rajas or chiefs who were bound to supply military help to the king.
    • The contingents of the Mansabdars.
    • Emperor’s standing Army.
  • There were two groups of soldiers to serve as bodyguards and were highly paid. These were known as Dakhilis and Ahdis.
  • The imperial army consists of
    • The infantry.
    • The artillery
    • The Cavalry
    • The elephant corps
    • The Navy
  • The cavalry was considered as the main power centre of the army. Though the Mughal Empire is less known about naval power but Akbar had a naval department.

Important Questions for Class 12 History Chapter 8 Source Based Question

Quesiton 19.
The Ain on land revenue collection:
Let him (the amil-guzar) not make it a practice of taking only in cash but also in kind. The latter is effected in several ways. First, kankut: in the Hindi language kan signifies grain, and kut, estimates… If any doubts arise, the crops should be cut and estimated in three lots, the good, the middling and the inferior, and the hesitation
should be removed. Often, too, the land taken by appraisement, gives a sufficiently accurate return.

Secondly, batai, also called bhaoli, the crops are reaped and stacked and divided by agreement in the presence of the parties. But in this case several intelligent inspectors are required; otherwise, the evil-minded and false are given to deception. Thirdly, khet-batai, when they divide the fields after they are sown. Fourthly, land batai, after cutting the grain, they form it in heaps and divide it among themselves, and each takes his share home and turns it to profit.

  1. Explain the kankut system of land revenue.
  2. How was the land revenue assessed in the case of batai or bhaoli?
  3. Do you think that the land revenue system of the Mughals was flexible? (All India 2017)

Answer:
1. I think Kankut was a better method. The term ‘Kankut’ is a combination of two terms:

  • Kan which signifies grain and
  • Kut signifies estimates.

If any doubt arose, the crops were cut and estimated in three lots, the good, the middling and the inferior. Thus, the peasant could give tax in kinds not in cash.

2. In the case of batai or bhaoli the crops are reaped and stacked and divided by agreement in the presence of the parties. But in this case several intelligent inspectors are required; otherwise the mediator who are evil-minded are given to deception.

3. Yes, the land revenue system in the period of Mughal was flexible. As there are four kinds of revenue systems due to which revenue can be collected easily.

Question 20.
Classification of Lands under Akbar:
The following is a listing of criteria of classification excerpt from the Ain. The Emperor Akbar in his profound sagacity classified the lands and fixed a different revenue to be paid by each.

Polaj is a land which is annually cultivated for each crop in succession and is never allowed to lie fallow.

Parauti is land left out of cultivation for a time that it may recover its strength. Chachar is land that has lain fallow for 3 or 4 years. Banjar is land uncultivated for 5 years and more. Of the first two kinds of land, there are 3 classes, good, middling, and bad. They add together the produce of each sort, and the third of this represents the medium produce, one-third part of which is exacted as the Royal dues.

  1. Explain briefly the classification of lands by Akbar.
  2. How the revenue was fixed for the first two type of lands?
  3. Suggest some other way as you feel better. (Delhi 2010)

Answer:
1. Emperor Akbar classified lands in the following ways:

  • Polaj: The land which is annually cultivated for each crop in succession and is never allowed to lie fallow.
  • Parauti: The land is left out for cultivation for a time that it may recover its strength.
  • Chachar: The land that has lain fallow for 3 or 4 years.
  • Banjar: The land is uncultivated for 5 years and more.

2. The first two types of lands were divided into three classes, viz. good, middling and bad. The produced of each sort was added together and the third of this represents the medium produce, on-third part of which is exacted as the Royal dues.

3. I think Kankut was a better method. The term ‘Kankut’ is a combination of two terms:

  • Kan which signifies grain and
  • Kut signifies estimates.

If any doubt arose, the crops were cut and estimated in three lots, the good, the middling and the inferior. Thus, the peasant could give tax in kinds not in cash.

Important Questions for Class 12 History Chapter 8 Map Based Question

Quesiton 21.
On the given political outline map of India, locate and label the following appropriately.
(i) Goa-A territory under the Mughals.
Answer:
Important Questions for Class 12 History Chapter 8 Peasants, Zamindars and the State (Agrarian Society and the Mughal Empire) Q21

Important Questions for Class 12 History Chapter 8 Value Based Questions

Question 22.
1. Explain the various sources to know about the rural society during the Mughal period.
2. Explain the technology used by the peasants for the cultivation during the same period. (Delhi 2016)
Answer:
1. The major source for the history of agrarian society of the 16th and 17th centuries are chronicles and documents from Mughal court. The authors of Mughal chronicles were courtiers. The histories they wrote focused on events centred on the ruler, his family, the court, nobles, war and administrative arrangements.

Some of the important chronicles were Akbar Nama, Shahjahan Nama, Alamgir Nama, etc. The most important Chronicle was Ain-i Akbari which was the third book of Akbar nama.

Ain-i Akbari was written by Akbar’s court hisorian Abu’l Fazl. It meticulously recorded the arrangements made by the state to ensure cultivation, to enable the collection of revenue by the agencies of the state and to regulate the relationship between the state and the zamindars.

The main purpose of the Ain was to present a vision of Akbar’s empire where social harmony was provided by the ruling class. Abu’l Fazl thought that any revolt against the Mughal rulers was predestined to fail.
Whatever we know from the Ain about peasants remains a view from the top. The extensive records of the East India

Company provided us with important descriptions of the agrarian relations in Eastern India. All these sources record instances of conflicts between peasants, zamindars and the state. In the process, they give us an insight into peasant’s perception and expectations from the state authority.

2. During the Mughal peirod the terms raiyat, muzarian were used to denote the peasants. Cultivation was based on the principle of individual ownership. Monsoon is regarded as the backbone of Indian agriculture. But some crops required additional water. Artificial system of irrigation thus needed for it. Technologies used by the peasants for the cultivation were:

  • Sometimes people used buckets and wheels to irrigate the land.
  • Irrigation projects got state support. In Northern India, the state undertook digging of new canals (nahr or nala) and also repaired old ones, e.g. Shahnahar in Punjab during Shah Jahan’s reign.
  • Peasants also used technologies that generally harnessed cattle energy.
    The wooden plough was light and easily assembled with an iron tip or coulter. It did not make deep furrows, which preserved the moisture better during the intensely hot months.
  • A drill, pulled by a pair of giant oxen was used to plant seeds. But broadcasting was the most prevalent method during that time. Hoeing and weeding were done simultaneously using a narrow iron blade with a small wooden handle.

Question 23.
Read the following passage and answer the question that follows.
Women were considered an important resource in agrarian society also because they were child bearers in a society dependent on labour. At the same time high mortality rates among women – owing to malnutrition, frequent pregnancies, death during childbirth-often meant a shortage of wives. This led to the emergence of social customs in peasant and artisan communities that were distinct from those prevalent among elite groups. Marriages in many rural communities required the payment of bride-price rather than dowry to the bride’s family. Remarriage was considered legitimate both among divorced and widowed women.

The importance attached to women as a reproductive force also meant that the fear of losing control over them was great. According to established social norms, the household was headed by a male. Thus, women were kept under strict control by the male members of the family and the community. They could inflict draconian punishments if they suspected infidelity on the part of women.
1. Discuss the status of women in agrarian society in 17th century.
Answer:
1. In the 17th century in agrarian society women were considered an important resource, because they were child-bearers in a society dependent on labour.

At the same time, high mortality rates among women owing to malnutrition, frequent pregnancies, death during child-birth often meant a shortage of wives. This led to the emergence of new social customs in peasant and artisan communities which were never before. For e.g. payment of bride-price rather than dowry and remarriage of divorced and widowed women.

None the less women were considered as an important reproductive source, there was a great fear of losing control over them by male society. According to established social norms, the household was headed by a male. Thus, women were kept under strict control by the male members of the family and the community. They could inflict draconian punishments if they suspected infidelity on the part of women. While male infidelity was not always punished due to gender biasness. Thus, the status of women in agrarian society was some what the same as today.

Question 24.
Read the following passage and answer the question that follows.
Although there can be little doubt that zamindars were an exploitative class, their relationship with the peasantry has an element of reciprocity, paternalism and patronage.

Two aspects reinforce this view. First, the bhakti saints, who eloquently condemned caste-based and other forms of oppression, did not portray the zamindars (or, interestingly, the moneylender) as exploiters or oppressors of the peasantry.

Usually it was the revenue official of the state who was the object of their ire.
Second, in a large number of agrarian uprisings which erupted in north India in the seventeenth century, zamindars often received the support of the peasantry in their struggle against the state.

1. Which aspects highlight the view that zamindars were not exploitative class in the period of the Mughals?

Answer:
There are two aspects which reinforce the view that zamindars were not an exploitative class, rather their relationship with the peasantry had an element of reciprocity, paternalism and patronage. These aspects are as follow:

  • The first aspect is that, the bhakti saints, who eloquently condemned caste-based and other forms of oppression did not portray the zamindars (or, interestingly, the moneylenders) as exploiters or oppressors of the peasantry. Usually it was the revenue official of the state who was the object of their ire.
  • Second aspect explains that, in a large number of agrarian uprisings which erupted in north India in the 17th century, zamindars often received the support of the peasantry in their struggle against the state.

Important Questions for Class 12 History

The post Important Questions for Class 12 History Chapter 8 Peasants, Zamindars and the State (Agrarian Society and the Mughal Empire) appeared first on Learn CBSE.

Important Questions for Class 12 History Chapter 10 Colonialism and the Countryside (Exploring Official Archives)

$
0
0

Important Questions for Class 12 History Chapter 10 Colonialism and the Countryside (Exploring Official Archives)

Important Questions for Class 12 History Chapter 10 – 2 Marks Questions

Question 1.
Why was the permanent settlement of land revenue rarely extended to any region beyond Bengal? Give two reasons. (HOTS; All India 2009)
Answer:
The permanent settlement of land revenue Am. rarely extended to any region beyond Bengal because:

1. After 1810, the cost of agricultural products were increased. Due to this, the income of the landlords in Bengal were increased but there was no growth in the income of the East India Company Thus, the colonial government wanted to maximise its land revenue by introducing temporary revenue settlements instead of permanent settlements.

2. When British officials devised permanent settlements, they were influenced by the economic theories at that time. By the 1820s, famous economist David Ricardo came with his new theory which said that the state needed to tax the surplus agricultural produce to enhance its revenue. So the British officials thought that permanent settlement is ’ not a proper method to collect tax.
Therefore, the colonial government wanted to maximise its land revenue by introducing temporary revenue settlements instead of permanent settlement.

Important Questions for Class 12 History Chapter 10 – 4 Marks Questions

“The ryots came to see the moneylenders as devious and deceitful”. Justify the statement in the context of Ryotwari System in India in late 18th century. (Delhi 2016)
Answer:
It is true that the ryots came to see the moneylenders as devious and deceitful. As the moneylenders were much insensitive to the plight of the peasants. They got deeper and deeper into debt trap and were dependent on the moneylenders for their survival.

This can be understood by the following points:

  1. In Ryotwari System one general norm was that the interest charged cotdd not be more than the principle.
  2. The British government passed a Limitation Law in 1859 which meant to check the accumulation of interest over time and give 3 years validity of loan bonds signed between moneylenders and ryots.
  3. Moneylenders again manipulated the law and forcing ryots to sign a new bond every three years. When a new bond was signed, the unpaid balance, the original loan and accumulated interest was entered as principle on which a new set of interest charges was calculated.
  4. They refused to give receipts when loans w’ere repaid, entered fictitious figures in bonds, made peasants to sign and put thumb impression on documents and did not allow peasants to know what is inside the documents.

Question 3.
The East India Company had recognised the zamindars importance but wanted to control and regulate them. Explain the steps taken by them to subdue their authority in the 18th century. (Delhi 2016)
or
Explain how East India Company subdued the authority of zamindars in Bengal during 18th century? (Delhi 2015)
Answer:
East India Company recognised the importance and significance of zamindars but it also wanted to control, regulate and subdue their authority. To limit the authority of zamindars:

  • The Company disbanded the troop organised by zamindars, custom duties were abolished and ‘cutcheries’ or local court organised by zamindars were brought under supervision of company.
  • The company appointed collector and gave power to supervise these courts, over the period of time collectorate emerged as centre of authority.
  • The power to organise local justice and the local police, was also abolished.
  • The Permanent Settlement system was also limited, the power to the zamindars to collect rent from the ryot and manage their zamindari.
    So by these above steps, influence of zamindar was reduced by the company.

Question 4.
“The battle between the hoe and plough was a long one”. Substantiate the statement with reference to the Santhal and Paharias of Raj Mahal Hills during 18th century. (Delhi 2016)
Answer:
Santhal came to Bengal around 1780. Zamindars hired them to reclaim land and expand cultivation. British invited Santhals to settle in the Jangal Mahal, when they failed to subdue Paharias. The Paharias refused to cut the forest, resisted touching the plough and continued to be turbulent.

On the other hand, Santhal appeared to be ideal settlers, clearing the forest and ploughing the land with vigour. Santhal settlements and cultivation gradually expanded and Paharias were forced to withdraw deeper into hills and were confined to dry interior and to more barren and rocky upper hills. This severely affected their lives, impoverishing them in the long term. If paharia life was symbolised by the hoe, which they used for shifting cultivation, the santhaTs life represented the power of the plough. The battle between the hoe and plough was really a long one.

Question 5.
What was the Limitation Law? Why was this considered as a symbol of oppression against the ryot of 19th century? Give three reasons. (All India 2016)
Answer:
In 1859, British passed the Limitation Law which stated that the loan bond signed between moneylenders and ryots would have validity for only three years. This law was meant to check the accumulation of interest over the time. However, this law was considered as a symbol of oppression due to the following reasons:

  • Moneylenders forced the ryots to sign a new bond for every three year and turned the law around.
  • When new bond was signed, the unpaid balance, i.e., original loan and interest was entered as principal and and this principal interest was charged.
  • Moneylenders refused to give receipt when loans were repaid, entered fictitious figures in bond, acquired the peasant’s harvest at low price and ultimately took over the property of peasant.
  • Moneylenders brought the new regime of bond and deeds. Peasants were made to put thumb impression and sign on the document without knowing the full details of the documents.

Question 6.
“The arguments and evidences offered by the Fifth-report cannot be accepted uncritically”. Give arguments. (HOTS; Delhi 2015)
or
Why did the Fifth Report become the basis of intense debate in England? (Delhi 2013)
or
Describe the Fifth Report produced by the select committee on English East India Company in 1813 by the British Parliament.
or
Critically evaluate the significance and shortcomings of the ‘Fifth Report’.
Answer:
The Fifth Report was a significant report, it continued shaping our conception for over a century and a half about the nature and consequences of East India Company’s Rule in Bengal in the late 18th century. It served as basis for intense parliamentary debates on the nature of company’s rule in India.

The evidence contained in the ‘Fifth Report’ is considered to be of great importance. But as it is an official report, it should be read and anaylsed very carefully. The major short comings of this report included:

  • The Fifth report exaggerated the collapse of traditional zamindari power and the rate at which zamindar were losing their lands. Zamindars were not always displaced given the indigenous methods they used to retain their lands.
  • The report was biased because it wanted to highlight the maladministration of the East India Company in India.

Question 7.
“Jotedar inevitably weakened zamindars in Bengal by the end of the 18th century”. Give arguments to support the statement. (Delhi 2015)
or
Describe the position of the ‘jotedars’ at the end of the 18th century, (All India 2009)
Answer:
The points given below describe howjotidar inevitably weakened the power of zamindars in Bengal by the end of the 18th century:

  • In the 18th century when many zamindars were facing a crisis, a group of rich peasants, known as jotedars, were consolidating their position in the villages.
  • Unlike zamindars, jotedars lived in villages and thus, had good influence on village population.
  • Jotedars had acquired vast areas of land. They controlled local trade, moneylending, exercising immense power over the poorer cultivators and their land was cultivated through adhiyars or bargadars (sharecroppers).
  • They fiercely resisted the effects of zamindars to increase the Jama of the village, prevented zamindari officials from executing their duties. They deliberately delayed payments of revenue to the zamindars.
  • In fact, when the estates of the zamindars were auctioned for failure to make revenue payment, often jotedars bought their estate. This made the jotedars most powerful in the North Bengal.

Question 8.
What was the other name of ‘Bombay Deccan revenue system of 1820s’. Mention the features of it. (All India 2015)
or
Which revenue system wras introduced in the Bombay Deccan? What were its features?
Answer:
Ryotwari Settlement was introduced in the Bombay Deccan by the British. It has the following features:

  • Direct Settlement with the Ryots: The revenue was settled directly with the ryot.
  • Calculation of Revenue: Unlike the Permanent Settlement, the revenue was estimated taking into consideration all types of soil, the average income of the harvest was estimated. It assessed how much revenue a ryot could pay.
  • Share of State: The share of the state was fixed in proportion to the income of the ryot.
  • Re-survey of Land: After every 30 years the lands were re-surveyed and the rates of revenue were increased accordingly.
  • Temporary Demand: The demand for revenue was not permanent but temporary.

Question 9.
Critically examine the experience of injustice felt by ryot on the refusal of moneylender to extending loans to them after 1830.
(HOTS; All India 2014, Delhi 2010)
Answer:
Revenue demand was set high in the Bombay Deccan under Ryotwari System. Peasants were finding it difficult to pay under normal circumstances. But when rainfall failed and harvest were poor, it was impossible to pay.
In 1830s, problem became severe and in 1832 agricultural price fell sharply. At the same time, the villagers were devastated by famine in year 1832-34. During this time, l/3rd of cattle and half human population died. Those who left had no resource to overcome the crises. Unpaid balance of revenue mounted. They had to borrow from moneylender to pay revenue and to carry agricultural work but they were unable to pay it back.

As the debt mounted and loans remained unpaid, peasants dependence on moneylender increased. They now need loan even to buy their everyday needs and meet expenditure. By 1940s, they were in alarming level of indebtness.
During time of 1861-64, moneylenders easily gave advances to the peasants in order to get maximum production of cotton but once demand of cotton reduced, moneylenders were very reluctant to give loans. By cotton production mostly rich peasants prospered while large majority of the cotton produced face heavier debt.

Question 10.
Explain how the Ricardo’s idea of land ownership was introduced in the ‘Bombay Deccan’? (All India 2013)
Answer:
The colonial officials were under much influence of the ideas of David Ricardo, the renowned economist of England, during the early decades of the 19th century. He suggested that a landowner should have a claim only to the ‘average rent’ prevailing at the time. According to him, when the land yielded more than this average rent, the landowner had a surplus that the state needed to tax.

If tax was not levied, cultivators were likely to turn into rentiers and their surplus income was unlikely to be productively invested in the improvement of the land. The British officials viewed that the same condition had arisen in Bengal because of the introduction of Premanent settlement. The zamindars in Bengal had become rentiers in a way as they had leased out their lands.
Therefore, the British officials wanted to follow a different system of land revenue.

Question 11.
Explain the impact of American Civil War of 1861 on Indian peasants. (Delhi 2011)
Answer:
Britain was mainly dependent on America for importing raw cotton for its Cotton Textile Industry before the 1860s. Three-fourth of raw cotton imports into Britain came from America. But because of civil war in 1861, the amount of cotton „ in Britain from USA reduced. So, India was asked to grow cotton in large amount.

The rise in the price of cotton encouraged the cotton exporters. Indian peasants were given loan to grow cotton. Landlords did not hesitate in giving long-term loan. Some of the peasants became rich but majority of peasants went further into heavier debt.

Question 12.
Explain the impact of refusal by moneylenders to extend loans to ryots, around 1865, under the colonial rule of India. (All India 2011)
Answer:
The condition of peasants was miserable under the British rule. They were left impoverised and went through hardships which deteriorated their situation further. Because of the economic policy of the British administrators, the economic condition of the Indian people at the time of 1857 became very pitiable.

There was no dearth of people who were unemployed and struggling in vain.
People needed money to repay their loans and meet their daily expenses. However, sometimes their condition did not improve and they fell into debt trap. They were unable to repay their loan.
The moneylenders were apprehensive of losing their money. Thus, they refused to extend their loans. The borrowers failed to manage money for agriculture.

Question 13.
Explain two reasons for the failure of the Permanent Settlement of the land revenue introduced by the British in Bengal. (Delhi 2009)
Answer:
The reasons for the failure of the Permanent Settlement of the land revenue introduced by the British in Bengal are as follows:
1. The early revenue demands fixed by the company were very high. Under permanent settlement, the state revenue demand was fixed in ’ perpetuity. It meant that company was not claiming an additional share of increased income from land with rising prices and expanding cultivation. Therefore, the Company wanted huge revenue for high demand in order to minimise this anticipated loss.

2. It is worth mentioning that the high demand of land revenue was fixed in 1790s. The price of agricultural produce were depressed during this period. Consequently, it became difficult for the ryots to pay their dues to the zamindars. Thus, the zamindar could not collect the rent and were unable to pay their fixed amount to the company.

Question 14.
Explain two strategies devised by zamindars of surviving the pressures of high revenue demands and possible auction of their lands. (All India 2009)
Answer:
The two strategies were as follows:

  1. The zamindars devised various ways to avoid the pressures of high revenue demand and possible auction of their estates. One such plan was the fictitious sale. It comprised a chain of moves requiring skill and care.
    The East India Company had decreed that the property of women could not be auctioned. Therefore, the Raja of Burdwan transferred some of his zamindari to his mother’ name.
  2. The agents of the Raja controlled the whole process of auction very’ cleverly. The zamindar’s agent used to buy the auctioners property, outbidding other buyers. However, they refused to pay up the purchase amount, therefore, the estate had to be resold. This endless process of auctioning was repeated again and again and the state alongwith other auctioners were forced to exhaust. Finally, the estate was sold at a low price back to the zamindar.

Question 15.
Critically examine the Deccan Riots Commission Report. (HOTS; Delhi 2008)
Answer:
The Deccan Riots Commission Report can be examined through the following points:

  • The Government of India pressurised the Government of Bombay to set-up an enquiry commission in order to investigate into the causes of riots.
  • A report was prepared by the commission which was presented to the British Parliament in 1878.
  • Proper enquiries were held in the riot affected districts and the statement of the ryots, sahukars and eyewitnesses were recorded.
  • Statistical data on revenue rates, prices and interest rates were compiled in various regions.
  • In the Deccan Riots Commission Report, we have to see that they are the official sources and reflect concerns and interpretations of events, e.g. this commission was specifically asked to judge whether the level of the government revenue demand was the cause of the revolt. After presenting all the evidences, the commission reported that the government demand was not the cause of peasants anger. It was the moneylenders who were to blame.
  • The reports sent by the district collectors were compiled. Undoubtedly, this report furnishes significant basic information for the study of those riots.

Important Questions for Class 12 History Chapter 10 – 8 Marks Questions

Question 16.
Examine the land revenue system that was introduced in Bombay Deccan. How did the peasants fall into the dept-trap of the moneylenders? Explain.
Answer:
Ryotwari Settlement was introduced in the Bombay Deccan by the British. It has the following features:

  • Direct Settlement with the Ryots: The revenue was settled directly with the ryot.
  • Calculation of Revenue: Unlike the Permanent Settlement, the revenue was estimated taking into consideration all types of soil, the average income of the harvest was estimated. It assessed how much revenue a ryot could pay.
  • Share of State: The share of the state was fixed in proportion to the income of the ryot.
  • Re-survey of Land After every 30 years the lands were re-surveyed and the rates of revenue were increased accordingly.
  • Temporary Demand: The demand for revenue was not permanent but temporary.
    It is true that the ryots came to see the moneylenders as devious and deceitful. As the moneylenders were much insensitive to the plight of the peasants. They got deeper and deeper into debt trap and were dependent on the moneylenders for their survival.

This can be understood by the following points:

1. when the Deccan Riots commission investigated, they found the law broken by the moneylenders as they had charged over ? 2000 as interest on a loan of ₹ 100.

2. After complain of this manipulation by ryots, the British passed a Limitation Law in 1859 which meant to check the accumulation of interest over time and give 3 years validity of loan bonds signed between moneylenders and ryots.

3. Moneylenders again manipulated the law and forcing ryots to sign a new bond every three years. When a new bond was signed, the unpaid balance, the original loan and accumulated interest was entered as principle on which a new set of interest charges was calculated.

4. They refused to give receipts when loans were repaid, entered fictitious figures in bonds acquired peasants harvest at low prices, made peasants to sign and put thumb impression on documents and did not allow peasants to know what is inside the documents. This way the ryots faced injustice in the hands of the moneylenders and lost their harvest and properties as well.

Question 17.
“After introducing the Permanent settlement in Bengal, the zamindars regularly failed to pay the land revenue demand.” Examine the causes and consequences of it. (All India 2017)
Answer:
The permanent settlement had come into operation in 1793 by Lord Cornwallis. Under this system, zamindars collected revenue from peasants and handover to the East India company. Company off icials felt that a fixed revenue demand would give zamindars a sense of security and assured of returns on their investment, encourage them to improve their estates. In the early decades after the permanent settlement, however, zamindars regularly failed to pay the revenue demand and unpaid balances accumulated.
The causes for this failure were:

1.The initial demands were very high. This was because it was felt that if the demand was fixed for all time to come, the company would never be able to claim a share of increased income from land when prices rose and cultivation expanded.
To minimise this anticipated loss, the company fixed the revenue demand high , arguing that the burden on zamindars would gradually decline as agricultural production expanded and prices rose.

2. This high demand was imposed in the 1790s, a time when the prices of agricultural produce were depressed, making it difficult for the ryots to pay their dues to the zamindar.

3.The revenue was invariable, regardless of the harvest, and had to be paid punctually. In fact, according to the ‘ Sunset Law if payment did not come in
by sunset of the specified date, the zamindari was liable to be auctioned.

4. The permanent settlement initially limited the power of the zamindar to collect rent from the ryot and manage his zamindari.

The consequences after the failure to fulfil the land revenue demands were:

  • When a raja or zamindar failed to pay the revenue demand, a company official was speedily dispatched to his zamindari with explicit instructions ‘to take charge of the district and to use the most effectual of the raja or zamindar and his officers’.
  • The East India Company subdued their authority and restrict their autonomy.
  • The zamindars troops were disbanded, customs duties abolished and their ‘cutcheries’ (courts) brought under the supervision of a collector appointed by the company.
  • Zamindars lost their power to organise local justice and the local police.
  • Over time the collectorate emerged as an alternative centre of authority, severely restricting what the zamindar could do.
  • While many zamindars were facing a crisis at the end of the 18th century, a group of rich peasants also known as ‘Jotedars’, were consolidating their position in villages. They controlled local trade as well as money-lending, exercising immense power over the poorer cultivators of the region.
  • Besides these, the estates of the zamindars also were auctioned for failure to make revenue payment and at that time jotedars were after amongst the purchasers as they were most powerful in North Bengal.

Question 18.
Examine the main aspects of the fifth report which was submitted to the British Parliament in 1813. (All India 2017)
Answer:
Many of the changes occurred at the time of the East India Company were documented in detail in a report that was submitted to the British Parliament in 1813. It was the fifth report on the administration and activities of the East India Company in India.

The main aspects of the fifth report are discussed below:

1. The fifth report had been covered into 1002 pages of which over 800 pages were appendices that reproduced petitions of zamindars and ryots reports of collectors from different districts, statistical tables on revenue returns, and notes on the revenue and judicial administration of Bengal and Madras (present-day Tamil Nadu) written by officials.

2. From the time the company established its rule in Bengal in the mid 1760s, its activities were closely watched and debated in England. There were many groups in Britain who were opposed to the monopoly that the East India Company had over trade with India and China.

3. An increasing number of private traders wanted a share in the India trade, and the industrialists of Britain were keen to open up the Indian market for British manufactures.

4. Information about Company misrule and maladministration was hotly debated in Britain and incidents of the greed and corruption of company officials were widely publicised in the press.

5. The British Parliament passed a series of acts in the late 18th century to regulate and control company rule in India. It forced the company to produce regular reports on committees to enquire into the affairs of the company.

6. The fifth report was one such report produced by a select committee. It became the basis of intense parliamentary debates on the nature of the East India company’s rule in India.

7. The evidence contained in the fifth report is invaluable. But the recent researches show that the argumeilts and evidences offered by the fifth report cannot be accepted uncritically.

8. After careful examination of the archives of various Bengal zamindars and the local records of the Districts, researchers found that the report exaggerated the collapse of traditional zamindari power and also overestimated the scale on which zamirdars were losing their land. As we have seen even when zamindaris, were auctioned, zamindars were not always displaced, given the ingenious methods they used to retain their zamindaris.

9. It does not mean that there were not any malpractices done by the East India Company, infact they were very oppressive towards the rural society of Bengal.
Thus, the fifth report had been proved to be a good source to understand the India’s economy in the colonial times.

Important Questions for Class 12 History Chapter 10 Source Based Questions

Question 19.

A Ryot Petitions:
This is an example of a petition from a ryot of the village of Mirajgaon, Taluka Karjat, to the Collector, Ahmednagar, Deccan Riots Commission.

The sowkars (sahukars)… have of late begun to oppress us. As we cannot earn enough to defray our household expenses. We are actually forced to beg of them to provide us with money, clothes and grain, which we obtain from them not without great difficulty, nor without their compelling us to enter into hard conditions in the bond.

Moreover, the necessary clothes and grain are not sold to us at cash rates. The prices asked from us are generally twenty five percent or fifty percent more than demanded from customers making ready money payments. The produce of our fields is also taken by the sowkars, who at the time of removing it assure us that it will be credited to our account, but they do not actually make any mention of it in the accounts. They also refuse to pass us any receipts for the produce so removed by them.

  1. What kind of injustice was experienced by the ryots?
  2. Why was the harvest taken away by the moneylenders and why was it not credited to the peasants account?
  3. Give details on the commission that investigated petitions and grievances of the concerned people. (Delhi 2013)

or

  1. Why were the ryots not given loans by sowkars?
  2. Explain the difficulties, the ryots had, to face for getting loan from the sowkars.
  3. Why were the ryots unable to pay the inflated demand? Explain. (All India 2009)

Answer:
1. The refusal of moneylenders to extend loans made the ryots very angry. Moreover, the sahukars were insensitive to their plight and were violating the customary norms of the countryside.
In one of the cases investigated by the Dcccan Riots Commission, the moneylenders had charged over ? 2000 as interest on a loan of ? 100. Besides these, the necessary clothes and grains were not sold to the ryots at cash rates.

2. The ryots complained of moneylenders of manipulating laws and forging accounts.
The produce of the ryot’s field was also taken by the sahukars, who at the time of removing the produce assured them that it would be credited to their accounts. However, the sahukars did not actually mention it in the accounts. They refused to give the ryots any receipts for the produce, so removed by them.

3. The Government of India pressurised the Government of Bombay to set up a commission of enquiry to investigate into the causes of riots. The Deccan Riots Commission produced a report that was presented to the British Parliament in 1878.
or
1. The ryots were not given loans by sowkars because they no longer had confidence in the ryots capacity to repay. This was at the time when ryots were able to pay the inflated demand when prices were falling and cotton fields were disappearing.

2. The difficulties, the ryots had to face for getting loan from the sowkars were:

  • The oppression of the sowkars.
  • Compelled the ryots to enter into hard conditions in the bond for obtaining loan from them.
  • The produce of their fields was also taken by the sowkars.
  • They refused to pass them any receipts for the produce so removed by them.

3. The ryots were unable to pay the inflated demand because as the credit dried up, the revenue demand increased. The first revenue settlement was made in the 1820s and 1830s, presently it W’as the time for the next settlement. In this settlement, the demand was increased dramatically from 50 to 100 per cent. So the ryots were unable to pay the innate demand at the time when the prices were failing and cotton fields disappearing.

Question 20.
Deeds of Hire:
When debts mounted, the peasant was unable to pay hack the loan to the moneylender. He had no option, but to give over all his possessions-land, carts and animals to the moneylender. But without animals he could not continue to cultivate.

So, he took land on rent and animals on hire. He now had to pay for the animals which had originally belonged to him. He had to sign a deed of hire stating very clearly that these animals and carts did not belong to him. In cases of conflict, these deeds could be enforced through the court.

The following is the text of a deed that a peasant signed in November 1873 from the records of the Deccan Riots Commission.

I have sold to you, on account of the debt due to you, my two carriages having iron axles, with their appurtenances and four bullocks… I have taken from you on hire under this deed the very same two carriages and four bullocks. I shall pay every month the hire thereof at rupees four a month and obtain a receipt in your own handwriting. In the absence of a receipt, I shall not contend that the hire had been . paid.

  1. How did the peasants pay back the loan to the moneylenders?
  2. What was the deed of hire?
  3. What light does the deed of hire throw on the relationship between the peasants and the moneylenders? (All India 2013)

Answer:
1. When debts increased the peasants were unable to pay back the loan to the moneylenders. As a result, the peasants had no option, but to give all their possessions to the moneylender. They had to surrender their land, carts and animals to the moneylender.

2. The peasant had to sign a deed of hire stating very clearly that all his possessions (land, carts and animals) did not belong to him. The peasant had to sell, on account of the debt to the moneylender his carriages having iron axles, with their accessories and bullocks. A peasant had to sign a deed that he had taken from the moneylender on hire. The peasant had to pay every month the hire there of at rupees four a month.

3. The deed of hire clearly shows that the relationship between the peasants and the moneylenders was based on exploitation. The deed of hire was absolutely loaded in favour of the moneylenders and the peasants were at the receiving end.

Important Questions for Class 12 History Chapter 10 Value Based Questions

Question 21.
Read the following passage and answer the question that follows.
When the Santhals settled on the peripheries of the Rajmahal hills, the Paharias resisted but were ultimately forced to withdraw deeper into the hills. Restricted from moving down to the lower hills and valleys, they were confined to the dry interior and to the more barren and rocky upper hills. This severely affected their lives, impoverishing them in the long term. Shifting agriculture depended on the ability to move to newer and newer land and utilisation of the natural fertility of the soil. When the most fertile soils became inaccessible to them, being part of the Damin, the Paharias could not effectively sustain their mode of cultivation. When the forests of the region were cleared for cultivation the hunters amongst them also faced problems.

The Santhals, by contrast, gave up their earlier life of mobility and settled down, cultivating a range of commercial crops for the market, and dealing with traders and moneylenders.

  1. What effect can be seen on the lives of Paharias when the Santhals were settled on the peripheries of the Rajmahal hills? Discuss.

Answer:
1. The lives of Paharias were completely changed when the Santhals came and settled on the peripheries of the Rajmahal hills.

  • When Santhals came, the Paharias resisted them, but were ultimately forced to withdraw deeper into the hills.
  • The movement towards lower hills and valleys was restricted and they were only confined to live on the dry upper hills which was completely barren and rocky.
  • Paharias were mainly depended on shifting cultivation and hunting. When the most fertile soils became inaccessible to them the Paharias could not effectively sustain their mode of cultivation.

2. When Santhals cleared most of the parts of the forests region, the hunters amongst the paharias also faced problems. These changes severely affected their lives, impoverishing them in the long term.

Read the following passage and answer the question that follow.
Over time, peasants came to associate the misery of their lives with the new regime of bonds and deeds. They were made to sign and put thumb impressions on documents, but they did not Know what they were actually signing. They had no idea of the clauses that moneylenders inserted in the bonds. They feared the written word. But they had no choice because to survive they needed loans, and moneylenders were unwilling to give loans without legal bonds,

  1. How were bonds and deeds became responsible for misery of peasants over time?

Answer:
Bonds and deeds were the two powerful weapons of moneylenders through which they suppressed the ryots or peasants. Moneylenders forced ryots to sign a new bond every three years although this was banned in the Limitation Law that have validity for only 3 years. But later moneylenders turned the law around and charged higher interests plus higher principle rates.

Over time peasants realised that these bonds were the actual cause of their miseries. But being helpless and in need of money, they were made to sign and put thumb impression on documents without having knowledge of what they are signing to. Thus, moneylenders took advantage of their situations and inserted false clauses in the bonds.

Important Questions for Class 12 History

The post Important Questions for Class 12 History Chapter 10 Colonialism and the Countryside (Exploring Official Archives) appeared first on Learn CBSE.

Important Questions for Class 12 History Chapter 11 Rebels and the Raj: The Revolt of 1857 and its Representations

$
0
0

Important Questions for Class 12 History Chapter 11 Rebels and the Raj: The Revolt of 1857 and its Representations

Important Questions for Class 12 History Chapter 11 – 4 Marks Questions

Question 1.
Examine how Lord Dalhousie’s policy of annexation created dissatisfaction amongst the people of Awadh. (Delhi 2016)
or
Critically examine Lord Dalhousie’s policy of annexation in Awadh. (HOTS; All India 2015)
or
How did British dispossess Taluqdars of Awadh during 1857. Explain with examples. (Delhi 2014)
or
“The annexation of Awadh displaced not just the Nawab, but also dispossessed the taluqdars of the region, causing breakdown of an entire social order.” Critically examine the statement. (HOTS: Delhi 2010)
Answer:
The Nawab of Awadh had been loyal to the British East India Company from the very beginning. But, the loyalty of Awadh was of no significance to Lord Dalhousie’s imperialistic ambitions. Awadh could not be annexed on the basis of the Doctrine of Lapse as Wajid Ali Shah, as the Nawab of Awadh had several successors. So, the British especially Lord Dalhousie used a number of mischievous tricks to annex the Awadh and dispossessed the taluqdars.

These were:

  • On 13th February, 1856, Awadh was annexed to the British empire on the grounds of maladministration.
  • Nawab Wazid Ali Sahib was sent to Calcutta with an annual pension of ₹ 12 lakh. With the dissolution of the royal administration, large number of courtiers, officials and taluqdars became jobless.
  • Jagirs of taluqdars were confiscated. This upheaval was aggravated by immediate material losses.
  • The British were not willing to tolerate the power of the taluqdars.
  • With the removal of Nawab, all taluqdars of the Awadh were also dispossessed, taluqdars were disarmed and their forts were destroyed.
  • With a new revenue system i.e. Summary Settlement, taluqdars lost their very large share of revenue from land. Wherever possible, taluqdars were removed and settlement was done directly with peasant.
  • British believed that this would increase the flow of revenue to the company and peasants would also be freed from oppression of taluqdar. This annexation of Awadh meant complete break down of social order.

Question 2.
With the help of specific examples examine the nature of Indian leadership that emerged against British in the revolt of 1857. (All India 2016)
Answer:
During the revolt few leaders participated very enthusiastically while some other participated because they had no choice. They had to participate in the revolt for the sake of their reputation.

For e.g. Bahadur Shah was reluctant to join the rebellion but due to demands of sepoys, he joined the revolt and it was fought under his name. Similarly, sepoys and people of Kanpur choose
Nana Sahib as their leader and he joined the revolt.

Rani Lakshmibai of Jhansi participated because her kingdom had been annexed to empire by ‘Doctrine of Lapse’ and there was also popular pressure on her to take the leadership. In Awadh, their was deep resentment against annexation, dispossession of nawab and oppressive rule of British. People of Awadh declared Birjis Qadar, the young son of dispossessed Nawab as their leader.

Apart from the royal families, local leaders also emerged during the revolt like Kuwar Singh in Arrah, fakir in Lucknow, Shah Mai in Barout and Gonoo, a tribal cultivator in Singhbhum. Although the leaders of 1857 revolt participated in this war, but they had separate goals which made the revolt unsuccessful against British.

Question 3.
Examine the repressive measures
adopted by British to subdue the rebels of 1857. (All India 2015)
Answer:
It was not easy for the Britishers to suppress the revolt. Even then they took various steps to crush the rebels.

These steps were as follows:

Passing of Laws to help the Troops:
The British passed several laws to help the troops before sending them to re-occupy North India. The military officers were also empowered to try and punish the rebel Indians. The ordinary process of law and trial were ignored by them.

With the help of new laws and the new reinforcements coming from Britain, the ‘ British started the process of suppressing the revolt. British thought to reconquer Delhi was most important to suppress the revolt. Therefore, in June 1857, the British attacked Delhi from two directions. Captain Hudson arrested the Mughal Emperor Bahadur Shah II and Begum Zinat Mahal from the Tomb of Humayun on 21st September, 1857.

Resorting to Diplomacy:

The British while resorting to diplomacy kept away the educated Indians and zamindars from the rebels. The British created a rift between rebels and the zamindars by promising the latter to give back their estates.

Use of Military Power on a Gigantic Scale:

The British used military power on a gigantic scale. But, this held their absolute control over the means of communication. Their control over the railways enabled them to send quick military support to different parts of the country’.

Communication System:

The telegraph system helped the British to get timely information about the incidents occurring in different parts of the country. Consequently, they were successful in wrecking plans of the rebels by taking immediate action against them. Thus, the British tried their best to maintain their absolute control over the means of communication in order to suppress the revolt.

Question 4.
Examine the provisions of ‘Subsidiary Alliance System’ devised by Lord Wellesley in 1798 for India. (All India 2015)
or
Explain the provisions of the Subsidiary Alliance imposed on Awadh in 1801 by the British. (Delhi 2012)
Answer:
The Subsidiary Alliance was introduced by Lord Wellesley in 1798. All those who entered into such an alliance with the British had to accept certain terms and conditions.

These were:

  • The British would be responsible for protecting their ally from external and internal threats to their power.
  • In the territory of the ally, a British armed contingent would be stationed.
  • The ally would have to provide the resources for maintaining this contingent.
  • The ally could enter into agreements with other rulers or engage in warfare only with the permission of the British.

Question 5.
“The relationship of the sepoys with the superior white officers underwent a significant change in the years preceding the uprising of 1857”. Support the statement with examples. (All India 2014)
or
How did the white officers make it a point, during the 1820s till 1840s to maintain friendly relations with the sepoys? Describe briefly. (All India 2012)
Answer:
The white officers made it a point during the 1820s till 1840s to maintain friendly relations with the sepoys.
These were as follows:

  • Several white officers could speak in Hindustani easily and were also familiar with the culture and traditions of the country.
  • The relationship of sepoys with their British officials underwent significant change. In the decade of 1820, British officers stressed on maintaining friendly relations with the sepoys.
  • Prior to the revolt of 1857, the relationship of the sepoys with white officers made it a point to keep friendly relationship with the sepoys. They would actively took part in their leisure activities.
  • Despite this in the 1840s, the balance of mutual relationship changed drastically. The white officers created a sense of superiority and started keeping the sepoys as their racial inferiors.
  • The equation of superior and inferior changed the whole script of mutual relationship. The elements of abuse and physical violence became routine activities. Consequently, the distance between sepoys and officers became wider. Due to this, mutual suspicion cropped up.

Question 6.
How did the rebels in 1857 try to materialise their vision of unity? Explain briefly. (HOTS; Delhi 2010)
Answer:
The revolt tried to garner the support of all sections of the society irrespective of their caste and creed. The rebellion was viewed as a war in which both the communities as Hindus and Muslims stood equally to gain and lose. The amicable relations which existed between the two communities were emphasised. The ishtehars brought to the forefront memories of the pre-British Hindu-Muslim past and glorified the coexistence of different communities under the Mughal Empire.

Thus, religious differences were not visible between the two communities in 1857 despite British attempts to create a wedge between them. Through this way, they tried to materialise their vision of unity.

Question 7.
“The rumours in 1857 began to make sense when seen in the context of the policies pursued by the British from late 1820s”. Support your answer with evidence. (Delhi 2009)
Answer:
The rumours in 1857 that made sense in context of the policies pursued by the British from late 1820s were as follows:

  • During the Governor-Generalship of Lord William Bentick some specific policies were adopted in order to ‘reform’ Indian society by the introduction of Western education. Western ideas and Western institutions.
  • Reforms like the abolition of Sati System.
  • Annexation of Jhansi and Satara-British refused to recognise adoption.
  • Reforms like Widow re-marriage Act.
  • Reforming socio-religious customs like land holding, inheritance, etc.
  • Rumours had an impact on the minds of people under these uncertain times.

The common Indians looked at all these steps with apprehension and suspicion.
Visual images and literature as much as the writing of history have helped in keeping alive the memory of the revolt of 1857.” Assess this statement. (All India 2008)

Question 8.
Describe how the British celebrated those, 9. whom they believed saved the English and repressed the rebels during the Revolt of 1857? (Delhi 2008)
Answer:
The British celebrated those whom they believed saved the English and repressed the rebels during the revolt of 1857 by the various types of paintings which were meant to provide a range of different emotions and reactions also.
In an example of this type, ‘Relief of Lucknow’, which has been painted by Thomas Jones Barker in 1859 is particularly remarkable in this regard.

Henry Lawrence, the Commissioner of Lucknow, gathered all the Christians and took refuge alongwith them in heavily fortified residency after the rebel forces besieged Lucknow.

Lawrence was killed, but the residency continued to be defended under the command of Colonel Inglis. On 25th September, James Outram and Henry Havelock arrived out through the rebel forces and reinforced the British Garrisons. Collin Campbell reached with huge reinforcements and rescued the besieged British Garrison. In British accounts, the siege of Lucknow became a story of survival heroic resistance and the ultimate triumph of British power.

The arrival of Collin Campbell has been depicted as an event of celebration in Jones Barker’s painting. Campbell, Havelock and Outram, the three British heroes have been painted in the middle of the canvas.
The victorious figures of the heroes in the middle symbolise the re-establishment of British power and control is the main objective of these paintings and was to reassure the English in the power of their government. These paintings clearly conveyed the message that crisis was over and the revolt had been quelled and the British had succeeded in re-establishment of their power and authority.

Question 9.
Visual images and literature as much as the writing of history have helped in keeping alive the memory of the revolt of 1857.” Assess this statement. (All India 2008)
Answer:
The writing of history, art and literature contributed remarkably to immortalise the sacred memory of the struggle of 1857. The leaders of revolt were presented as heroes taking the country towards the battlefield. They were depicted as heroes inspiring the common masses to begin struggle against the oppressive colonial power.

Many heroic poems were composed narrating the bravery of Laxmi Bai, holding a sword in one hand and the reins of the horse in the other, fought for the independence of her motherland. She was usually portrayed in battle armour with a sword in hand and riding a horse symbolising the determination to resist injustice and alien rule.

Thus, it becomes clear that visual representations produced various images of the revolt. We should know that these images were not a mere expression of contemporary ideas and sentiments, but they also reflected the contemporary sensibilities.

Important Questions for Class 12 History Chapter 11 – 8 Marks Questions

Question 10.
“Rumours and prophecies played a part in moving the people into action during the revolt of 1857.” Examine the statement with rumours and reasons for its belief. (All India 2017)
Answer:
It is true that rumours and prophecies played a part in moving people to action during the revolt of 1857.

These rumours were as follows:

1. During 1857 revolt, there was an apparent rumour that the Indian sepoys were intentionally given the Enfield rifles, and its bullets were coated with the fat of cows and pigs and biting those bullets would corrupt their caste and religion.

2. The British tried to explain to the sepoys that this was not the case but the rumour that the new cartridges were greased with the fat of cows and pigs which spread like wildfire across the sepoy lines of North India.

3. This is one rumour whose origin can be traced. Captain Wright, commandant of the Rifle Instruction Depot, reported that in the third week of January 1857 a ‘low-caste’ Khalasi who worked in the magazine in Dum Dum had asked a Brahmin sepoy for a drink of water from his lota. The sepoy had refused saying that the Tower caste’s’ touch would defile the lota. The Khalasi had reportedly retorted, “You will lose your caste, as ere long you will have to bite cartridges covered with the fat of cows and pigs”.

4. The truthfulness of the report had not identified but once this rumour started no amount of assurances from British officers could stop its circulation and the fear of it spread among the sepoys.

5. This was not the only rumour that was circulating in North India at the beginning of 1857. There was the rumour that the British government has hatched a gigantic conspiracy to destroy the caste and religion of Hindus and Muslims.

It is seen that rumours reflect about the minds of people who believed them, their fears and apprehensions, their faiths and convictions. Rumours circulate only when they resonate with the deeper fears and suspicions of people. The rumours in 1857 begin to make sense when seen in the context of the policies the British pursued from the late 1820s. The reasons of believing in these rumours are discussed below:

  • From that time under the leadership of Governor General Lord William Bentinck, the British adopted policies aimed at ‘reforming’ Indian society by introducing Western education,Western ideas and Western institutions. With the cooperation of sections of Indian society they set up English-medium schools, colleges and universities which taught Westerp sciences and the liberal arts.
  • The British established laws to abolish customs like sati (1829) and to permit the remarriage of Hindu widows.
  • The British annexed not only Awadh, but also Jhansi and Satara. Once these territories were annexed, the British introduced their own system of administration. The impact of this on the people of North India was profound.
  • It seemed to the people that all that they cherished and held sacred from kings and socio-religious customs to patterns of landholding and revenue payment was being destroyed and replaced by a system that was more impersonal, alien and oppressive.
  • This perception was aggravated by the activities of Christian missionaries. In such a situation of uncertainty, rumours spread with remarkable swiftness. And people started to believe in these rumours during the revolt of 1857.

Question 11.
Examine the visual representations of the revolt of 1857 that provoked a range of different emotions and reactions.
(All India 2017)
Am There are a number of visual representations of the revolt of 1857 like paintings, pencil drawings, etchings, posters, cartoons, bazaar prints, etc which were produced by the British and Indian artists and painters. These are discussed below:

1. British pictures offers a variety of images that were meant to provoke a range of different emotions and reactions. Some of them commemorate the British heroes who saved the English and repressed the rebels. For e.g. ‘Relief of Lucknow’, painted by Thomas Jones Barker in 1859 depicts the efforts of James Outrom, Henry Havelock and Colin Campbell in rescuing the besieged British garrison in Lucknow.

2. Newspaper reports have a power over public imagination. This reported about the incidence of violence against women and children and raised a public demand in Britain for revenge and retribution. Artists expressed as well as shaped these sentiments through their visual representations of trauma and suffering.

3. “In Memoriam” was painted by Joseph Noel Paton in w’hich English women and children huddled in a circle, looking helpless and innocent seemingly waiting for the inevitable dishonor, violence and death coming from the rebels. This represents the rebels as violent and brutish.

4. In another set of sketches and paintings women are seen in a different light. They appear heroic, defending themselves against the attack of rebels, for e.g. a painting depicts Miss Wheeler who stands firmly at the centre, defending her honour, single-handedly killing the attacking rebels. This picture is represonted as having a deeper religious connotation. It is a battle to save the honour of Christianity and the book lying on the floor is the Bible.

5. As waves of anger and shock spread in Britain, demands for retribution grew louder. Threatened by the rebellion, the British felt that they had to demonstrate their invincibility.
For e.g. in an image an allegorical female figure of justice with a sword in one hand and a shield in the other is seen. Her posture is aggressive, her face expresses rage and the desire for revenge. She is trampling sepoys under her feet while a mass of Indian women with children cower with fear.

6. When Governor General Canning declared that a gesture of Leniency, he w’as mocked in the British press. In a British Journal of comic satire, Canning is shown as a looming father figure, with his protective hand over the head of a sepoy who still holds sword and dagger in hands, both dripping with blood.

7. On the other hand leaders of the revolt were presented as heroic figures leading the country into battle, rousing the people to righteous undignation against oppressive imperial rule. For e.g. Rani of Jhansi was represented as in popular prints a masculine figure chasing the enemy slaying British soldiers and valiantly fighing till her last. She is usually portrayed in battle armour, with a sword in hand and riding a horse, a symbol of the determination to resist injustice and alien rule.

Question 12.
‘A chain of grievances in Awadh linked the prince, taluqdars, peasants and sepoy to join hands in the revolt of 1857 against the British”. Examine the statement. (All India 2017)
Answer:
Since 1800 century, Awadh faced a number of grievances which linked the princes, taluqdars, peasants and sepoys to join hands in the revolt of 1857 against the British. The British wanted to annex Awadh in their empire. This conquest happened in stages which were:

Annexation of Awadh:

The Subsidiary Alliance had been imposed on Awadh in 1801, which confined the power of the Nawab over his territory as his military force disbanded, the British troops took position in the kingdom and he could not take any decision without the advice of the British resident who was attached to the court of Awadh. He could no longer assert control over the rebellious chiefs and taluqdars. The British became increasingly interested in acquiring the territory of Awadh as it was economically and geographically important for them.

By the early 1850s, all the major areas of India, e.g. Maratha land, Doab, the Carnatic, the Punjab and Bengal had been conquered by the British. By annexation policy Nawab Wajid Ali Shah (Awadh) was dethroned and exiled to Calcutta on the plea that the region was being misgoverned.

The emotional upheaval was aggravated by immediate material losses, e.g. it led cultural loss as well as many people lost their livelihood.

Dispossession of Taluqdars:

This annexation also dispossessed the taluqdars of the region. Before the advent of the British, they were powerful and maintained armed retainers, built forts and enjoyed degree of autonomy. The British were unwilling to tolerate the power of taluqdars. Immediately after the annexation, the taluqdars were disarmed and their forts destroyed. The first revenue settlement, known as the ‘Summary Settlement’, further undermined the position and authority of the taluqdars. This settlement proceeded to remove the taluqdars wherever possible. The taluqdars of Southern Awadh were the hardest hit and some lost more than half of total number of villages.

Suppression over Peasants:

By removing the taluqdars, the British wanted to reduce the level of exploitation and increase the revenue demand, and end-up the rendition system.
But now, Peasants were in more difficult situation. Under the British rule there was no guarantee that in times of hardship or crop failure the revenue demand of the state would be reduced or collection postponed, or that in times of need they would get any loan or support that the taluqdar had earlier provided. Thus, with this suppression, neither taluqdars nor peasants had any reasons to be happy with the annexation.
Now, the situation was completely changed. Many taluqdars outside the Awadh who participated in the 1857 revolt were loyal to the Nawab of Awadh and they joined Begum Hazrat Mahal (the wife of Nawab) in Lucknow to fight the British. Peasants also took participate in the revolt.

Rage of Sepoys:

There was also a rage in sepoys towards the British. Before 1820, the British were very gentle with the sepoys but in 1840 this began to change. The officers developed sense of superiority and started treating the sepoys as their inferiors. Abuse and physical violence became common. Trust was replaced by suspicion. The episode of the greased cartridges was a classic example of this.

Most of the sepoys were from Awadh and Eastern Uttar Pradesh. Now, the fears of the sepoys about the new cartridges, their grievances about leave, their grouse about the increasing misbehavior and racial abuse on the part of their white officers were the responsible factors for their rage. A whole complex of emotions and issues, traditions and loyalities worked themselves out in the revolt of 1857. In Awadh, more than anywhere else, the revolt became an expression of popular resistance of an alien order.

Important Questions for Class 12 History Chapter 11 Map Based Question

Question 13.
On the given outline map of India locate and label the following appropriately.
(i) Masulipatnam a territory under British control during 1857.
Important Questions for Class 12 History Chapter 11 Rebels and the Raj The Revolt of 1857 and its Representations Q13

Question 14.
On the map 3 centres of the Revolt of 1857 have been marked as A, B and C. Identify them and write their names on the lines drawn near them. (All India 2015, 13, 12, Delhi 2011)
Important Questions for Class 12 History Chapter 11 Rebels and the Raj The Revolt of 1857 and its Representations Q14
Answer:
A. Delhi
B. Meerut
C. Jhansi
Important Questions for Class 12 History Chapter 11 Rebels and the Raj The Revolt of 1857 and its Representations Q14(i)

Question 15.
On the same political outline map of India three places related to the centres of the revolt of 1857 have been marked as A, B and C. Identify them and write their correct names on the lines drawn near them. (All India 2014)
Important Questions for Class 12 History Chapter 11 Rebels and the Raj The Revolt of 1857 and its Representations Q15
A. Delhi
B. Lucknow
C. Varanasi
Important Questions for Class 12 History Chapter 11 Rebels and the Raj The Revolt of 1857 and its Representations Q15(i)

Question 16.
On the map 3 centres of the revolt of 1857 have been marked as A,B and C.   Identify them and write their names on the lines drawn near them. (Delhi 2013, All India 2015, 2012)
Important Questions for Class 12 History Chapter 11 Rebels and the Raj The Revolt of 1857 and its Representations Q16
Answer:
A. Delhi
B. Jhansi
C. Lucknow
Important Questions for Class 12 History Chapter 11 Rebels and the Raj The Revolt of 1857 and its Representations Q16(ii)

Question 17.
On the map 3 territories/cities under the British control in 1857 have been marked as A, B and C. Identify them and write their names on the lines drawn near them. (Delhi 2012)
Important Questions for Class 12 History Chapter 11 Rebels and the Raj The Revolt of 1857 and its Representations Q17
Answer:
A. Lucknow
B. Calcutta
C. Patna
Important Questions for Class 12 History Chapter 11 Rebels and the Raj The Revolt of 1857 and its Representations Q17(i)

Question 18.
On the map 3 important centres of the revolt of 1857 have been marked as A, B and C. Identify them and write their names on the lines drawn near them. (All India 2012, Delhi 2009)
Important Questions for Class 12 History Chapter 11 Rebels and the Raj The Revolt of 1857 and its Representations Q18
Answer:
A. Delhi
B. Bareilly
C. Jhansi
Important Questions for Class 12 History Chapter 11 Rebels and the Raj The Revolt of 1857 and its Representations Q18(i)

Important Questions for Class 12 History Chapter 11 Value Based Questions

Question 19.
“The nationalist movement in the 20th century drew its inspiration from the event of 1857. A whole world of nationalist was woven around revolt. It was celebrated as the first war of Independence in which all sections of the people of India come together to fight against imperial rule.”
1. “The revolt of 1857 marked first nationalist challenge to the English in India.” Explain by giving examples to the value imbibed and practiced by the rebels to set the beginning for it. (Delhi 2015)
Answer:
1. During the Revolt of 1857, there was strong sense of unity among people of different religion, caste and creed participated and fought equally without any distinction. The rebellion was seen as a war in which both Hindus and Muslims had equality to lose or gain. A deep respect was emerging for the leaders who sacrificed there lives for saving the society from oppressive rules of British government. British government tried to create cracks in the Hindu-Muslim unity but rebels successfully resisted this intention of British at that time.

Question 20.

  1. The Rebel Proclamation of 1857 emphasised the values of coexistence amongst different communities under Mughal Empire. Explain.
  2. Suggest two ways to bring peaceful coexistence and fraternity in the contemporary Indian society. (All India 2014)

Answer:
1. In 1857, the rebel proclamations repeatedly appealed to all the sections of population irrespective of their caste and creed. The rebellion was felt as a war, in which both Hindus and Muslims had equally to lose or gain.

2. Two ways to bring peaceful coexistence and fraternity in the contemporary Indian society are as follows:

  • In the contemporary Indian society, we can develop a sense of peaceful coexistence and mutual fraternity through creating a sense of unity and harmony within communities,
  • We need to condemn bigotry and establish a secular and democratic India for the coming generations.

Question 21.
Nawab Wajid Ali Shah was dethroned and exiled to Calcutta on the plea that the region was being misgoverned. The British Government also wrongly assumed that Wajid Ali Shah was an unpopular ruler.

On the contrary, he was widely loved and when he left his beloved Lucknow, there were many who followed him all the way to Kanpur, singing songs of lament.
The widespread sense of grief and loss at the Nawab’s exile was recorded by many contemporary observers. One of them wrote, “The life was gone out of the body and body of this town had been left lifeless… there was no street or market and house which did not wail out the cry of agony in separation of Jan-i-Alam.” One folk song bemoaned that “the honourable English came and took the country.’

  1. Why did people bemoan and show an emotional upheaval? Explain.
  2. What human values are revealed in the above passage? (Delhi 2013)

Ans.
1. British dethroned and exiled Nawab Wajid Ali Shah to Calcutta on the plea that the kingdom of Awadh was being misgoverned. Lord Dalhousie’s annexations of Awadh shocked and bewildered the people of Awadh.
The Nawab was loved, and respected by his people. The widespread sense of grief and loss at the Nawab’s exile was recorded by many contemporary observers. Everybody in the city felt sad and the city became lifeless without their king. Folk songs also lamented the separation of king.

2. The above passage reveals an emotional bond between the ruler and his subject.
It reflects their extensive love for the Nawab. When the Nawab was dethroned and exiled by the British, the people of Awadh felt as if their feelings had been mercilessly slaughtered.

This dethronement hurt their feelings and emotions and the sentimental bridge between the ruler and his subject was demolished by the British

Important Questions for Class 12 History

The post Important Questions for Class 12 History Chapter 11 Rebels and the Raj: The Revolt of 1857 and its Representations appeared first on Learn CBSE.


Important Questions for Class 12 History Chapter 12 Colonial Cities: Urbanisation, Planning and Architecture

$
0
0

Important Questions for Class 12 History Chapter 12 Colonial Cities: Urbanisation, Planning and Architecture

Important Questions for Class 12 History Chapter 12 – 2 Marks Questions

Question 1.
Name the fortification of East India Company in Madras. Mention any one feature of it. (All India 2016)
or
Mention two features of fort St. George of white town where most of the Europeans lived. (All India 2010)
Answer:
Madras was an important part. The English East India Company built its factories and fortified the city for protection. They built Fort St George in Madras. Two features of fort St. George are as follows:

  • Fort St. George was nucleus of the white town.
  • Walls and bastions made this a unique enclave. Colour and religion determined who was allowed to live within the fort i.e., only British could live. Indian merchants, artisans and other workers who had economic dealings with European merchants lived outside these forts in settlements of their own.

Question 2.
Point out one supportive and one conservative view on the opportunities provided to the Indian women in colonial cities. (Delhi 2015)
Answer:
The two views on the opportunities provided to the Indian women in colonial cities are as follows:

  1. Cities provided new opportunities for women. Middle class women express themselves through medium of journals autobiographies and books. They started working as domestic and factory worker teachers, and theatre and film accesses.
  2. Conservative feared that education and working of women would alter the basis of the entire social order.

Question 3.
Analyse how did the introduction of the railways by the British prove advantageous for Indian in the late 19th century. (HOTS; Delhi 2015)
Answer:
The introduction of railways in 1853 meant a change in the fortunes of Indian cities. The advantages due to this change were:

  • Economic activity gradually shifted away from traditional towns to new cities. Every railway station became a collect depot for raw materials and a distribution point for imported goods. Thus, the activity of the old city decreased and new cities got importance.
  • With the expansion of the railway network, railway workshops and railway colonies were established. New railway towns like Jamalpur, Waltair and Bareilly developed.

Question 4.
Explain how the conversion of census data into convenient statistical data by the Britishers in India riddled with ambiguities in late 19th century. (Delhi 2015)
Answer:
The conversion of census data into convenient statistical data by the Britishers in India riddled with ambiguities in late 19th Century. The reasons behind this were:

  • Often Indians refused to cooperate or gave evasive answers to the census officials. People were suspicious of census operation and believed that it would impose new taxes.
  • Upper caste people were unwilling to give any information regarding women folk in their family as women were not subjected to public enquiry.
  • People often claimed that they were associated with higher status, so their real identities were not revealed.
  • The figures of mortality and diseases were difficult to collect as these were not registered.

Question 5.
Name the region where the Lottery Committee initiated town planning during 18th century. Mention any one feature of it. (All India 2015)
Answer:
Lottery Committee initiated town planning in the Calcutta. Main function of the Lottery Committee in the context of colonial Calcutta was that the Lottery Committee built roads and cleared the river bank of encroachments. The Committee removed many huts and displace the labouring poor of the city.

Question 6.
Why was colonial government keen on mapping from the early years? Mention two reasons. Delhi 2014
Answer:
From the early years, the colonial government was keen on mapping due to the following reasons:

  • The colonial government felt that good maps were necessary to understand the landscape and know the topography.
  • With the useful information through maps, the government can easily control the region.

Question 7.
How did changes occur in building pattern of colonial cities after the revolt of 1857? Cite two examples.
(HOTS; All India 2014)
Answer:
Nature and design of colonial city changed after the revolt of 1857. Because after the revolt of 1857, British attitude in India were shaped by constant fear of rebellion. The two examples of this change were as follows:

  1. The British felt the need of security for white elites. So, they developed Civil lines, which were secure and segregated enclaves, away from the threat of the natives.
  2. Another example is cantonments places where Indian troops under European command were stationed were also developed as safe enclaves.

Question 8.
How were the town often defined in opposition to rural areas during pre-colonial times? Give any two point of difference. (HOTS; Delhi 2012)
Answer:
Generally, there was a wide difference between towns and rural areas:

  • The towns developed as the representatives of specific forms of economic activities and cultures. But cultivating land, foraging in the forest or rearing animals were the main sources of income for the rural people.
  • Another difference between the rural areas and the towns was that the towns and the cities were generally fortified, whereas the village did not have any kind of fortification.

Question 9.
How were the hill stations a distinctive feature of colonial urban development? Give two reasons. (All India 2012)
or
How did Indian hill stations beacamc racial enclave for the European in the 19th century? Explain two reasons. (Delhi 2016)
Answer:
British Government initialed the development of hill stations because of the following reasons:

  • Hill stations developed as a place of strategic importance for guarding frontiers, billeting of troops and launching operations against enemy.
  • Hill stations have cool climate. These areas are free from the disease of tropical regions, so these areas w’ere developed as sanitarium and place for recreation for the European elites.
  • As climate of hill stations were similar to climate of Europe, they became an attractive destination for rulers.

Question 10.
Why were the hill stations important for the colonial economy? Give any two reasons. (Delhi 2010)
or
How were hill stations important for the colonial economy? Give one example. (All India 2012)
Answer:
Hill stations were important for the colonial economy because:

  • With the setting up of tea and coffee plantations in the adjoining areas, influx of immigrant labour from the plains began which proved beneficial for the colonial economy. For e.g. Tea plantations of Darjeeling. With this cheap labour, British Company made huge profits.
  • The introduction of railways made hill stations more accesssible to Indians, upper and middle class Indian started to go there and it helped to improve the overall economic development of the hill stations.

Question 11.
Give any two features of colonial cities after 1850 in India. (Delhi 2008)
Answer:
Two features of colonial cities after 1850 in India were as follows:

  1. Institutions were set up to regulate economic activity and demonstrate authority of a new ruler.
  2. The colonial cities grew as new commercial and administrative centres.

Important Questions for Class 12 History Chapter 12 – 4 Marks Questions

Question 12.
“A careful study of census reveals some fascinating trends of urbanisation in 19th century”. Support the statement with facts. (HOTS; All India 2013)
or
The pace of urbanisation and city development was slow after 1800 CE. Justify this statement with suitable examples. (HOTS)
Answer:
The trends of urbanisation in 19th century can be discussed through the following facts:

Stagnant Growth of Urban Population:
The growth of urban population in proportion to the total population of India was almost stagnant. From 1900 to 1940, the urban population increased from 10 to 13 percent.

Significant Variations in the Patterns of Urban Development: In this period the smaller town had little opportunity to grow economically. But Culcutta, Bombay, Madras grew rapidly and became large cities. Gradually, these three cites became the new commercial and administrative centres.

Clear Difference between Colonical Cities and Traditional Towns: The large cities functioned as collection depots for the export of Indian manufactures like cotton textiles. After the Industrial Revolution in England, these cities became the entry point for British manufactured goods and for the export of Indian raw materials. This nature of economic activities sharply differentiated these colonial cities from traditional towns.

Changes due to the Introduction of Railways: The introduction of railways further deregulated the pace and uniformity of urban development. Economic activities were accelerated in Calcutta, Bombay and Madras after the introduction of Railways. The traditional towns were lagged behind in growth. For e.g. Mirzapur was a famous collection centre of cotton and cotton goods from the Deccan. When a rail link was made to Bombay, this town witnessed a decline. On the other hand, with the expansion of the railway network, railway workshops and railway colonies were established, for e.g. Jamalpur, Waltair and Bareilly.

Important Questions for Class 12 History Chapter 12 – 8 Marks Questions

Question 13.
“The architecture in colonial Bombay represent ideas of imperial power, nationalism and religious glory.”
Support statement with example. (All India 2015)
or
Taking the examples of Bombay (Mumbai), explain how the imperial vision of the British was realised through town planning. (Delhi 2008)
or
Describe the characteristics of the public buildings built in the new classical style with special reference to ‘Town Hall’ of Bombay.
Answer:
With the expansion of economy the architecture or town planning of Bombay changed a lot. These changes are as follows:
1. In the mid-nineteenth century; many new building were constructed in Bombay and the architectural style was European. The British wanted to create a familiar landscape in an alien country by adopting this architectural style. They also thought that European styles symbolised their superiority, authority and power. European style of buildings marked the difference between the buildings of colonial masters and their Indian subject.

2. Gradually, Indians got used to European architecture and accepted these as their own. British in turn adapted some Indian styles e.g. bungalow which was derived from . Bengali hut. Bungalow was used by
government officers in Bombay and all over India. The surrourding veranda kept the bungalow cool in summer. These ensured privacy without daily social contact with Indians.

3. For public bindings, three broad architectural styles were adapted in India. The Town Hall in Bombay was built in new classical style. Elphinstone Circle or Horniman Circle was inspired from models in Italy. Neo-Gothic structure was also adapted for making building like the secretariat, University of Bombay and Eight Court, etc. Victoria Terminus is the most spectacular example of the Neo-gothic style. The Gateway of India, Taj Mahal hotel built by Jamsetji Tata were followed the Indo-Saracenic style.
Taj Mahal hotel became a challenge to the racially exclusive club and hotel maintained by the British.

4. The increasing population due to migration and lack of space in Bombay led to a type of building unique to it. This was known as chawl, the multi-storeyed single-room apartment with long open corridor built around a courtyard. Such buildings housed a large number of families sharing common spaces and this type of building helped in the growth of neighbourhood identity and solidarity.

Question 14.
Explain the changes reflected in the history of urban centres in India during the 18th century with special reference to network of trade. (Delhi 2012)
or
Describe the changes which occurred in the cities during the 18th century.
Answer:
The towns underwent many significant changes during the 18th century which were as follows:

Decline of Old Towns and Emergence of New Towns:
The political and commercial reorganisation, the old towns headed towards decline and new towns were developed in the 18th century. With the decline of the Mughal power, the towns associated with their adminisration also started declining. Delhi and Agra, the Mughal capital cities started losing their political importance.

Increasing Importance of Regional Capitals:
The regional capitals such as Lucknow, Hyderabad, Seringapatam, Pune, Baroda and Tanjore started gaining importance. The traders, administrators, artisans and other people in search of work and patronage began to reside in new capitals leaving the old Mughal centres. Some local notables and officials used new urban settlements like qasbah and ganj. The effects of political decentralisation were uneven. Some areas became strong for economic activity and in some areas political uncertainty led to economic decline.

Changes in Trading Networks:
The changes taking place in the networks of the trade also influenced the history of the urban centres. The European commercial companies had established their settlement at various places of the country during the Mughal period. These were Panaji by the Portuguese, Masulipatnam by the Dutch, Madras by the British and Puducherry by the French. By the end of the eighteenth century, the land based empires in Asia were replaced by the powerful sea-based European empires. The nature of society was regulated by forces of international trade, mercantilism and capitalism.

Decline of Renowned Trading Centres:
A new phase of change came into existence by the middle of the 18 th century .The renowned trading centres like Surat, Masulipatnam and Dhaka which had developed during 17th century, started heading towards decline and trading activities started concentrating at other places.

Impact of Battle of Plassey:
The Battle of Plassey in 1757, established British dominance in Bengal. As a result, there was a significant increase in the territories of the Company. Now many colonial port cities like Madras, Calcutta and Bombay started developing rapidly into new economic capitals.
Soon these cities grew into important centres of colonial power and administration. The people were so much attracted to these cities that these became the biggest cities in India in terms of population of about 1800.

Question 15.
Explain any three broad architectural styles used by the British for the public buildings in the colonial states with examples. (All India 2012)
Answer:
The British used three broad architectural styles for the public buildings in the colonial state. They have been described as under:

Neo-Classical /New-Classical:
It comprised construction of geometrical structures fronted with lofty pillars. It was derived from the Roman style and got popular during the European Renaissance. It was considered appropriate during the British times, since the British imagined that a style that embodied the glory of imperial Rome could now’ be made to express the glory of imperial India. The Mediterranean origins of this architecture was also thought to be suitable for tropical weather. For e.g., the Town Hall of Bombay (1883), Elphinstone Circle, etc.

Neo-Gothic:
The style was characterised by high pitched roofs, pointed arches and detailed decoration. The Gothic originated from Churches built in Northen Europe during the medieval period.

The neo-gothic style revived in the mid-nineteenth century in England. This was the time when the government in Bombay was building its infrastructure and this style was adopted for Bombay. The most spectacular example of the neo-gothic style is the Victoria Terminus, the station and headquarters of the great Indian Peninsular Railway Company. The University Hall, the University Library, Clock Tower are other examples of this style of building.

Indo-Saracenic:
It was a fusion of Indian and the European style which evolved towards the beginning of the 20th century.
The inspiration for this style was medievel buildings in India with their domes, chhatris, jalis and arches. The Indo-Saracenic style became a medium of expression by the British that they were the legitimate rulers of India. For e.g. the Gateway of India, the Taj Mahal Hotel built by industrialist Jamsetji Tata.

Question 16.
Explain why hill stations were a distinctive feature of colonial urban development. (Delhi 2008)
or
Describe the aims of establishing hill stations and cantonments in India by the British.
Answer:
Hill stations were a distinctive feature of the colonial urban development because of the following reasons:

Connection with the Needs of the British Army:
The founding and setting of hill stations was initially connected with the needs of the British army. For instance,
Simla, Mount Abu and Darjeeling were established for special purposes. Hill stations were made as cantonments for the army.

Strategic Places for Harbouring Troops:
Hill stations became the strategic places Un-accommodating troops, guarding frontiers and launching campaigns against enemy rulers.

Pleasant Climate:
The temperate and cool . climate of the Indian hills was seen as an advantage and these were free from epidemics like cholera and malaria.

Served as Sanitariums:
The hill stations where developed as sanitariums as the places where soldiers could be sent for rest and recovery from illness.

Attractive Destinations for the British:
Since the hill stations experienced the same kind of climate as of Europe, they became an attractive destination for the new rulers. It became practice of the Viceroys to move to hill stations during summer months.

Reflected Settlements Native to the British:
The hill stations w’ere characterised by settlements that were reminiscent of homes of the British and other Europeans.The buildings were deliberately built in the European style.

Linked to Diverse Groups:
The introduction of railways made the hill stations more accessible to a wide range of people including upper and middle class Indians like maharajas, lawyers and merchants.

Economic Significance:
The hill stations were important for the colonial economy in the sense that they were the important centres for tea and coffee plantations.

Important Questions for Class 12 History Chapter 12  Source Based Question

Question 17.
A rural city:
Read this excerpt on Madras from the Imperial Gazetteer, 1908:
…the better European residences are built in the midst of compounds which almost attain the dignity of parks, and rice-fields frequently wind in and out between these in almost rural fashion. Even in the most thickly peopled native quarters such as Black Town and Triplicane, there is little of the crowding found in many other towns…

  1. Where and why were better European residences built?
  2. Explain the condition of black towns.
  3. State the meaning of gradual urbanisation of Madras.

Answer:
1. The better European residences were built in the midst of compounds which almost like attain the dignity of parks. These were rice field in almost rural fashion.

2. Indian merchants, artisans and other workers who had economic dealing with Europeans merchants lived outside the St. George fort in settlements known as “Black Town”. These towns laid out in straight lines. Later a new Black Town developed and resembled like a traditional Indian town with living quarters built around its own temple and bazaars.

3. The gradual urbanisation of Madras meant that the areas between the villages were brought within the city. As a result, Madras had a semi-rural air about it.

Important Questions for Class 12 History Chapter 12 Value Based Questions

Question 18.

  1. “The colonical cities provided new opportunities for women during 19th century.” Give two examples.
  2. Explain any two values which encouraged women for their empowerment. (Delhi 2014)

Answer:
1.  The colonial cities provided opportunities for women and these were evident by following examples:

  • Women from middle class sought to express themselves through medium of journals, autobiographies and books.
  • Over the period of time women became more visible in public as they entered new profession in the city as domestic and factory worker, teacher and theatre actress.

2. women gained confidence and inspiration to do something for her own self. They developed social awareness. These confidence and awareness of women encouraged them for empowerment.

Question 20.

  1. Explain the importance of census data for the holistic development of a country.
  2. When was the first All India Census attempted? Mention two of its early aims. (Delhi 2009)

Answer:
1. The first attempt of All India Census was made in 1872. Thereafter, decennial census became a regular feature. Undoubtedly census data are of immense significance for the holistic development of a country. The census data are essential for the all round development and plannings.

2. The first attempt of All India Census was made in 1872. Its two early aims were:

  • To study urbanisation in India.
  • To know about the total number of white and non-white people living in various towns.

Important Questions for Class 12 History

The post Important Questions for Class 12 History Chapter 12 Colonial Cities: Urbanisation, Planning and Architecture appeared first on Learn CBSE.

IGNOU ID Card 2019-20 | Download IGNOU ID Card Online

$
0
0

IGNOU ID Card 2019-20: IGNOU ID Card has released on IGNOU online admission portal for all those students who have got admission in July 2019. Students can download the ID Card if their admission in IGNOU is confirmed. IGNOU Identity Card is an important document issued by IGNOU. All students must keep it with them while attending all events of IGNOU. IGNOU ID Card contains the student’s unique enrollment number. They must possess it at their study center, exam center, regional center, library, etc.

The students can get IGNOU ID Card from the regional center of IGNOU. But, students who have performed online admission in IGNOU can download New IGNOU ID Card from its official website. Students must carry their IGNOU ID Card in the exam hall. Otherwise, they will not be allowed to appear in IGNOU theory and practical exams. Also, they will not be allowed to submit IGNOU Assignments. So, students must download your ID Card to avail of the facilities provided by IGNOU. Read the article below to know more information about IGNOU Student ID Card Download.

IGNOU ID Card 2019-20

IGNOU ID Card is the mandatory document to prove yourself as a student of IGNOU. IGNOU is the national resource center for open and distance learning. In collaboration with international recognition and presence, it provides easy access to sustainable and learner-centric quality education. It provides an up-gradation of skills and training to all using advanced technologies. It ensures the development of large-scale human resources. It encourages the development of domestic integration and global understanding.

Students who have performed online admission can download their ID Card from the IGNOU website. For this, you have to provide IGNOU ID Card login details and download your New IGNOU ID Card. In the case of offline admission, students have to submit photocopies of documents and certificates at IGNOU Regional Center. Then, students will get an acknowledgment card for confirmation of admission. After this, it will take 1 or 2 months to send you IGNOU ID Card by post. But, students who will not receive their ID Card by post can visit IGNOU Regional Center. Download IGNOU Admit Card 2019 for the December TEE.

Students can also get the ID Card from their Student Handbook and Prospectus. Then, they can affix their recent passport size photograph on it. They need to fill all the required information in it. Then, get it attested by the official members of the respective regional center. After that only ID Card will become valid.

IGNOU Student ID Card Download

IGNOU ID Card Overview

ParticularsDetails
Conducting BodyIndira Gandhi National Open University (IGNOU)
Mode of AdmissionBoth Online and Offline
PurposeA mandatory document to prove yourself as a student of IGNOU
Admission SessionJuly/January 2019
Official Websiteignou.ac.in

How To Get IGNOU ID Card Download Online?

Refer to the below-listed points to download the IGNOU ID Card.

  • Go to the official website of IGNOU @ https://onlineadmission.ignou.ac.in/oldadmission/login.aspx
  • Click on the ‘Fresh Admission’ appeared under the ‘Register Online’ menu of the homepage.
  • Click on ‘Login’ and enter your valid username and IGNOU ID Card password with captcha.
  • If you are a new user, then register yourself on IGNOU online Admission portal.
  • Enter your name, program name, personal details, etc. in the form and click on ‘Submit’.
  • Click on ‘Print ID Card’ and upload the recent passport size photo in the ID Card.
  • Next, click on ‘Download ID Card’ to see the ID Card in pdf format.
  • Then, your New IGNOU Online ID Card will be downloaded in pdf format.
  • Enter your enrolment number as a password and click on Submit.
  •  Your new IGNOU ID Card will be displayed on your screen.
  • Take a color printed copy of your New IGNOU ID Card and laminate it for future usage.
  • The new IGNOU ID Card is not required to get attested from the IGNOU Regional Center.

IGNOU ID Card Download 2019 PDF

Procedure to Check IGNOU ID Card Status

IGNOU ID Card will be issued after one or two months of admission. If IGNOU approves your admission then they will send your ID Card either online or by post. Students can check the ID Card status by logging in to student login section. Otherwise, they can also check it by clicking on the ‘Online Admission’ link from the ‘Student Zone’ appeared under the ‘Student Support’ menu of the IGNOU homepage. Students must carry an Identity Card in the practical and theory exam. Refer to the below-listed points to check the status of the IGNOU ID Card

  • Go to the official website of IGNOU
  • Click on the ‘Login’ button appeared in the Student Login section.
  • Provide your valid and correct IGNOU username and password with Captcha.
  • If you are a new user then register yourself on the online IGNOU Admission portal.
  • Then, fill the correct and valid information in the form and click on ‘Submit’.
  • Next, click on the ‘Know your Status’ button to check the ID Card status.
  • Then, fill your Control Number and click on Submit to see your ID Card status.
  • If your verification process is pending then you can see the ‘Document Verification is in Progress’ status.
  • On completion of your admission process, you can see your information and download the IGNOU ID Card.

Procedure to Download IGNOU ID Card Lost

In case of loss of an ID Card, they must report it to the nearest police station and study center.  Students have to write a request letter to the study center for issuing a duplicate IGNOU ID Card. For this, they need to provide the information in the respective field of the application form. Students have to pay Rs. 200 by demand draft at the regional center location for issuance of duplicate IGNOU ID Card. On completion of the course, students have to submit their IGNOU ID Card to the official authority of the IGNOU regional center.

Students can download and fill the lost Id Card application form. Then submit it to the Official member of the respective IGNOU regional center. Refer to the below points to download the Duplicate IGNOU ID Card application form.

  • Go to the official website of IGNOU @ https://ignouadmission.samarth.edu.in/
  • Click on the ‘Downloads’ link appeared under the ‘Student Support’ section.
  • Click on the ‘Issuance of IGNOU Duplicate ID Card Application Form’ to download the form available in pdf format.
  • Then, download the Duplicate IGNOU Identity Card Application Form.
  • Take a printed copy of the IGNOU Duplicate ID Card Application Form.
  • Fill the correct and valid information in the form.
  • Then, make a demand draft of Rs. 200 in favor of Coordinator of the IGNOU regional center.
  • Attach your recent passport size Photograph with Signature.
  • Then, submit the application form to the IGNOU Regional Center.

FAQ’s on IGNOU ID Card

Question 1.
Why is the IGNOU ID Card required?

Answer:
IGNOU ID Card is the mandatory document to prove yourself as a student of IGNOU.

Question 2.
What are the facilities provided to students having IGNOU ID Card?

Answer:
Students who have their IGNOU ID Card will be allowed to appear in IGNOU theory and practical exams. Students having IGNOU ID Card will be allowed to submit IGNOU Assignments. They must possess it at their study center, exam center, regional center, library, etc. to avail of the facilities provided by IGNOU.

Question 3.
How to validate the IGNOU ID Card availed from Student Handbook and Prospectus?

Answer:
Students have to take out the ID Card from their Student Handbook and Prospectus. Then, they can affix their recent passport size photograph on it. They need to fill all the required information in it. Then, get it attested by the official members of the respective regional center. After that only ID Card will become valid.

Question 4.
What should I do in case I lose my IGNOU ID Card?

Answer:
In case of loss of an ID Card, students must report it to the nearest police station and study center. After this, they need to write a request letter to the study center for issuing a duplicate IGNOU ID Card. For this, they need to provide the information in the respective field of the application form. Also, they have to pay Rs. 200 by demand draft at the regional center location for issuance of duplicate IGNOU ID Card.

Question 5.
IGNOU ID Card will be issued for which academic session?

Answer:
IGNOU ID Card will be issued for the July/January academic session.

I hope this article will help you to get information about the IGNOU ID Card. For any queries related to the IGNOU ID Card, leave it in the comment box.

The post IGNOU ID Card 2019-20 | Download IGNOU ID Card Online appeared first on Learn CBSE.

Important Questions for Class 10 English Literature Chapter 3 The Letter

$
0
0

Important Questions for Class 10 English Literature Chapter 3 The Letter are part of Important Questions for Class 10 English Literature. Here we have given Important Questions for Class 10 English Literature Chapter 3 The Letter.

Important Questions for Class 10 English Literature Chapter 3 The Letter

The Letter —– By Dhumaketu
Quick Review

‘The Letter’ written by Dhumaketu is the story of an old coachman whose daughter Miriam, married a soldier and went to live with him. Ali missed her and gave up hunting after he realized the pain of separation. Five years passed but he kept on waiting for Miriam’s letter. He went to the nearby post-office daily in the hope of getting a letter from her. But no letter ever came for him. Rather the clerks and other officials made fun of him. They would call out his name in mischief and when Ali would go to the window they would laugh at him. Ali used to feel bad about all this. The postman started taking him to be a mad man. But Ali, not bothering about all this, returned every day to the post-office just to hear a word from his daughter or about her well-being.

Towards the end of his life, his ill-health prevented him from visiting the post-office daily. He couldn’t breathe properly. So, one day, when he visited the post-office, he told one of the clerks to do him a favour by forwarding Miriam’s letter to his grave. He offered him five golden guineas for this. There were tears in his eyes. He was never seen after that and then nobody bothered to enquire about him.

Time passed. One day, the postmaster had a problem. His daughter, who lived in another town, fell ill. He anxiously waited for news of her but there was none. It was at this moment that he was reminded of Ali and his anxiety of getting a letter from his daughter. This realisation made him truly repentant of his rude behaviour towards Ali. Meanwhile there was a letter addressed to Ali. He decided to hand over the letter to Ali himself at 4 o’clock.
That night the postmaster could not sleep. At five, he heard a soft knock at the door. He opened the door only to find Ali standing there. The postmaster handed him the letter. Ali immediately disappeared after taking the letter.

Just then, Lakshmi Das, the clerk who had taken the guineas from Ali, came there and saw the postman talking to someone. He was astonished to hear Ali’s name and so informed the postmaster that Ali died three months ago. The postmaster could not believe this. That evening, both of them went to visit coachman Ali’s grave and placed the letter there. Now, the postmaster realised the value of human feelings and emotions in terms of letter and envelopes. Now, they were not mere postcards but much more than anyone could realize.

Extract Based Questions (3 marks each)

Read the extract given below and answer the questions that follow:

Q. 1. ‘The whole universe is built up through love and the grief of separation is inescapable.” (Board 2014, Set PRE2N18, QUD9VQW)
(a) When did the speaker acquire this philosophy ?
(b) What pain has the speaker gone through ?
(c) What does the word ‘inescapable’ mean ? 
Ans. (a) The speaker here is Ali. He had been a hunter and known for his expertise in killing but now when he is
away from his own daughter he realizes it.
(b) The pain of separation.
(c) Something that can’t be avoided/prevented. (CBSE Marking Scheme, 2014)

Q. 2. The postmaster did not receive his own letter all that day. He worried all night, and getting up at three, went sit in the office.
(a) Replace any one letter of the word ‘receive’ to change its meaning.
(b) Why was the postmaster worried ?
(c) What did one night spent in anxiety teach the postmaster ?
Ans. (a)Receive—deceive.
(b)The postmaster was worried because his daughter was not well and he had not received any letter from her.
(c)One night spent in anxiety taught the postmaster that letters are not mere words, they are emotions and something which is priceless.

More Resources for CBSE Class 10

Q. 3. But when the evening of his life was drawing in, he left his old ways and suddenly took a new turn.  (Board Term-I 2013, Set 101)
(a) What does the phrase ‘evening of his life’ refer to ?
(b) What do you understand by the phrase ‘he left his old ways’ ?
(c) Why did he take a new turn ?
Ans. (a) It refers to old age of Ali.
(b) Ali had been a hunter but later he stopped ‘his old ways’ i.e., he stopped hunting animals.
(c) He took a new turn as he had realized the meaning of love and separation.

Q. 4. “In the grey sky of early dawn, stars still glowed, as happy memories light up a life that is nearing its close. An old man was walking through the town, now and again drawing his tattered clothes tighter to shield his body from the cold and biting wind”. (Board Term-I 2011, Set 44)
(a) Whose life is drawing to a close ?
(b) Where is he going and why ?
(c) What does this show about his character ? 
Ans. (a) Coachman Ali.
(b) To the post-office in order to check if his daughter has sent him a letter.
(c) He is determined and doesn’t care for physical comforts.

Q. 5. An old man was walking through the town, now and again drawing his tattered clothes tighter to shield his body from the cold and biting wind. (Board Term-12011, Set 61)
(a) Who was the ‘old man’ ? Where did he intend to go ?
(b) How did he brave the adversity of the weather ?
(c) What trait does his walking to the post-office even in biting cold weather reveal about his temperament ?
Ans. (a) The old man was coachman Ali. He intended to go to the post-office in the hope of hearing from his daughter.
(b) The poor man was ill-clad and his tattered clothes couldn’t protect him from the biting cold. Still defying the weather he held his clothes tight and continued walking.
(c) Ali’s defiant attitude towards the unfavourable weather highlights his firm determination and immense will power.

Q. 6. “Tortured by doubt and remorse, he sat down in the glow of the charcoal sigri to wait”. (Board Term-12011, Set 45)
(a) Who is the person referred to in this extract ?
(b) Why is he tortured by remorse ?
(c) What is he waiting for and why ?
Ans. (a) The postmaster.
(b) He had been cruel, callous and insensitive towards Ali.
(c) He was waiting for a letter from his daughter as she was unwell.

Q. 7. “The whole universe is built up through love and the grief of separation is inescapable”. (Board Term-12011, Set 48)
(a) When did the speaker acquire this philosophy ?
(b) What pain has the speaker gone through ?
(c) Whose love changes the speaker and how ?
Ans. (a) The speaker here is Ali. He had been a hunter and known for his expertise in killing but now when he is away from his own daughter he realizes it.
(b) The pain of separation.
(c) It is the love for his daughter Miriam that has changed the speaker. Now, he no longer hunts.

Q. 8. ‘But for the faith and love that warmed him, he could not have borne the bitter cold’. (Board Term-I 2011, Set 40)
(a) Who is being referred to as ‘he’ in the given extract ?
(b) Why was ‘he’ in the bitter cold ?
(c) How was he able to gain strength to bear the bitter cold ?
Ans. (a) Coachman Ali.
(b) He went to the post-office daily despite the bitter cold and waited for a letter from his only child, Miriam. 1
(c) His love for his daughter and faith that she would write to him gave him strength to bear the bitter cold. 1

Q. 9. ‘For several days Ali had not come to the post-office. There was no one with enough sympathy or understanding to guess the reason, but all were curious to know what had stopped the old man.’  (Board Term-12011, Set 21)
(a) Why did Ali come to the post-office ?
(b) Why had Ali stopped coming to the post-office ?
(c) Why were all curious to know ?
Ans. (a) Ali came to the post-office in the hope of finding a letter from Miriam.
(b) Ali stopped coming to the post-office because he had died.
(c) All were curious to know because he had been a regular visitor and now had stopped coming to the postoffice altogether.

Q. 10. ‘Ali came out very slowly, turning after every few steps to gaze at the post-office. His eyes were filled with tears of helplessness, for his patience was exhausted, even though he still had faith.’  (Board Term-12011, Set 23)
(a) Ali’s eyes were filled with tears because…………………..
(b) Ali had faith that…………………..
(c) His patience was exhausted because…………………..
Ans. (a) the postmaster had misbehaved with him.
(b) he would hear from Miriam.
(c) he had not received any letter from Miriam during the last five years.

Q. 11. Beholding the wooden arch of this building, the old man was filled with the joy that the pilgrim feels when he first sees the goal of his journey. (Board Term-I 2011, Set 18)
(a) Ali’s walking to the post-office daily even in biting cold weather shows his…………………..
(b) The post-office is referred to as Ali’s place of pilgrimage as he…………………..
(c) Ali’s daughter got married………………….. 
Ans. (a) optimism.
(b) went there with faith and hope.
(c) five years ago.

Short Answer Type Questions (2 marks each)

Q. 1. The postmaster says to Ali, ‘What a pest you are brother ?’ Do you agree with the statement ? Give reasons. (Board 2014, Set PRE2N18, QUD9VQW, Board Term-I 2011, Set 19)
Ans. Ali is not a pest. Though Ali comes daily to the post-office; he waits patiently without disturbing anyone. Hope lures him to the door whenever the post-office employees jokingly call out his ‘name’. But he does not rebuke them. He silently goes and sits on his seat not bothering or troubling anyone.

Q. 2. Why was Ali leading a cheerless existence ? (Board 2014, Set QUD9VQW)
Ans. Value Points :
Old and lonely, no happiness, desperately longed for a letter from his daughter. People insulted and ridiculed him.
Detailed Answer:
Ali was an old man who lived a life of loneliness. There was no happiness in his life. His only daughter had shifted to Punjab after getting married and he desperately longed for a letter from her end. People at the post office insulted him, ridiculed him but he paid no attention to them. He only wanted a letter from his daughter. It seemed that the only aim of his existence was to get a letter from his daughter which came only after his death. He didn’t receive it while he was alive and thus led a cheerless life.

Q. 3. Why did Ali visit the post-office daily ? (NCT 2014) (Board Term-I 2011, Set 28)
Ans. Ali used to visit the post-office everyday. He had been visiting the place for many years with the hope that one fine day he will receive a letter from his only daughter, Miriam. (The Letter)

Q. 4. Why could Ali not enjoy a sportsman’s pleasure of hunting any more after Miriam left him ?
(Board Term-I 2013, Set 8SRR)
Ans. Value Points:
Understood the meaning of love and separation-gave up hunting partridges-could now understand the grief of parents of the hunted animals went through after getting separated from their young ones.
Detailed Answer:
Ali was a skilled hunter. No animal could escape his eyes. The moment he saw any rabbit or partridge it was as good as in his bag. But then suddenly his life changed. His daughter Miriam got married to a soldier and went to live’ in Punjab with him. Ali got no news of her after that. He became sensitive and realized the meaning of love and separation. He could no longer enjoy a sportman’s pleasure because he felt that the animals and birds must also be having the same feelings and he stopped hunting. He could understand the grief of parents of the hunted animals which they went through after getting separated from their young ones.

Q. 5. What were Ali’s reasons for giving up hunting ? (Board Term-I 2011, Set 18, Set 41)
Ans. Ali was a sure shot. He realized the pain of separation on being separated from his daughter. So, he gave up hunting as he could no longer bear the thought of children being separated from parents.

Q. 6. How do you know that Ali was a familiar face at the post-office ? (Board Term-I 2011, Set 43)
Ans. Ali went to the post-office daily. He was the first one to be there, people knew him and laughed at him, called out his name and enjoyed seeing him jump.

Q. 7. Why according to Dhumaketu was the post-office a sacred place for Ali ? (Board Term-I 2011, Set 54)
Ans. When Ali’s only daughter, Miriam, married and went away, he realised the pain of separation and understood the loneliness and grief. It had been five years and he was anxious to receive a letter – news of well being from his daughter. So he would visit the post-office daily, as a ritual in the hope of receiving a letter from Miriam.

Q. 8. Ali had lost the zeal to do anything else except to come to the post-office and wait for his name to be announced. Comment. (Board Term-I 2011, Set 67)
Ans. Ali had lost the zeal after his daughter married and shifted to Punjab. He realized how sad life was and he gave up hunting. His only aim in life now was coming to the post-office like a pilgrimage and collecting his letter.

Q. 9. How can you say that Ali was an embodiment of love and patience ? (Board Term-I 2011, Set 59)
Ans. Ali was a loving father, always expecting a letter from his daughter who lived with her husband after marriage. Since the last five years, he had got no news of his daughter. He went to the post-office everyday to enquire if there was a letter from her. This shows that he was an embodiment of love and patience. .

Q. 10. Who was Lakshmi Das ? Why did Ali give him money ? (Board Term-I 2011, Set 53)
Ans. Lakshmi Das was one of the employees of the post-office. Convinced by his faith that he would receive a letter from his daughter. Ali gave Lakshmi Das five golden guineas to deliver the letter at his grave, when it came because he knew his end was very near.

Q. 11. How did loneliness come into Ali’s life ? (Board Term-I 2011 Set 54)
Ans. Ali was a hunter earlier. He had one daughter who got married to a soldier and left Ali. There was no news of her for five years. Ali became lonely and suffered from the pangs of love and separation. He gave up hunting. He always expected a letter from his daughter Miriam and regularly went to the post-office to look for her letter.

Q. 12. Why did the postmaster get annoyed with Ali ? (Board Term-I 2011, Set 64)
Ans. Ali asked the postmaster to write down Miriam’s name in his register as it could be useful when a letter should come from her. The postmaster was annoyed at Ali’s ignorance as Miriam’s name was of not any significance to anyone except her father – coachman Ali.

Q. 13. “Ali got up and saluting the post-office as though it housed some precious relic, went off-a pitiable figure a century behind his time.” In this extract what do you understand by the phrase ‘precious relic’ and ‘a century behind his time’. (Board Term-I 2011, Set 17)
Ans. The phrase ‘precious relic’ here means the letter from Ali’s daughter ‘Miriam’ for which he was waiting. ‘Century behind his time’ means in this fast paced world Ali happens to expect a letter from his daughter, relentlessly coming to the post-office for five long years, braving severe weather condition. So, he is old fashioned.

Q. 14. Why was Ali called a ‘mad man’ by the men at the post-office ? (Board Term-I 2011, Set 22)
Ans. Ali came everyday to the post-office without fail to look for a letter from his daughter. He had been waiting for the letter for five years. So the men at the post-office called him a mad man.

Q. 15. What kind of childhood did Ali’s daughter have? (Board Term-I 2011, Set 24)
Ans. Ali’s daughter had a very lonely childhood. She had little communication with her father as most of the time he was out of home, busy hunting with his friends.

Q. 16. What is the role of ‘the letter’ in the story by Dhumaketu ? (Board Term-I 2011, Set 25)
Ans. The whole story revolves around the letter which Ali had been waiting for. Again it is the same letter which transforms the postmaster and makes him realize the essential worth of a human letter.

Q. 17. What was Ali’s profession when he was young ?
Ans. Ali was a hunter. When Ali sighted the earth-brown partridge, the poor bird was as good as in his bag – his sharp eyes would spot the hare crouching in yellow brown shrub and in another moment it was dead, even the best hunting dogs would fail but Ali never missed to notice game nor did he ever miss his mark.

Q. 18. What brings about a change in the postmaster ?
Ans. At first the postmaster is arrogant; he rebukes Ali and is insensitive to his feelings but after separation from his daughter he realizes his mistake and goes to Ali’s grave to place the letter there.

Q. 19. Why was Ali undisturbed by the insensitivity of the people ?
Ans. Ali was a loving and devoted father. He was undisturbed by the insensitivity of people because he was desperate to get a letter and that had become a mission and all other things were insignificant.

Long Answer Type Questions (4 marks each)

Q. 1. Justify the title ‘The Letter’. (Board Term-I 2012, Set 19)
Ans. Terribly missing his daughter, indifferent to bad weather and health, Ali went to the post-office everyday without fail in the hope to receive a letter from his daughter. The employees at the post-office made fun of him. Not bothered by their jokes he returned to the post-office the next day. Even when he was not well, struggling to breathe, with clear signs of his approaching end he made to the post-office. With his patience exhausted, but faith intact he gave five gold guineas to the post-office clerk with a promise to deliver the letter at his grave after his death. The entire lesson is woven around the letter and Ali’s optimism to receive it one day.

Q. 2. Coachman Ali and the post master share feeling of guilt but their realization comes a little too late to make amends. Describe what they feel guilty about and how the realizations comes to them. (Board Term-I 2012, Set EC2,56)
Ans. Coachman Ali gambles and drinks in his younger days without caring for his family. It is only when his daughter runs away that he realizes his mistake. Life turns over a new leaf and he waits day in and day out for a letter from her which never comes. Finally, when the letter does come, he is no longer alive.
Postmaster makes fun of Ali. Only when his own daughter is ill and he gets no news of her, he realizes Ali’s pain and anguish. He feels sorry for having made fun of Ali. When the letter comes, he decides to deliver it himself and make personal amends for his behaviour but it is too late but Ali is no more.

Q. 3. After paying five gold coins to Lakshmi Das, Ali rests assured that he would get his daughter, Miriam’s letter, although at his grave. He writes down the account of the journey of his life and his feelings for his daughter. As Ali, write the diary entry in 150 words. (O. D. Comptt. 2010)
Ans.

15 September 2014 10 p.m.
Dear Diary

After meeting Lakshmi Das and giving him five golden guineas, I am feeling relieved now. I only wish that he will surely deliver Miriam’s letter at my grave. What a miserable life I have led for the last five years.

Being a staunch lover of humanity I realised that the whole universe is made through love and grief of separation is inescapable. After the marriage of my daughter Miriam, I have realized what separation is. I have not got any letter from her for the past five years.

I wanted to tell her and shpw her that I have changed. I have left hunting since the day of her marriage. I wanted to tell her how much I love her. So, I became a routine visitor to the post-office for having news of my own daughter, though I was called by the names like ‘pest’, ‘mad person’, etc. But I never minded and waited for the letter only. The postman made fun of me. The post master scolded me but I had a hope for the letter. Father’s heart would always miss the daughter though I was always humiliated by everyone in the post-office.

Now, I sense my last days are approaching. I have given five golden guineas to the clerk Laxmi Das and requested him to put my letter on my grave when it arrives. Ultimately, I have to leave for my heavenly abode believing the letter would come, though after my death.

May God bless you Miriam.

Q. 4. You are one of the villagers who have noticed Ali and his helplessness. Write a letter to your friend giving an account of the life and experiences of this lovely man. (O. D. Comptt. 2009)

Ans.
ABC Lane
Kanpur Dehat, Kanpur ‘
18 May 2014 Dear friend

Today, I would like to tell you about coachman Ali’s life story which will definitely bring tears in your eyes. A man who died grieving for his daughter and spent many years endlessly waiting for a letter from her. Coachman Ali was a clever shikari who was not able to pass even a day without hunting. But in the later half of his life, he left his old ways and his life took a new turn. When his only child Miriam got married and left him. For five years, he had no news of her. He now understood the meaning of love and separation. Whenever he waited for his daughter Miriam’s letter outside the post-office, employees of the office laughed at him and called him a mad man, but he remained undeterred. He became unwell and knew his end was near. Therefore, he handed over five gold coins to a clerk at the post-office and told him to deliver Miriam’s letter to him at his grave. When a letter for Ali arrived, the clerk, true to his promise, went to Ali’s grave to deliver Miriam’s letter. It is a story of an ordinary man who died waiting endlessly with no one to understand his grief and loneliness.

Abu

Q. 5. Lakshmi Das, the clerk makes a diary entry regretting his misbehaviour towards Ali when he pestered him. Imagine you are Lakshmi Das. Make the diary entry in 150-175 words. (Delhi II, 2008)

Ans.
18 June 2014
10 p.m.

Dear Diary

What a situation it was when Ali pestered me to take the money only to deliver the letter at his grave as he felt that the end of his life was near. I saw tears in his eyes but not his emotions and feelings. I was happy to get the golden coins and put them into my pocket. After giving me the coins, Ali was never seen again. Later I came to know that he was no more as he did not visit the post-office for a long time. I realized that I was wrong. I could not understand a father’s feelings for his only daughter. There was one of the officials who always made fun of him and spoke rudely to him, called him a pest and misbehaved. But now I am regretting my misconduct towards him. My conscience has awakened. I realize he just used to come to seek his daughter Miriam’s letter but we treated him badly.

I had to keep the promise made to him and I put the letter on his grave as promised. I feel a sense of fulfilment within myself and I will write a letter to his daughter.

Laxmi Das

Q. 6. Imagine you are the postmaster and have just gone and laid Miriam’s letter on Ali’s grave. You come back home and reflect on whatever’s happened. The newly awakened father’s heart in you is reproaching you for having failed to understand Ali’s anxiety. As the postmaster write a diary entry in about 150-175 words outlining your feelings. (Board Sample Paper 2006, Set-II)

Ans.
17 July 2014
11 p.m.

Dear Diary

Today, we had gone to deliver Miriam’s much awaited letter to Ali. But unfortunately, the letter was delivered to Ali’s grave. I am in a position to understand Ali’s concern and anxiety. My newly-awakened father’s heart is reproaching me for having failed to comprehend Ali’s misery. I have now realized the value of each letter and will never again view them merely as envelopes and postcards. My heart is filled with compassion and regret at having rebuked Ali so much that I actually visualised seeing Ali enter the post-office even though he has been dead for the past three months. I think, I will spend the rest of my life repenting my callous attitude at not having understood a person’s pain, helplessness and misery.

Value Based Questions (4 marks each)

Q. 1. Life is often a reflection of one’s own deeds. God renders us according to our deeds. Do you think Ali and the postmaster are examples of this philosophical thought ? (The Letter) (Board 2014, Set PRE2N18)
Ans. Value Points:
Life is often a reflection of one’s own deeds. God renders us according to our deeds.
Ali realized the meaning of separation only when his daughter left him; earlier he didn’t have time for her.
Post master never understood Ali’s agony and made fun of him.
He too had to face the consequences when he had to wait to get the news of his ailing daughter.(CBSE Marking Scheme, 2014)

Detailed Answer:

There is no denying the fact that life is often a reflection of one’s own deeds. God renders us according to our deeds. We have to believe in the Karma theory and the letter is a good example of this theory. Ali a skilful hunter did not know the meaning of grief and separation until he himself got separated from his daughter Miriam who left him after getting married. Earlier he didn’t have time for her as he was busy hunting animals but after his daughter left, he used to go to the post office and sit there from morning till night, waiting for a letter from her end. The postmaster always made fun of this habit of Ali. He never paid much attention to the emotions and feelings of Ali. He never understood Ali’s agony. But a day came when the postmaster had to face the same consequences when he had to go wait to get the news of his ailing daughter. He understood how difficult it was to wait day after day for something which never came. He realized that letters were not mere postcard or envelops, they were much more than that.
Thus, we find out that ‘The Letter’ is an example of a philosophical thought and people should keep it in mind to lead the life in a humanitarian way.

Q. 2. One feels other’s pain only when one goes through it himself/herself. Explain the postmaster’s change of heart in the chapter ‘The Letter’ and why it took place. (120-150 words) (Board Term-12013, Set 5007,8SRR)
Ans. Value Points:
Postmaster very practical-thinks Ali to be a pest Does not feel any sympathy Ali dies-Postmaster ‘sees’ him and talks to him Finds out about Ali’s death Personally goes to deliver the letter
Understands Ali’s pain only when his own daughter is unwell and away-feels ashamed of his behaviour-One must try to empathise with others. (CBSE Marking Scheme, 2014)
Detailed Answer: .
The postmaster in the story ‘The Letter’ was a very practical man. He used to think Ali as a pest. He had no feeling of sympathy for him or his circumstances. But then times changed and his own daughter fell ill. She lived in another city. He wanted to know about her well-being but was fully dependent on the letter of his daughter that would inform him about it. It was at this moment that he realized Ali’s pain as he himself felt it. He felt ashamed of his behaviour of calling Ali a pest. One day, while he was looking for his daughter’s letter in the heap of latest arrival of letters, he found Miriam’s letter in it. He decided to deliver it to Ali himself. Ali ‘came’ at the usual hour. He talked to him but was later informed that Ali was dead. He was shocked. He decided to go personally to his grave to deliver the letter. Thus the story teaches us to empathise with others.

Q. 3. The word ‘Letter’ is interwoven in the text and imparts us the value of letters which are living documents of human emotions. Justify.
Ans. Letters and envelopes are not merely dead pieces of paper. They are the living documents of human love and concern. Who else but Ali can explain it well who, in the whole chapter, kept on waiting for his daughter Miriam’s letter. He even gave up hunting as, after his daughter’s marriage, he realized the essence of love and the pangs of separation. These pangs of separation transformed even the postmaster who could also understand the agony of a separated father when he himself waited for his sick daughter’s letter. Only a man with a father’s heart can understand the anxiety and worry of another father separated from his child. The whole story revolves round the letter which both the postmaster and Ali waited for. Ali gave five gold guineas to Lakshmi Das to deliver his letter at his grave, after his death telling us the importance of Miriam’s letter. Thus, due importance must be given to letters and they should not be treated as merely pieces of paper. We must realize the value of relations.

Important Questions for Class 10 English Literature Chapter 3 The Letter will help you. If you have any query regarding Important Questions for Class 10 English Literature Chapter 3 The Letter, drop a comment below and we will get back to you at the earliest.

The post Important Questions for Class 10 English Literature Chapter 3 The Letter appeared first on Learn CBSE.

Important Questions for Class 10 English Literature Chapter 8 Mirror

$
0
0

Important Questions for Class 10 English Literature Chapter 8 Mirror, Film Star are part of Important Questions for Class 10 English Literature. Here we have given Important Questions for Class 10 English Literature Chapter 8 Mirror, Film Star.

Important Questions for Class 10 English Literature Chapter 8 Mirror, Film Star

Mirror —–By Sylvia Plath
Introduction

Sylvia Plath, a famous English woman poet, has personified the mirror in this short poem which has a very deep meaning. She expresses the pains and sufferings of her life in her poetry in an exceptionally candid manner.

In the poem, “A Mirror”, a mere glass has been made vocal. It is allowed to speak about itself and defend against silly charges.

It asserts that it is exact and truthful. It reflects every face and every object without any biased feelings. It only reveals the truth about the person. It is God’s eye which notices every minute detail.
‘Mirror’ reflects the poet’s concern with ageing. It reflects the reality accurately, even though people often do not like what it shows them. The ageing woman who comes before it shudders at her reflection. The idea is that time affects one terribly. One grows old and loses one’s charm and brilliance. Reality cannot be evaded, though one can evade the mirror, the true reflector of reality.

Quick Review

In this poem, the mirror itself is the narrator. It is transparent and accurate. It truly reflects what is before it. It is free from prejudices. It is not cruel but only truthful. Most of the time it keeps on reflecting the blank wall with some spots, opposite it, except when somebody comes before it or when there is darkness,
The mirror may be called God’s eye because it reflects every one exactly from all four angles without any prejudice.
The mirror has become a lake or a pool of water. A woman looks into its depth to know correctly what she looks like now. She is growing old. She turns her back to the mirror and faces the candles or the moon. They give her a false view of her age and beauty. They tell lies and mislead her. But the mirror plays no tricks. She bursts into tears. The mirror gets her tears as a reward. The mirror knows that the woman has lost her youth. She has been using the mirror ever since she was a young girl. Now when she comes before it she is terrified to see an old woman rising towards her, day after day like a terrible fish.

More Resources for CBSE Class 10

Extract Based Questions (3 marks each)

Read the extracts given below and answer the questions that follow:

Q. 1. In me she has drowned a young girl, and in me an old woman.
Rises toward her day after day like a terrible fish.  (Board Term-12013, Set 8SRR)
(a) Why does the poet refer to the ‘terrible fish’ in the last line ?
(b) Why has it been described as being ‘terrible’ ?
(c) What does the phrase ‘in me she has drowned a young girl’ mean ?
Ans. (a) The phrase ‘terrible fish’ describes the hog like wrinkled face of the old woman.
(b) Loss of her youth and beauty makes her behave like a fish trapped in the pond of time which looks terrible without any grace or elegance.
(c) Since her youth she has been admiring her reflection in the mirror.

Q. 2. I am silver and exact. I have no preconceptions ,
whatever I see I swallow immediately 
just as it is, unmisted by love or dislike. (Board Tenn-12013, Set WKYS)
(a) Who does I refer to here ?
(b) What does the poet mean when she says the mirror has no preconceptions ?
(c) Which figure of speech is used in ‘I Swallow’. 
Ans. (a) I refers to the mirror.
(b) She means that the mirror is unbiased and reflects the image objectively.
(c) Personification.

Q.3.’I am silver and exact. I have no preconceptions.
Whatever I see I swallow immediately
Just as it is, unmisted by love or dislike.’ (Board Term-12012, Set 39)
(a) What does T refer to in these lines ?
(b) What is meant by ‘I have no preconceptions’ ?
(c) Why has mirror been depicted as ‘unmisted’ ?
Ans. (a) The mirror.
(b) T reflects your image objectively.
(c) The mirror is not biased either due to love or hate.

Q.4. I am not cruel, only truthful
The eye of a little God, four cornered  (Board Term-12012, Set 37)
(a) Who is T in the above lines ?
(b) Why is T only truthful ?
(c) Which poetic device has been used in line ?
Ans. (a) The mirror.
(b) Because it reflects what it sees.
(c) Metaphor.

Q.5.It is pink with speckles. I have looked at it so long
I think it is a part of my heart. But it flickers.
Faces and darkness separate us over and over. (Board Term-12012, Set 24)
(a) What is it which is pink with speckles ?
(b) When does it flicker ?
(c) Who is ‘us’ in the last line ? 
Ans. (a) The wall. ‘
(b) When faces and darkness come in between.
(c) The wall and the mirror.

Q. 6.I think it’s part of my heart but it flickers
Faces and darkness separate us over and over  (Board Term-12012, Set 24)
(a) Who is the speaker ?
(b) What is separated from it ?
(c) The poetic device used here is……………..
Ans. (a) The mirror.
(b) The wall.
(c) Personification.

Q.7.”I am important to her. She comes and goes
Each morning it is her face that replaces the darkness
In me she has drowned a young girl, and in me an old woman
Rises toward her day after day like a terrible fish.” (Board Term-12012, Set 51)
(a) How is the mirror important to her ?
(b) How has the mirror drowned a young girl and replaced her with an old woman ?
(c) Which peotic device in used in line 4 ?
Ans. (a) It satisfies her curiosity.
(b) The young woman has been growing old day by day.
(c) Simile.

Q. 8.A woman bends over me.
Searching my reaches for what she really is
Then she turns to those liars, the candles or the moon  (Board Term-12012, Set 48)
(a) What is the woman bending over ?
(b) The candles and moon have been called liars because……………..
(c) The woman goes to them even though they are liars because……………..
Ans. (a) The mirror.
(b) They hide the blemishes and make people look beautiful in dim light.
(c) The reality is too harsh for her to bear.

Short Answer Type Questions (2 marks each)

Q.1.What does the woman search for in the mirror everyday ? (Board 2014, Set 8L1922Q, QUD9VQW)
Ans. Value Points:
The woman searches for her lost beauty in the lake and mirror-her lost young age. (CBS1 Marking Scheme, 2014)

Detailed Answer:
The woman stands in front of the mirror everyday and searches for her lost beauty in the lake and the mirror. She feels agitated of the loss of her young age as she’s not able to accept the reality of her lost youth.

Q.2.Why has mirror been called cruel ? (Board Term-I 2013, Set 7PZ8)
Or
Why does the poet call the mirror ‘cruel’ ? (Board Term-I 2012, Set 24)
Ans. Mirror is honest and shows the true reflection. It does not reflect false images so people in their agitation call it cruel.

Q.3.Why is mirror called a ‘four cornered God’ ? (Board Term-I 2012, Set 19)
Ans. The mirror is unbiased, and from all angles it looks at its subjects like God. He treats them without any preferences.

Q.4.What do you think the ‘terrible fish’ in the poem, ‘Mirror’ symbolizes ? What is the poetic device used here ? (Board Term-I 2012, Set 50)
Ans. Terrible fish symbolizes wrinkled, old face of the woman which has lost its youth and beauty. She can’t come to terms with her change. Only mirror makes her realize that she is no more young and beautiful. She feels agitated and behaves like a terrible fish.

Q.5.How has Sylvia Plath used the poetic device of ‘personification’ to describe the Mirror ? (Board Term-I 2012, Set 51)
Ans. Mirror describes itself as silver-coloured and exact. It has no preconceived notions and is not affected by love, hate or other emotions. It is objective and unbiased-woman, who bends over it can see what she really is as the mirror doesn’t lie or deceives like candles or moon. It indulges in human activities – ‘sees’, ‘swallows’, ‘mediates’ and ‘thinks’.

Q. 6. How has Sylvia Plath projected mirror ? (Board Term-I 2012, Set 53)
Ans. Sylvia Plath has projected mirror as unmisted and non-biased. Unprejudiced, with no preconceived ideology, it projects the crystal clear image of an object facing it. Having four comers, it reflects all that it captures realistically and is impartial.

Q. 7. What are the personal qualities the mirror claims to possess ? (Board Term-I 2012, Set 55)
Ans. Mirror is silver and exact. It has no preconceptions. It is unbiased and truthful. It is neither cruel nor indifferent.
It has four comers and has the eye of a little God.

Q. 8. Give evidence from the poem, ‘Mirror’ to prove that the mirror is exact and truthful. (Board Term-I 2012, Set 59)
Ans. The mirror is exact. It symbolizes truthfulness. It is free from all distortions. It shows things as they are. It doesn’t hesitate to show flaws, signs of old age or loss of beauty and youth. Objectivity is the main trait of the mirror, whatever it sees, it reflects faithfully.

Q. 9. What does the mirror do most of the time ? (Board Term-I 2011, Set 14)
Ans. The mirror spends most of its time watching and meditating on the opposite pink wall quietly. It keeps reflecting the opposite wall, so much that it has become a part of its heart.

Q. 10. What aspect of life has been discussed in the poem ‘Mirror’. Mention two poetic devices used in the poem. (Board Term-I 2011, Set 17)
Ans. The process of ageing has been discussed in this poem. The two poetic devices used in this poem are personification and metaphor.

Q. 11. Why is the woman, looking into the mirror, agitated ? (Board Term-I 2011, Set 27)
Ans. The woman is agitated because the mirror shows her the true reflection. She notices her ageing image in it and realizes that she is losing her charm.

Q. 12. What according to Sylvia Plath, are the qualities of a mirror ? (Board Term-12011,2009)
Ans. Sylvia Plath presents mirror as a symbol of truth, reality and objectivity. Unlike human beings, it is free from any preconception and prejudices, unmisted by emotions of love and hatred. Mirror has compared itself to an eye of ’ a little God, viewing everything in an unbiased and fair manner. It calls itself a lake because like a lake it reflects what is shown to it truthfully. 1

Q. 13. Why are the candles and the moon called liars ? (NCT 2014) (Board Term-12012, Set 28) 
Ans. The moon and the candles are called liars as they never reveal the truth about anyone. They give the false reflection as they make things look brighter and glowing than they actually are.

Q. 14. What does the phrase, ‘terrible fish’ symbolize in the poem, ‘Mirror’? 
Ans. The ‘terrible fish’ refers to the fear of ageing that rises from the depths of her repressed mind, it also symbolizes the woman’s self loathing and perception of herself as being unworthy of being loved and as old as a fish. !

Q. 15. Why does the woman turn to those liars, the candles and the moon in the poem ‘Mirror’ ? ,
Ans. The woman turns to the liars because they give her a false picture of being young which she is not. The mirror shows the real picture.

Q. 16. Why is it said that the mirror swallows everything it sees ?
Ans. The mirror says that whatever it sees, it absorbs that image and reflects it. It reflects the reality as it sees, uninfluenced by love or dislike.

Q. 17. Why does the woman reject the mirror and turn towards the candles and the moon ?
Ans. She is unable to accept the reality that the mirror shows her that she is ageing and isn’t pretty any more. The candle and the moon don’t show her the harsh reality that she has lost her youth and beauty.

Long Answer Type Questions (4 marks each)

Q. 1. As the central character of the poem The Mirror, write a letter to your best friend sharing your fear of ageing. (Board 2014, Set PRE2N18, QUD9VQW)
Ans. Letter writing (Value Points): ^

Content-2 marks

– what I look in the mirror-do not want to believe it
– I’m really scared of losing my beauty as I’m growing older
– Still want to look magnificent
– The thought of growing old is killing
– Do you also have the same fears
– Please help me come out of this situation

Detailed Answer:
463, ABC Street
London
14th May 20 xx

Dear Pam

You were the first one to enter my thought when I wanted to share with someone my fear of ageing. I shudder at my reflection in the mirror. I do not want to believe that I am growing old with each passing day. I am losing my beauty and moving towards old age and that scares me. I want to look magnificent and gorgeous as ever.

This ageing process is scaring the wits out of me. The thought of growing old is killing. I feel that I am losing my charm and brilliance which is not acceptable to me. I know that this is the reality of life and I should not be thinking this way but somehow I am unable to cope up with the thought. I feel dejected and frustrated. Is this dejection and frustration universal ? Do you also feel the same way ? Are you also scared of getting old ?

Please help me come out of this situation. I am concerned and don’t want to get affected in such a terrifying manner.

Yours sincerely Sylvia

Q. 2. Imagine you are the mirror. Make a diary entry on a day in your life. (Board Term-12011, Set 41)

Ans. 31 March, Friday 9 p.m.
Dear Diary

Today, I was just wondering how I spend my whole day. I realized that most of the time I meditate on the opposite wall. It is only the faces and darkness that separate us. Every morning a lady bends over me to know

what she really is but when I reflect her image faithfully, she is upset and agitated. She feels so because she sees her exact image of an ageing woman. I am exact. I have no preconceptions. I reflect the image in an unbiased way as I am unmisted by love or dislike. That’s why the woman feels agitated. But I am happy with myself as I show people how and what they exactly are.

Q. 3. How does Sylvia Plath effectively use personification in her poem ‘The Mirror’ ? (Board Term-12011, Set 33)
Ans. ‘The Mirror’ is a perfect example of personification. The poet has successfully endowed human qualities to the mirror. The mirror tells about itself ‘I am exact’. It has no prejudices or preconceptions in its mind. It shows images as they are reflected in it. The whole day it meditates on the opposite wall which is pink and speckled. It is unmisted and when the lady looks into the mirror, she gets agitated and upset at seeing her ageing image. Thus, Sylvia Plath has effectively used personification in this poem.

Q. 4. What message does the poet wish to convey through the poem ‘Mirror’ ?
Ans. ‘Mirror’ is a reflective poem. The mirror reflects the life of human beings in all its reality. Its reflection is neither twisted nor distorted. It describes the true nature of things. It has no preconceptions and personal likes or dislikes and gives an exact image of what comes before it. It is not affected by any feelings of love or hatred. In this modem era, everyone is living under an illusion. Everyone feels like the woman who looks into the mirror which is a lake for her, feels like a fish out of water and is not prepared to accept the reality of advancing age. Old age or ugliness is a hard and cruel fact that can’t be escaped. Here the idea and the message of ageing is conveyed through the poem by the poet Sylvia Plath.

Important Questions for Class 10 English Literature Chapter 8 Mirror, Film Star will help you. If you have any query regarding Important Questions for Class 10 English Literature Chapter 8 Mirror, Film Star, drop a comment below and we will get back to you at the earliest.

The post Important Questions for Class 10 English Literature Chapter 8 Mirror appeared first on Learn CBSE.

IGNOU Admit Card 2019 (Released) | Download the IGNOU TEE December Hall Ticket from Here

$
0
0

IGNOU Admit Card 2019-20: IGNOU Admit Card 2019 released on 21st November 2019, on the official website of IGNOU. IGNOU Term-End Examination (TEE) will be held from 2nd December to 30th December 2019. Candidates from BCA, MCA, B.Sc., and other courses can download their IGNOU Admit Card 2019 for the December TEE. Candidates should enter their 9 digit enrollment number and select the chosen course to download it.

The students who have registered for the IGNOU TEE December 2019 can download the admit card until the exam day. It is mandatory to bring the IGNOU Admit Card along with the Identity Card issued by the Regional Center/University. Otherwise, candidates will not be allowed to appear in the IGNOU TEE December 2019. Read the article below to know more information about IGNOU Admit Card 2019.

Direct Link to Download IGNOU Hall Ticket

IGNOU Hall Ticket

IGNOU Hall Ticket December 2019

IGNOU Admit Card is the most important document to appear in the IGNOU TEE December 2019. The Indira Gandhi National Open University has released the online notification for the IGNOU TEE application form. IGNOU is a popular university that offers Distance and Open Education to many students across the world. Around 4 million students have registered under IGNOU for distance learning until now. It conducts the Term-End Examination for various courses twice a year. It will be held in the month of June and December every year. Candidates must submit the application form along with the fees to appear in IGNOU TEE. IGNOU ID Card has released on IGNOU online admission portal for all those students who have got admission in July 2019.

The Datesheet for the exam releases in online mode only before one month of the exam. The TEE will be conducted in two sessions that is Morning and Evening. To appear in the IGNOU TEE, candidates must carry their IGNOU Admit Card. IGNOU releases separate admit card for theory and practical exams. The practical exam schedules can be checked at the regional centers. The admit card for practical exams will also be released online.

The candidates who have registered for IGNOU TEE 2019 on or before the last date can only download the admit card. Candidates must pay the registration fee to complete the registration process. Candidates must also be submitted the assignments for the chosen courses to avail of the IGNOU Admit Card 2019. They will not receive the admit card via post or any other medium. They can only download it online from the official website of IGNOU.

IGNOU Admit Card Overview

ParticularsDetails
Conducting BodyIndira Gandhi National Open University (IGNOU)
Exam NameIGNOU Term End Examination (TEE)
IGNOU Admit Card Release Date21st November 2019
IGNOU TEE Date2nd December to 30th December 2019
Official Websiteignou.ac.in

IGNOU Admit Card Download Process

Candidate should visit the official website of IGNOU to download the hall ticket. Refer to the below-listed points to download the IGNOU Admit Card.

  • Go to the official website of IGNOU
  • Click on the ‘Student Support’ appeared on the top menu of the homepage.
  • Next, click on ‘Results’ to go to the results page.

IGNOU Students Support

  • Click on the ‘Hall Ticket/ Admit Card’ link appeared on the left menu of the Results page.

IGNOU Hall Ticket-Admit Card

  • Then, click on the ‘Hall Ticket for December 2019 TEE (New)’ link appeared under the ‘Hall Ticket/ Admit Card’ section.
  • Enter your 9 digit enrollment number, select the program and click on ‘Submit’ to download the admit card.
  • Then, download IGNOU Hall Ticket/Admit Card that appeared on your screen.
  • Take a printout of your IGNOU Admit Card and keep it safe until the completion of your IGNOU TEE.

Details Mentioned on IGNOU Admit Card December 2019

IGNOU Admit Card contains important information of candidates. The candidate’s exact information which has given during registration will be printed on the IGNOU Admit Card. So, candidates must check once the information mentioned in the admit card is correct or not. IGNOU Admit Card contains the following information of candidates.

  • Name of candidate
  • Candidates Enrollment Number assigned by the University
  • Name of the Programme Applied For
  • Control Number
  • Candidates Address details
  • Signature and Photograph of the candidate
  • Name of examination center
  • Exam Center Code
  • Course Code
  • Venue of examination
  • Exam Sessions
  • Important instructions for the examination

IGNOU Admit Card Exam Day Instructions

Refer to the below-listed Exam Day Instructions to avoid any problem during the examination.

  • First of all, candidates should bring their IGNOU TEE Admit Card along with the identity card issued by the regional center/university. Otherwise, candidates will not be allowed to appear in the IGNOU TEE.
  • In the case of misplacement of the identity card, they must contact the regional center/university to avail of a new one.
  • It is mandatory for the candidates to leave their calculators, mobiles or any electronic instruments outside of the exam hall. Otherwise, they can’t appear in the IGNOU TEE.
  • It is better for the candidates to reach the exam hall 20 minutes prior to the beginning of the exam.
  • Candidates found to be breaking any discipline will be disqualified from the examination.

IGNOU Admit Card for Practical Examination

IGNOU will issue separate admit card for TEE Practical Exams to the students of PGDLAN/MLIS/BLIS/MCA/BCA. These students should contact the respective Regional Centers in the last week of December 2019 for their practical examinations. The theory exam centers for BLISc. Or Library Science is not yet organized for the conduct of the practical exams. Students should contact the center superintendent or check the university notice board for the practical exam center.

IGNOU Date Sheet

IGNOU has published the date sheet for the December 2019 Term End Examinations on 8th November 2019. It contains the dates for all the exams held on different dates. As per IGNOU date sheet 2019, the TEE will be held from 2nd December to 30th December 2019. It will be conducted in the morning and evening sessions. The TEE practical exams will be held separately. So, candidates must check the IGNOU TEE 2019 date sheet to appear in the exam accordingly.

IGNOU Admit Card Exam Centres

IGNOU has set up 855 exam centers including 16 overseas and 90 centers in jail. There are 56 Regional, 6 IGNOU-Army Recognized Regional, 4 IGNOU-Navy Recognized Regional and 1 IGNOU-Assam Rifle Recognized Regional Center. These centers provide support to students and promote the system, development, and maintenance of IGNOU. Refer to the below-listed regional centers.

IGNOU Regional Centers Name

Hyderabad (01)Imphal (17)
Bangalore (13)Bhagalpur (82)
Bijapur (85)Chandigarh (06)
Darbhanga (46)Dehradun (31)
Delhi-3 (38)Deoghar (87)
Agartala (26)Ahmedabad (9)
Jaipur (23)Jammu (12)
Karnal (10)Khanna (22)
Koraput (44)Lucknow (27)
Nagpur (36)Noida (39)
Port Blair (02)Pune (16)
Rajkot (42)Ranchi (32)
Shimla (11)Siliguri (45)
Varanasi (48)Vatakara (83)
Aizawl (19)Aligarh (47)
Bhopal (15)Bhubaneswar (21)
Chennai (25)Cochin (14)
Delhi-1 (07)Delhi-2 (29)
Gangtok (24)Guwahati (04)
Itanagar (03)Jabalpur (41)
Jodhpur (88)Jorhat (37)
Kohima (20)Kolkata (28)
Panaji (08)Patna (05)
Madurai (43)Mumbai (49)
Raghunathan (50)Raipur (35)
Saharsa (86)Shillong (18)
Vijayawada (33)Visakhapatnam (84)
Srinagar (30)Trivandrum (40)

IGNOU Assam Rifle Recognized Regional Centre

Shillong (81)

IGNOU Navy Recognised Regional Centers

  • New Delhi (71)
  • Visakhapatnam (73)
  • Kochi (74)
  • Mumbai (72)

IGNOU Army Recognised Regional Centers

  • Kolkata (51)
  • Chandimandir (52)
  • Udhampur (55)
  • Lucknow (53)
  • Jaipur (56)
  • Pune (54)

IGNOU Admit Card Contact Details

In case of any help or queries related to IGNOU Admit Card, students can contact using the below-given details:

  • Phone Number: 29533870 / 29572516 / 29572513
  • Email ID: ssc@ignou.ac.in

FAQs on IGNOU Admit Card

Question 1.
What is the release date of IGNOU Admit Card for December TEE 2019?

Answer:
IGNOU Admit Card 2019 released on 21st November 2019, on the official website of IGNOU. Candidates from BCA, MCA, B.Sc., and other courses can download their IGNOU Admit Card 2019 for the December TEE.

Question 2.
Who are eligible to download the IGNOU Admit Card for December TEE 2019?

Answer:
Refer to the below eligibility conditions to download the IGNOU Admit Card for December TEE 2019:

  • The candidates who have registered for IGNOU TEE 2019 on or before the last date.
  • Candidates who have paid the registration fee.
  • Candidates who have submitted the assignments for the chosen programs.

Question 3.
Is the IGNOU Admit Card for December TEE 2019 Theory and Practical releases separately?

Answer:
Yes, the IGNOU Admit Card for December TEE 2019 Theory and Practical releases separately.

Question 4.
Can I get the IGNOU Admit Card at my home address?

Answer:
No. IGNOU Admit Card will not be sent via post or any other medium. You can only download it online from the official website of IGNOU.

Question 5.
Where will I get duplicate IGNOU Admit Card in case of misplacement?

Answer:
You can visit the Regional Center to get your duplicate IGNOU Admit Card.

I hope this article will help you to get information about IGNOU Admit Card. For any queries related to IGNOU Admit Card, leave it in the comment box.

The post IGNOU Admit Card 2019 (Released) | Download the IGNOU TEE December Hall Ticket from Here appeared first on Learn CBSE.

Viewing all 9452 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>