Skip to main content

ads1

Class 9th CBSE Economics Chapter :-1 The Village Palampur

 Class 9th CBSE Economics Chapter :-1 The Village Palampur 

NCERT QUESTIONS


Exercises

Q.2 Modern farming methods require more inputs which are manufactured in industry. Do you agree?

Answer:

Yes, I agree that modern farming methods require more inputs than traditional farming. It requires inputs like chemical fertilizers, pesticides, pump sets, farm machinery, electricity, high yielding varieties of seeds, and water supply. Most of these outputs are manufactured in industries. Similarly, water supply is provided by canals and tanks.


Q.3 How did the spread of electricity help farmers of Palampur?

Answer:

Electricity came early to Palampur. Its major impact was to transform the system of irrigation. In Palampur, electricity powers all the tube wells in the fields and is used in various types of small businesses. People say that the electric-run tubewells could irrigate much more than the ordinary ones


Q.4 Is it important to increase the area under irrigation? Why?

Answer:

Yes, it is important to increase the area under irrigation because if a country has to increase its production it has to increase the irrigational area. 

Q.5 Construct a table on the distribution of land among the 450 families of Palampur.

Answer:

Distribution of land among 450 families of Palampur is as follows:


Q.6 Why are the wages for farm labourers in Palampur less than minimum wages?

Answer:

The wages for farm labourers in Palampur are less than the minimum wages because:


There is heavy competition for work among the farmers.

Employment is less and farmers are more and, therefore, farmers have to be content with what they are earning.

Land is owned by landlords who desire to earn more and more profit by giving minimum wages.

The farmers are illiterate and unaware of the amount of minimum wages set by the government


Q.8 What are the different ways of increasing production on the same piece of land? Use examples to explain.

Answer:

The land area under cultivation is practically fixed so in order to increase the production from a same piece of land, we can use the following methods:


Multiple cropping. It is the most common way of increasing production on a given piece of land. It means when two or more crops are grown on the same piece of land during a year, i.e., Indian farmers should grow at least two main crops in a year. In India, some farmers are growing third crop also over the past 20 years such as in Palampur jowar and bajra are grown and potato is the third crop.


Modern farming methods. Production on the same piece of land can also be increased by adopting modern farming methods. The Green Revolution in India is a remarkable example of it. Under modern farming, more cultivable area should be brought under high yielding varieties of seeds and irrigation. The use of simple wooden plough must be replaced by tractors and with increased use of farm machinery such as tractors, threshers and harvesters, make cultivation faster and also help in increasing yield per hectare.


Q.9 Describe the work of a farmer with 1 hectare of land.

Answer:

A farmer who works on 1 hectare of land is called a small farmer. He carries out the following activities:


Ploughs the field by bullocks or tractors

Sows the seeds by simply sprinkling by hands

Waters the field with the help of a Persian wheel

Sprays the insecticides by manual pumps

Cuts the crops by hand-operated tools


Q.10 How do the medium and large farmers obtain capital for farming? How is it different from the small farmers?

Answer:

All farmers require capital during production. They require fixed as well as working capital. The medium and large farmers have their own savings from farming. They are able to arrange for their own capital. They sell their surplus in the market. A part of this is saved and the rest is used to buy machinery and other raw materials or lend it to the small farmers to make more profit.


Whereas small farmers have to borrow money to arrange for capital. They borrow from large farmers, moneylenders and traders who supply them various inputs for cultivation. They are charged very high rate of interest by these moneylenders and traders or even the large farmers.


Q.11 On what terms did Savita get a loan from Tejpal Singh? Would Savita’s condition be different if she could get a loan from the bank at a low rate of interest?

Answer:

The terms of loan of Savita taken from Tejpal Singh are:


She took loan of ₹ 3.000 at an interest rate of 24 percent.

She would have to repay the loan in four months.

She also has to work on Tejpal’s field as a farm labourer during the harvesting season at ₹ 35 per day.

The bank could have provided her loan at a low rate of interest. In addition, she would have devoted more time to her own field of 1 hectare, instead of working as a farm labourer for Tejpal Singh.


Q.14 What can be done so that more non-farm activities can be started in villages?

Answer:

At present, there are not so many farm activities in the villages. Out of every 100 workers in rural areas of India, only 24 workers are engaged in non-farm activities.

The steps that can be taken are:


Supply of electricity in villages needs to be improved. This will encourage the establishment of small-scale industries.

More villages should be connected to the towns and cities, through all-weather road transport

and telephonic systems.

The villages should have markets where goods and services produced can be sold such as in Palampur, neighbouring towns and cities provide markets for milk, jaggery, and wheat.



ads2

Popular posts from this blog

11. Write a Java program to input basic salary of an employee and calculate its Gross salary according to following:

    11. Write a Java program to input basic salary of an employee and calculate its Gross salary according to following: Basic Salary <= 10000 : HRA = 20%, DA = 80% Basic Salary <= 20000 : HRA = 25%, DA = 90% Basic Salary > 20000 : HRA = 30%, DA = 95% Static Solution :-  class salary {     public static void main(String args[])     {     double basic=20000.50,gross,da,hra;     if(basic <=10000)     {         da = basic * 0.8;         hra = basic *0.2;     }              else if(basic <=20000)     {         da = basic * 0.9;         hra = basic *0.25;     }     else     {         da = basic * 0.95;         hra = basic * 0.3;     }     gross = basic + da + hra;     System.out.println("The Gross Salary is :-"+gross);     } } Output :-  Dynamic Solution :-  class salary {     public static void main(String args[])     {     double basic=20000.50,gross,da,hra;     Scanner in = new Scanner(System.in);     System.out.println("Enter the Basic Salary

1. Given the school result data, analyses the performance of the students on #different parameters, e.g subject wise or class wise.

1. Given the school result data, analyses the performance of the students on #different parameters, e.g subject wise  or class wise. Solution :-   # x-axis is shows the subject and y -axis # shows the markers in each subject # import pandas and matplotlib  import pandas as pd  import matplotlib.pyplot as plt # Simple Line Chart with setting of Label of X and Y axis, # title for chart line and color of line  subject = ['Physic','Chemistry','Mathematics', 'Biology','Computer'] marks =[80,75,70,78,82] # To draw line in red colour plt.plot(subject,marks,'r',marker ='*')     # To Write Title of the Line Chart plt.title('Marks Scored') # To Put Label At Y Axis plt.xlabel('SUBJECT')           # To Put Label At X Axis plt.ylabel('MARKS')             plt.show() Output :- 

24.Create a Data Frame quarterly sales where each row contains the item category, item name, and expenditure. Group the rows by the category and print the total expenditure per category.

24.Create a Data Frame quarterly sales where each row contains the item category, item name, and expenditure. Group the rows by the category and print the total expenditure per category. import pandas as pd  # initialize list of lists data = [['CAR','Maruti',1000000],['AC','Hitachi',55000],['AIRCOLLER','Bajaj',12000], ['WASHING MACHINE','LG',15000],['CAR','Ford',7000000],['AC','SAMSUNG',45000],['AIRCOLLER','Symphony',20000],['WASHING MACHINE','Wirlpool',25000]] Col=['itemcat','itemname','expenditure'] # Create the pandas DataFrame qrtsales = pd.DataFrame(data,columns=Col) # print dataframe.  print (qrtsales) qs=qrtsales.groupby('itemcat')  print('Result after Filtering Dataframe')  print(qs['itemcat','expenditure'].sum()) Output :-