0% found this document useful (0 votes)
737 views8 pages

Holiday Homework & Project Class 10 Icse

The document outlines holiday homework and projects for Class 10 for the academic year 2024-2025, covering subjects such as Computer Science, Mathematics, Biology, English Literature and Language, Geography, History and Civics, Hindi, Chemistry, and Physics. Each subject includes specific projects, programming tasks, experiments, and written assignments with detailed instructions. The submission deadline for all projects is set for July 27, 2024.

Uploaded by

migyoex
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
737 views8 pages

Holiday Homework & Project Class 10 Icse

The document outlines holiday homework and projects for Class 10 for the academic year 2024-2025, covering subjects such as Computer Science, Mathematics, Biology, English Literature and Language, Geography, History and Civics, Hindi, Chemistry, and Physics. Each subject includes specific projects, programming tasks, experiments, and written assignments with detailed instructions. The submission deadline for all projects is set for July 27, 2024.

Uploaded by

migyoex
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 8

Holiday homework and projects of class 10

(2024- 2025)

Computer

Project

Note : Solve and execute the following programs and write the solved programs in comment sheets
and compile them in a file as a project during summer vacation.

Question 1.
Write a program to computerize the billing operation of atelephone of a telephone company. The bill
has to be generatedbased on the following conditions:
Number of calls Amount per call
First 50 calls free
Next 100 calls 50 Paisa per call
Next 200 calls 80 Paisa per call
Rest of the calls Rs 1.20 per call

A rent of Rs 120 is charged from every customer. A tax of 15% ischarged on the sum of charges and
rent.The total amount is taxadded to the sum of charges and rent .Print the bill for a customer.

Question 2.
An insurance company has declared the bonus on yearly basis on the two types of policies or plans on
the basis of premium amount on yearly basis paid one time as per the given criteria:
Premium Amount (Rs.) Child Plan Normal Plan
Minimum 5000 3% 1.5%
5001-20,000 5% 3.5%
20,001-45,000 7% 6.0%
45,001 and above 10% 8.5%

Write a program based on the above criteria to input name of person, address, premium amount(one
time), number of years the policy/plan opted for and the type of plan(C for child and N for normal).
Calculate the bonus amount for one year and also for total number of years the policy opted for.
Calculate the maturity amount as follows:
Bonus in a year= (Rate percent * 100)*-premium
Bonus for number of years=bonus in one year*number of years
Maturity amount=premium amount + bonus depending upon the years.
Print name of the person, address, premium amount, number of years the policy opted for, name of
plan, total bonus and maturity amount.

Question 3.
A hotel has following special rates for stay depending upon number of days:
Number of days Rate
1 to 3 Rs. 350.00 per day
4 to 6 Rs. 300.00 per day
7 to 10 Rs. 275.00 per day
Beyond 10 days Rs. 225.00 per day

Write a program to input a name of customer, number of days stayed. Calculate bill amount. Print bill in
following format:

ABC INTERNATIONAL HOTEL


Name : ****
Number of Days : ****
Amount to be paid: ****

Question 4.
A bank accepts deposits for one or more year and the bank adopts for paying the interest as follows:
If a deposit is less than Rs. 2000 and it is for 2 years or more, the interest rate is 5% compound
annually.
If a deposit is Rs. 2000 or more but less than Rs. 6000 and it is for 2 years or more, the interest rate is
7% compound annually.
If a deposit is more than Rs. 6000 and it is for 1 year or more, the interest rate is 8% compound
annually.
On all deposits for 5 years or above, interest is 9.75% compound annually.
On all other deposits not under the above conditions.

Write a program to input amount to deposit and number of years. Calculate the interest and total
balance amount after the given number of years. Print amount deposited, number of years, interest
gained and total amount paid after the given years.

Question 5.
A private courier firm charges for the transportation of any parcel within a zone as follows:
Upto 100 grams :Rs.30
For each additional 50 grams or part thereof: Rs. 10
Write a program to calculate the charge of a parcel taking weight of the parcel in kilograms as input.
Sample Input :Weight of the parcel =180gms
Charge : for 100grams= Rs. 30
for next 50grams =Rs. 10
for remaining 30grams=Rs. 10
Sample Output :Total Charge: Rs 50

Question 6.
A company provides motorbike on rent to its members only. A class bike is created with the following
data members:
intnkno(bike number), intphno(phone number), intidno (id number of members), int days(number of
days the bike is taken on rent) as per the given criteria:
Number of days Rent per day
First 5 days Rs. 500 per day
Next 5 days Rs 400 per day
Rest of the days Rs 200 per day
Print the output in following format:
Bike NumberPhone Member ID No. No. of Days Rent to be paid
xxxxx xxxx xxxxxxx xxxx xxxx

Question 7.
The production (P) of crude oil of a country in millions of barrels may estimate by the following set of
equations, where t represents the time in years:
P =5+3t, 0<t<5
P =14+ (t-5/2)3 t>=5

Write a program to find the production for every year from t= 1 to n where n is input by user.

Question 8.
Write a program that outputs the results of the following evaluations based on the number entered by
the user.
1. Natural logarithm of the number
2. Absolute value of the number
3. Square root of the number
4. Random numbers between 0 and 1.

Homework

Note : Solve the following questions in class work copy.

Question 1:Rewrite the following if statement by using ternary operator.


if(a+b>c)
System.out.println(“Ramesh”);
else
System.out.println(“Binita”);

Question 2:Convert the following code into switch case:


if ( s1 == ‘1’ )
a = 1;
else if ( s1 == ‘2’ )
a = 2;
else if ( s1 == ‘3’ )
a = 3;

Question 3:Write the following using ternary operator:


if(a>b)
{ if(a>c)
g=a;
else
g=c;
}
else
{
if(b>c)
g=b;
else
g=c;
}

Question 4:State the output of the following code


inti = j = 10;
if(a<100)
if(b>50)
++i;
else
++j;
System.out.print (“ i ” + i + “j “ + j)

Where the input given is a=30 and b=30

Question 5:
Give the output
x=10,y=20;
if(x<y||(x==5)>10)
System.out.println(x);
else
System.out.println(y);

Question 6:Convert into switch case:


if(c=='R')
System.out.println("Red");
else if(c=='B')
System.out.println("Blue");
else if(c=='G')
System.out.println("Green");
else
System.out.println("Undefined");

Question 7:Write the output of the following code snippet


int a=94,c=6;
double x=3,b=9.0;
String s="Enjoy Working Hard";
if(((a+x)<105) && (++a - c*x<=45))
{
System.out.println(Math.pow(c,x));
System.out.println(a*c+b);
}
else if((++a*2)>(x+a*3)){
System.out.println((4*c++)%6);
System.out.println((char)(a+c));}
System.out.println("a : "+a+" and position is "+s.lastIndexOf('o'));

Question 8: Write the output of following code:


int a=5,b=2,c;
if(a>b || a!=b)
c = ++a + --b;
System.out.println(c+" "+a+" "+b);

Question 9:A number is called prime if it has two factors, composite if has more than two factors or
neither prime nor composite if it has less than factor. Following program is given to input a number in a
variable n and check whether it is a prime ,campsite or neither prime nor composite. Read the program
carefully and give a suitable fill for blank spaces as given by label? 1?, ?2?, ?3? and?4?.
class prime
{
int ?1? = 0;
public void input(int n)
{
for(int i=1; ?2? ; i++)
{
if(?3? = =0)
c++;
}
If (c==2)
System.out.println( n +” is a prime number”);
else if( ?4? )
System.out.println( n +” is a composite number”);
else
System.out.println( n +” is neither prime nor composite no.”);
}

Question 10:A number is called Buzz Number if it is completely divisible by 7 and its last is 7. Following
program is given to input two numbers and print all the Buzz Number from first number to second
number. Read the program carefully and give a suitable fill for blank spaces as given by label? 1?, ?2?,
?3? and ?4?.
class buzz
{
int ?1?;
public void showBuzz(int a, int b)
{
for(int i=a; ?2? ; i++)
{
k = i;
if((?3? = =0 && k%?4?==0)
System.out.println( i +” is a Buzz number”);
}

}
}

Question 11:State the output with reason:


int i=1;
for( ; i<=5; i+=2);
System.out.println(i);

Question 12:What will be the output of the following code?


int m=2;
int n=15;
for(int i=1;i<5;i++)
m++;
--n;
System.out.println("m="+m);
System.out.println("n="+n);

Question 13:State the output of the following code fragment:


(i) intchoice,x=0, y=0, z=0;
for(choice=1;choice<=3;choice++)
{
switch(choice++)
{
case 2: x++; y--; z++; break;
case 3: x+=2; y+=3; z-=3;
default: ++x; ++y; ++z;
}
System.out.println(“x=”+x+”y=”+y+”z=”+z);
}

Question 14:Write the output of following program:


int choice =1, x=0, y=0, z=0;
switch(++choice)
{
case 2: x++;y--; z++;
case 3: x+=2; y+=3; z-=3;
default: ++x; ++y; ++z;
} System.out.println(“x=”+x+”y=”+y+”z=”+z):

Mathematics of class 10 A.B and C

Do questions of reflection on graph paper


Exercise 10: Question 22 to 31

Biology holiday homework

Write the following experiments in the lab manual.


1.To demonstrate the process of diffusion experiment #2
2.Study of osmosis through Thistle funnel experiment number 3.1
3.To study osmosis with the help of potato or small scope experiment number 3.2
4.To demonstrate the process of absorption of water by root in plant experiment #3.4
5. To show the plants transpire through leaves experiment number 5.1
6. To compare the role of transparent transpiration on 2 surface is of a dorsi ventral leaf
using cobalt chloride paper experiment number 5.2
7. To find rate of transpiration using ganong spoto meter experiment number 5.3
8. Do identify structure of urinary system experiment #7A

English Literature Project

1) Write the summary of the Chapters, ‘When Great Trees Fall' and ‘The Pedestrian'.
2) Write the summary of the ‘Assassination of Julius Caesar’.
(Prepare a proper file, well covered and consisting of proper index, acknowledgement, and
conclusion. Paste or draw pictures where necessary.)

English Language Project

1) Write an original story on the topic, ' If I had the Ability to Travel, Time, Space and Dimension’.
Open up your imagination to write a classic story of your own. Draw pictures to support your
story.
2) Write a poem on the topic- ‘The India of my Dream’.

Geography

Waste Management

OR

Transport in India

History and Civics

Make project on any one of the below mentioned three topics:

1. World War II

2. UNO- its organs and aagencies

3. Subhash Chandra Bose - His contribution in India's freedom struggle.

Use interleaf comment sheets & make it of 15 to 20 pages including index, introduction, bibliography,
conclusion, acknowledgement.

Hindi (ह िं दी परियोजना)

गद्य- ‘बड़े घि की ब़े टी’ (क ानी का नाट्य रूपािं तिण)

पद्य- ‘व जन्मभूहि ि़ेिी’(कहव परिचय, कहवता का भावार्थ, क़ेन्द्रीय भाव, हिक्षा या सिंद़ेि)
भाषा- ए.आई. - आटीहिहियल इिं ट़ेलीजेंस (कृहिि बु द्धिित्ता) का भाित िें बढता प्रयोग (एक आल़ेख- लगभग 300
िब्ोिं िें)

(तीनोिं एक ी िाइल िें बनेंग़े)

Last date of submission ( परियोजना कायथ जिा किऩे की अिं हति हतहर्)

27-07 -2024 ( 27 जुलाई 2024)

Chemistry

Write the experiments for the identification of the cations present in the given salt in chemistry lab
manual.

Physics

A. MAKE A PROJECT FILE ANY ONE ON THE FOLLOWING TOPICS

1) FORCE

2)MACHINE

3) REFRACTION OF LIGHT THROUGH LENS

B. COMPLETE THE NUMERICALS OF THE EXERCISE BASED ON WORK POWER ENERGY FORMULA IN YOUR
FAIR NOTEBOOK.

You might also like