0% found this document useful (0 votes)
84 views3 pages

Second Term 2078-Class 10

This document contains an exam for a 10th grade Computer Science class. It includes multiple choice and short answer questions testing knowledge of computer fundamentals, databases in MS Access, and programming concepts in Visual Basic. The questions cover topics such as data transmission modes, network topologies, protocols, binary operations, database concepts like fields and records, debugging code, functions, sub procedures, and if/else statements.

Uploaded by

subash panday
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)
84 views3 pages

Second Term 2078-Class 10

This document contains an exam for a 10th grade Computer Science class. It includes multiple choice and short answer questions testing knowledge of computer fundamentals, databases in MS Access, and programming concepts in Visual Basic. The questions cover topics such as data transmission modes, network topologies, protocols, binary operations, database concepts like fields and records, debugging code, functions, sub procedures, and if/else statements.

Uploaded by

subash panday
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/ 3

"Education

for Awareness" 5. Give the appropriate technical term to the following: 4×0.5=2
Awareness International Academy (AIA)
a) Collection of related data, program and information management system.
Shankhamool, Kathmandu
Second Term Examination – 207 b) LAN topology where computers are arranged in a liner format.
Grade : 10 F.M: 50
c) Object of MS-Access, which can store the data in rows and columns.
Subject : Computer Science Time : 1:30 Hrs P.M: 20
d) Services of internet, which allows us to communicate face to face.
(Group ‘A’ ) COMPUTER FUNDAMENTAL (22 MARK)

1. Answer the following questions. 5×2=10 6. Select the correct answer: 4×0.5=2
a) Define duplex mode of transmission with example. a) Which is not the data transmission mode?
b) What is star topology? Sketch its clear diagram. i) Half-simplex ii) Half-duplex
c) Write any four uses of computer network. iii) Simplex iv) Full-duplex
d) What is NIC? Write its importance. b) Which is the protocol?
e) What is protocol? List any four examples. i) STP ii) CSMA
2. a) Convert as indicator. 2×1=2 iii) SMTP iv) BAUD
i) (1001)10 into Octal ii) (101110)2 into Hexadecimal c) Which is the web server?
b) Perform the following binary operations: i) Windows Explorer ii) Windows Media Player
i) (101)2 ×(110)2 -1101 ii) (1101101)2÷ (110)2 iii) Microsoft Windows iv) Netscape Navigator
3. Write the full form of the following. 4×0.5=2 d) Choose the odd one.
a) HTTPS b) WLAN c) CD-RW d) MAC i) Hub ii) Switch
iii) MODEM iv) Router
4. Match the following pairs: 4×0.5=2
Group A Group B (Group ‘B’)-DATABASE (10 Marks)
a) Fiber optic a) BNC 7. Answer the following questions: [3×2=6]
b) Co-axial b) Ring topology a) Differentiate between fields and records with examples.
c) CAT-5 c) Star topology b) What are the advantages of Query over filter?
d) Hub d) ST Connector c) Name any four types of data used in MS-Access table.
e) RJ-45
8. Choose the correct answer: [4×0.5=2] GROUP ‘C’ -PROGRAMMING (18 Marks)
a) A field name can be up to ………………..character long. 10. Debug the following program . 3
i)256 ii) 255 CREATE FUNCTION Square (A)
CLS
iii) 86 iv) 64
GET “a number”; A
b) The primary component of MS-Access is............... CALL Square (A)
END
i) Text ii) Number
iii) Memo iv) Auto number FUNCTION Square (A)
Ans = A ^ 2
c) In MS-Access column in table is ………………
Square = Ans
i) Module ii) Cell END Square (A)
iii) Record iv) Field 11. Find output of the given program. 3
d) The maximum numbers of characters we can enter in field is DECALRE SUB Series ()
CALL Series
i) 50 ii) 250
END
iii) 155 iv)255 SUB Series
X=1
Y=1
9. Match the following: [4×0.5=2] FOR Z = 1 TO 4
PRINT X;
Group A Group B
Y=Y+1
a) OLE a) 2048 Character X=X*10+Y
NEXT Z
b) Yes/No b) 8 Bytes
END SUB
c) Hyperlink c) 1 GB
12. Read the following program answer the following question: 3
d) Currency d) 1 Bit
DECLARE FUNCTION small (a, b)
CLS
INPUT "Type any two numbers "; x, y
PRINT "Smaller number is "; small(x, y)
END
===============
FUNCTION small (a, b)
IF a < b THEN
small = a
ELSE
small = b
END IF
END FUNCTION
a) What will be the output of the program, if the a=10 and b=15 is
given?
b) What is the use of ELSE statement the above program?
c) what are the arguments used in the above program?

13. a) Write a program to print area of four walls using the Function
procedure. 3
b) WAP To calculate Simple Interest using Function procedure 3
c) WAP To display the smallest number using sub Procedure 3

You might also like