Xii Holiday Homework
Xii Holiday Homework
Subject-English
1. Prepare 2 Notices, 3 invitations (Card, Letter and reply) in the fair notebook.
2. Write a letter to the editor and a job application in the fair notebook.
3. Revise all the chapters and grammar topics done in the classroom thoroughly.
4. Complete 10 pages of handwriting using phrases.
Subject – Physics
1. Create a chapter-wise formula sheet for:
Electrostatics
Electric Potential and Capacitance
Current electricity
Moving charges and magnetism
Magnetism and matter
2. Prepare the physics practical file as pdf will be shared in the group.
3. Solve 25 numericals from Electrostatics, Electric potential and capacitance, Current electricity, Moving charges
and magnetism, Magnetism and matter. (Five from each chapter).
Subject – Chemistry
Week: 2 Complete notebook and Revise all topic in Revision notebook book.
Week:4 SolveNCERT exercise que and intext que in Revision notebook ch-. 1,2
Subject – Biology
TOPIC - VOLLEYBALL
Contents- 1. History
2. Terminology
3. Skills
4. Latest rules & regulations
5. Famous Awards
6. Famous Players
7. Important Tournaments
8. Court diagram
9. Net diagram
WORK TO BE DONE - In Practical Record File
UNIT-I
1 „Welcome‟ is literals
2 $ symbol can be used in naming an identifier (True/False)
3 Write any 2 data types available in Python
4 „Division by zero‟ is an example of error.
5 range(1,10) will return values in the range of to
6 randint(1,10) will return values in the range of to
“Computer Science”[0:6] =
“Computer Science”[3:10] =
7
“Computer Science”[::-1] =
“Computer Science”[-8:]=
8 Output of : print(“Ok”*4 + “Done”)
9 Output of : print(print(“Why?”))
Raj was working on application where he wanted to divide the two number (A and B) , he has written
the expression as C = A/B, on execution he entered 30 and 7 and expected answer was 4 i.e. only
integer part not in decimal, but the answer was 4.285 approx, help Raj to correct his expression and
10 achieving the desired output.
Correct Expression :
Output of :
a,b,c = 20,40,60 b+=10
18 c+=b
print(a,b,c)
Consider a list:
MyFamily = [“Father”,”Mother”,”Brother”,”Sister”,”Jacky”]
Write statements:
(i) to print employee name
(ii) to update the salary from 80000 to 90000
(iii) to get all the values only from the dictionary
Num = 100
Isok = False
28 print(type(Num)) =
print(type(Isok)) =
Name the Python Library module which need to be imported to invoke the following function:
a) floor()
b) randrange()
29
c) randint()
d) sin()
Rewrite the following code in python after removing all syntax error(s). Underline each
correction done in the code.
30=To
for K in range(0,To) IF k
30
%4==0:
print (K*4) Else:
print (K+3)
Rewrite the following code in python after removing all syntax error(s). Underline each
correction done in the code:
a=5
work=true
b=hello
31 c=a+b
FOR i in range(10) if i%7=0:
continue
Rewrite the following code in python after removing all syntax error(s). Underline each correction
done in the code:
32
for Name in [Ramesh,Suraj,Priya] IF
Name[0]='S':
print(Name)
Rewrite the following code in python after removing all syntax error(s). Underline each
correction done in the code:
a=b=10
33 c=a+b
While c=<20:
print(c,END="*")
c+=10
Choose the correct possible answer(s)
a = random.randint(1,5)
b = random.randint(1,3)
34
c = random.randint(2,6) print(a,b,c)
(i) 2 1 3 (ii) 4 4 4 (iii) 3 2 1 (iv) 5 3 5
What is type conversion in Python? What are different types of conversion? Illustrate with example.
35
Fill in the blanks to execute infinite loop:
36 while :
print(“spinning”)
(ii)
for i in range(1,10): if i % 4 ==
0:
continue
print(i)
Give Output
50 colors=["violet", "indigo", "blue", "green", "yellow", "orange", "red"] del colors[4]
colors.remove("blue")
p=colors.pop(3) print(p, colors)
A=10
B=10
55 print( A == B) =?
print(id(A) == id(B) =?
print(A is B) =?