Thanks to visit codestin.com
Credit goes to www.scribd.com

0% found this document useful (0 votes)
15 views2 pages

Class 11 Accountancy Exam Paper

This document is an accountancy exam paper for R.K. International School, covering various topics related to computer science and Python programming. It includes questions on CPU components, memory types, operating systems, and programming exercises. The exam has a total duration of 1 hour and a maximum mark of 30.

Uploaded by

rkisstaff
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)
15 views2 pages

Class 11 Accountancy Exam Paper

This document is an accountancy exam paper for R.K. International School, covering various topics related to computer science and Python programming. It includes questions on CPU components, memory types, operating systems, and programming exercises. The exam has a total duration of 1 hour and a maximum mark of 30.

Uploaded by

rkisstaff
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/ 2

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)

You might also like