Buddhanagar, Kathmandu
FINAL EXAMINATION - 2077
Subject: Computer Science
Class: IX (Nine) Full Marks: 50
Pass Marks: 20
Time: 1:30 hrs.
Class: IX (Nine) Full Marks: 50
Pass Marks: 20
- Answer the following questions in one sentence. [6*1=6]
- Define Open Source Software.
- List any two examples of primary memory.
- Define web browser with an example?
- Mention any two singular tags.
- Write the syntax of MID$ function?
- Name any two loops used in QBASIC.
- Write appropriate technical terms for the following: [2*1=2]
- The language translator that converts human codes into machine code a line at a time.
- The nervous system of computer.
- Write the full forms of the following: [2*1=2]
- CMYK
- HTML
- Answer the following questions. [9*2=18]
- List any four graphics file formats.
- Differentiate between compiler and interpreter.
- Differentiate between GUI and CUI.
- List any two input and two output devices.
- Define operating system with two examples.
- What do you mean by search engine? Give two examples.
- Define the role of CSS in web design.
- Write HTML code to display:
- (a-b)3 = a3-3a2b+3ab2-b3
- 2K + H2So4→ K2So4 + H2↑
- Write HTML code to display:
Golden Boot Contestant C.Ronaldo L.Messi K.Mbappe R.Lewandowski - Write down the output of the given program. Show with dry run in table. [2] CLS
- Re-write the given program after correcting the bugs. [2] REM QBASIC program to find the difference
- Study the following program and answer the given questions. [2*1=2] R$ = "SANITIZER"
- How many times does the loop execute?
- List the library functions in above program.
- Convert/calculate as per the instruction. [4*1=4]
- (BBC)16 = (?)2
- (42)10 = (?)2
- (10101)2 – (1000)2
- (11010)2÷ (10)2
- Write a QBASIC program to find the square root of supplied number. [4]
- Write a QBASIC program to check whether the given year is leap year or not. [4]
- Write a QBASIC program to count the number of vowels from a given word. [4]
OR
Write a QBASIC program to print the following series 2 2 4 6 up to 20th terms [4]
Group ‘A’ (10 Mark)
Group ‘B’ (24 Mark)
A=153
WHILE A<>0
R=A MOD 10
S = S+R
A=A\10
WEND
PRINT”THE RESULT IS”;S
END
START
70=A
10=B
C=B- A
PRINT “The difference is”; C
TERMINATE
FOR K=1 TO LEN(R$)
X$ = MID$(R$, K, 1)
IF UCASE$(X$)="A" THEN
N = N + 1
END IF
NEXT K
PRINT N
END
Group ‘C’ (16 Mark)
The End