R.K.
International School, Nabahi
VPO Nabahi, Tehsil Sarkagaht, Distt. Mandi, HP
Sub: Accountancy (10+1)
Time: 1 Hr M.M. : 30
Q.1 List the names of two components of CPU. (1)
Q.2 List all the functional components of a computer system. (1)
Q.3 Name the primary memory which is volatile. (1)
Q.4 Who is developer of Python? (1)
Q.5 Explain the features of Python. (2)
Q.6 Distinguish between primary memory and secondary memory. (2)
Q.7 What is an operating system? (2)
Q.8 Expand the following: 1) ALU 2) RAM 3) GUI 4) LED (2)
Q.9 Find the output of the following (4)
(a) x=3 (b) x = - 2
y=x+2 y=2
x+=y x+=y
print(x,y) y-=x
print (x,y)
(c ) a=5 (d) p = 10
b = 2*a q = 20
a + = a+b p*= q/3
print (a ,b) q+= p+q*2
print (p,q)
Q.10 Evaluate the following expressions manually: (4)
a) (2+3)**3-6/2 b) (2+3)*5//4+(4+6)/2
c) 12+(3*4-6)/3 d) 12+(3**4-6)//2
Q.11 Write a program that asks the user to enter their name and age. Print a message that tells the
user the year in which they will turn 100 years old. (3)
Q.12 Which of the following identifier names are valid and why? (4)
(a) Serial_no.
(b) 1st_Room
(c ) Hundred$
(d) Total Marks
(e) Total_Marks
(f) total-marks
(g) Percentage
(h) true
Q.13 Write a program to display your school name, class and section separated by “-“ (3)