0% found this document useful (0 votes)
3 views4 pages

Class XII Science Holiday Homework-1

The document outlines the holiday homework project for Class XII Science students at Zoom International School for the session 2025-2026. It includes assignments and activities across various subjects such as Physical Education, Physics, Chemistry, Mathematics, and Computer Science, covering topics like sporting events management, electric fields, and Python programming. Each subject features specific tasks aimed at enhancing students' understanding and skills in the respective areas.

Uploaded by

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

Class XII Science Holiday Homework-1

The document outlines the holiday homework project for Class XII Science students at Zoom International School for the session 2025-2026. It includes assignments and activities across various subjects such as Physical Education, Physics, Chemistry, Mathematics, and Computer Science, covering topics like sporting events management, electric fields, and Python programming. Each subject features specific tasks aimed at enhancing students' understanding and skills in the respective areas.

Uploaded by

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

Holiday Homework Project - Class XII

(Science)
School: Zoom International School
Session: 2025–2026
Stream: Science

Physical Education
Contents:
- Management of Sporting Events
- Children and Women in Sports

Assignments:
1. Classify the types of tournaments in detail:
- Knockout Tournament
- League Tournament
- Combination Tournament
- Challenge Tournament

2. Short Note on Female Athlete Triad:


The Female Athlete Triad is a combination of three interrelated conditions: energy
deficiency with or without disordered eating, menstrual disturbances, and decreased bone
mineral density. It is commonly observed in physically active females.

Activities:
1. Draw a fixture using the tabular method for 7 teams:
- Use byes and rounds as per knockout format.

2. Mind Map on Lower Limb Postural Deformities:


- Include knock knees, bow legs, flat foot, etc.

Physics
Contents:
- Electric Charges and Fields
- Electrostatic Potential and Capacitance

Assignments:
1. Calculate and graph the electric field due to a spherical shell (inside = 0, outside =
behaves like a point charge).
2. Calculate and graph the potential due to a spherical shell (inside = constant, outside =
kQ/r).

Activities:
1. Equipotential Surfaces:
- Positive Charge: Spherical
- Negative Charge: Spherical
- Two Like Charges: Distorted spheres
- Electric Dipole: Complex curved surfaces

2. Electric Field Lines:


- Positive: Outward radial
- Negative: Inward radial
- Dipole: From + to -

Chemistry
Contents:
- Alcohols, Phenols and Ethers
- Solutions

Assignments:
1. Mechanism of Reactions:
(a) Esterification: Acid + Alcohol → Ester + Water (H⁺ catalyst)
(b) Dehydration of Alcohol: Alcohol → Alkene + Water (H₂SO₄, heat)

2. Depression in Freezing Point:


- Use a graph of ΔTf vs molality to show the effect of non-volatile solute.

Activities:
1. Boiling Point Variation:
- Graph: Boiling Point vs Carbon Number for Alcohols & Alkanes.

2. Types of Non-Ideal Solutions:


- Positive/Negative Deviation graphs with examples like ethanol-acetone.

Mathematics
Contents:
- Relation and Function
- Inverse Trigonometric Function

Assignments:
1. Prove that the function f(x) = 1 for x>0, 0 for x=0, -1 for x<0 is neither one-one nor onto.
2. Find the principal value of: cot⁻¹[2cos(sin⁻¹(√3/2))] = cot⁻¹(1) = π/4

Activities:
1. Draw graph of sin⁻¹x with domain [-1, 1] and range [-π/2, π/2].

2. Make it bijective by restricting domain and range appropriately.

Computer Science
Contents:
- Python Revision Tour I & II

Assignments:
1. Difference between Keywords and Identifiers:
- Keywords: Reserved words (e.g., if, else, for)
- Identifiers: Names given to variables/functions

2. List vs Tuple:
- List: Mutable, uses []
- Tuple: Immutable, uses ()

Activities:
1. Python Program - Sum based on N:
- If N ≥ 0: sum from N to 2^N
- If N < 0: sum from 2^N to N
- Code:
```
N = int(input("Enter N: "))
if N >= 0:
total = sum(range(N, 2**N + 1))
else:
total = sum(range(2**N, N + 1))
print("Sum:", total)
```

2. Python Program - Insertion Sort:


```
def insertion_sort(arr):
for i in range(1, len(arr)):
key = arr[i]
j=i-1
while j >= 0 and key < arr[j]:
arr[j + 1] = arr[j]
j -= 1
arr[j + 1] = key
return arr
arr = [12, 11, 13, 5, 6]
print("Sorted array:", insertion_sort(arr))
```

You might also like