autumn break holiday homework biology

13
Autumn Break Holiday Homework Biology Class: XI A 1. Revise all the chapters for half yearly. 2. Complete the project of NCSC. Autumn Break Holiday Homework Biology A) Chapter 7 Rotational motion 1-Expression for the center of mass and its numerical. 2-Equation of rotational motion . 3-Relation between torque and angural momentum . 4-Geometrical meaning of them angural momentum . 5-Relation between the rotational kinetic energy and the moment of inertia . 6-Radius of gyration . 7-Theorm of parallel asix and perpendicural axis and the moment of inertia of a ring and a disk . 8-Theorm of conservation of energy and its application . B) chapter 6 work ,energy and power 1-Work done by the variable force . 2-Conservative and non conservative forces . 3-Conservation of machenical energy and free falling of the body 4-Potential energy of a spring . 5-Work energy thoerm . 6-Elastic collision in 1 dimension . C) chapter 5 Laws of the motion 1-Application of impulse .

Upload: others

Post on 18-Dec-2021

3 views

Category:

Documents


0 download

TRANSCRIPT

2. Complete the project of NCSC.
Autumn Break
Holiday Homework
1-Expression for the center of mass and its numerical.
2-Equation of rotational motion .
3-Relation between torque and angural momentum .
4-Geometrical meaning of them angural momentum .
5-Relation between the rotational kinetic energy and the moment of inertia .
6-Radius of gyration .
7-Theorm of parallel asix and perpendicural axis and the moment of inertia of a ring and a disk .
8-Theorm of conservation of energy and its application .
B) chapter 6 work ,energy and power
1-Work done by the variable force .
2-Conservative and non conservative forces .
3-Conservation of machenical energy and free falling of the body
4-Potential energy of a spring .
5-Work energy thoerm .
C) chapter 5 Laws of the motion
1-Application of impulse .
2-Second law of the motion is the real law of the motion .
3-connected motion and laws of limiting fiction .
4-prove that pull is eiser than pushing a roller .
5-Banking of the road and bending of the cyclist and numerical based on it.
D) CHAPTER 4 AND CHAPTER 3 MOTION IN A STRAIGHT LINE AND MOTION IN PLANE
1-Triangural and parrllogram law of vector addition.
2-Numerical on cross product and dot product
3-Numericals on rain and man application.
4-Horizontal and augural projection and its numerical.
5- centripetal accretion
Autumn Holiday Home Work
XI (Economics)
WRITTEN WORK
1. What was the focus of the economic policies pursued by the colonial government in
India? What were the impact of these policies?
2. While the subsidies encourage farmer to use new technology, they are a huge burden on
government finance. Discuss the usefulness of subsidies in the light of this fact.
3. Economic policy of 1991 stressed on removing unnecessary restrictions and creating a
more competitive environment to increase its interaction with the world economy. Which
value in your opinion have been realised as per New economic policy?
4. Discuss economic reforms in India in the light of social justice and welfare.
5. Do you think the Navaratnas policy of the government helps in improving the
performance of public sector undertakings in India? How?
6. You are the head of village panchayat. You have been asked by the state government to
help the government in removal of poverty from your rural block. What will you do to
help the government?
7. Explain the three rural poverty alleviation programmes which are currently in operation.
REVISION WORK
2. Indian economy (1950-1990)
3. Collection of data
4. Organisation of data
6. Measures of central tendency- mean, median & mode.
PROJECT WORK
HOLIDAY HOMEWORK
XI B
1. Solve all practical questions of Cashbook, Other Subsidiary Books, and Trial Balance.
2. Practice make format of all Chapters of Syllabus in homework notebook.
3. Revise complete syllabus with theory.
HOLIDAY HOMEWORK
BUSINESS STUDIES
XI B
2. Learn and write following differences in homework notebook
Business, Profession and Employment.
Industry, Commerce and Trade
Memorandum of Association and Memorandum of Articles.
Departmental Undertakings, Public Corporations and Government Companies.
Public Enterprises/Sector and Private Enterprises/Sector.
Real Time Gross Settlement (RTGS) and National Electronic funds transfer (NEFT)
3. Learn complete syllabus with definitions.
Class XI Informatics Practices Autumn Break Holidays Homework 1. What is the difference between SINGLE and SINGLE_INTERVAL selection modes of
JList?
(c) Rewrite the following statement using if-else
n = (a > b ) ? a : b;
(d) Mr. Rajan working for “ABC” Software Company has designed the following
application. Help him to write the code for the following.
(i) When “Calculate” button is clicked, Simple Interest should be calculated by
getting the values from textfields(named principalTF, rateTF and timeTF) and
displayed in textfield (named siTF).
ii)When “Reset” button is clicked, all the textfields should be cleared.
iii) When “Exit” button is clicked, application should be closed.
Q.3 (a) Ramesh wants to disable some of the jTextFields during runtime. Suggest him the
suitable method to be used for this purpose.
(b) Name any two container controls in Java.
(c) Write the java statement to declare a variable named ‘Status’ which may hold ‘true’
or ‘false’ value.
(d) Which method is used to get selected text from jComboBox1 control?
(e) Vivek works in Aryan International School. He has developed the following
interface in Netbeans with controls to calculate the total fee:
Controls Name Purpose
btnClr Clear
The tuition fee is Rs. 1200/- and Computer fee 300/- for Secondary.
The tuition fee is Rs.1000/- and Computer fee is 200 for Primary section. The total
fee is calculated as the sum of Tuition Fee and Computer Fee.
1. Write the code for calculate and display Total fee, Tution Fee and Computer
Fee should be displayed in corresponding text boxes, when Calculate Fee
button is clicked.
2.
3. Write the code for Clear button to clear all the text boxes and Secondary Radio
button should be selected.
Class XI Computer Science Autumn Break Holidays Homework Q.1 What is the output of following program? int x = 10, y;
y = x++;
cout << y;
Q.2 What is the output of following program? int result = 4 + 5 * 6 + 2;
cout << result;
Q.3 What is the output of following program? int x = 10, y;
y = x++;
cout << x;
Q.4 What is the output of following program? int x = 10, y;
y = x++ + x + ++x;
cout << setw(5) << 77 << endl;
float net = 5689.2356;
cout.precision(2); cout.setf(ios::fixed | ios::showpoint);
cout << net << endl;
7. How ‘/’ operator is different from ‘%’ operator?
Ans: ‘/’ operator is used to find the quotient whereas % operator is used to find the remainder.
8. Which type of operator is used to compare the values of operands?
9. How will you alter the order of evaluation of operator?
10. What is the unary operator? Write 2 unary operators .
11. What is the use of break statement in switch.. case?
12. Write a program to check whether a given number is palindrome or not.
13. Write a program to print fibonaci series .
14. Write a program to find whether a given number is even or odd or prime.
15. Write a program to print table of a given number.
16. Write a program to find whether a year is leap or not.
17. Differntiate between entry controlled and exit controlled loop.
18. What do you mean by infinite loop and empty loop?
19.
Q.1 What is the output of following program? int x = 10, y;
y = x++;
cout << y;
Q.2 What is the output of following program?
int result = 4 + 5 * 6 + 2; cout << result;
Q.3 What is the output of following program? int x = 10, y;
y = x++;
cout << x;
Q.4 What is the output of following program? int x = 10, y;
y = x++ + x + ++x;
cout << setw(5) << 77 << endl;
float net = 5689.2356;
cout.precision(2); cout.setf(ios::fixed | ios::showpoint);
cout << net << endl;
7. How ‘/’ operator is different from ‘%’ operator?
Ans: ‘/’ operator is used to find the quotient whereas % operator is used to find the remainder.
8. Which type of operator is used to compare the values of operands?
9. How will you alter the order of evaluation of operator?
10. What is the unary operator? Write 2 unary operators .
11. What is the use of break statement in switch.. case?
12. Write a program to check whether a given number is palindrome or not.
13. Write a program to print fibonaci series .
14. Write a program to find whether a given number is even or odd or prime.
15. Write a program to print table of a given number.
16. Write a program to find whether a year is leap or not.
17. Differntiate between entry controlled and exit controlled loop.
18. What do you mean by infinite loop and empty loop?
HOLIDAY HOME WORK OF CLASS XI (2017- 18)
1. Show that the middle term of the expansion is
2
where n is a positive integer.


)
)
4. Find the number of different 8-letter arrangements that
can be made from the letters of the word DAUGHTER so
that
(i) all vowels occur together (ii) all vowels do not occur
together
5. What is the number of ways of choosing 4 cards from a deck of
52 cards? In how many of these,
(i) 3 are red and 1 is black.
(ii) All 4 cards are from different suits.
(iii) At least 3 are face cards.
(iv) All 4 cards are of the same colour.
6. Solve the following system of inequalities graphically:
3x + 2y ≤ 150, x + 4y ≤ 80, x ≤ 15, y ≥ 0
7. Express in the polar form and hence find modulus and
argument
x x
x x
x x
n n
n n
10. Solve the following equations sin 5 sin 3 0x x
11. Show that 3 3
cos cos 2 sin 4 4
x x x
2
x
If 2,3A , 1,2,3,4B and 3,4,5,6C verify that
(i) ( )A B C = ( ) ( )A B A C (ii) ( )A B C = ( ) ( )A B A C
14. There are 40 students in a chemistry class and 60 student in a physics
class. Find the no. of students which are either in physics class or
chemistry Class in the following cases :
i) the 2 classes meet at the same hour.
ii) the 2 classes meet at the different hr. and 20 student are enrolled in
both the subject.
Holidays Homework
Subject: English
Class: XI
Q1: Learn all the chapters of 'Hornbill' and 'Snapshot' thoroughly. (as mentioned in the
syllabus upto September)
Q2: Chapter 1-4 of the novel 'The Canterville Ghost'. Read , and learn all the question
related to it.
Q3: Practice two comprehension and two Notemaking.
Q4: Education has always been a noble profession but today, education is fast becoming
commercialized. Parent have to shell out a lot of money on coaching classes, tution fees,
etc. Write an article in 150-200 words on 'The State Of Education Today'. You are
Karun\Karuna.
Q5: You are Mohit\Malini living at C-10 Ashok vihar, Delhi. You are recently came across
beggars both adult and little children begging at the red lights. Write the letter to Editor of
Times Of India expressing your views about it.
Q6: Draft a poster spreading awareness about water conversation.
Q7: You are Karan Bajaj, a leading lawyer practising in Surat. You want to buy an
independence house at Noida to be used as office-cum-residence. Draft an advertisement
in about 50 words for the classified column of a local newspaper.
Q8: Practise integrated grammar exercises (any 5).
() : (2017 -18)
1 -
i )
ii ) -
2.
3 “ ”
4. - I
Physics holiday homework
1-Expression for the center of mass and its numerical.
2-Equation of rotational motion .
3-Relation between torque and angural momentum .
4-Geometrical meaning of them angural momentum .
5-Relation between the rotational kinetic energy and the moment of inertia .
6-Radius of gyration .
7-Theorm of parallel asix and perpendicural axis and the moment of inertia of a ring and
a disk .
B) chapter 6 work ,energy and power
1-Work done by the variable force .
2-Conservative and non conservative forces .
3-Conservation of machenical energy and free falling of the body
4-Potential energy of a spring .
5-Work energy thoerm .
C) chapter 5 Laws of the motion
1-Application of impulse .
2-Second law of the motion is the real law of the motion .
3-connected motion and laws of limiting fiction .
4-prove that pull is eiser than pushing a roller .
5-Banking of the road and bending of the cyclist and numerical based on it.
D) CHAPTER 4 AND CHAPTER 3 MOTION IN A STRAIGHT LINE AND MOTION IN PLANE
1-Triangural and parrllogram law of vector addition.
2-Numerical on cross product and dot product
3-Numericals on rain and man application.
4-Horizontal and augural projection and its numerical.
5- centripetal accretion