Sample question of SEE class 10 computer science. Full mark of this subject is 50 where as pass mark is 16. To total exam duration will be 1 hour 30 minutes. Click here to see full e-notes of SEE computer science of class 10
Model question paper - 2
Group A - Computer Fundamental - 22 marks
1) Answer the following question [5x2=10]
2) a. Convert as instructed [2x1=2]
b. Perform the binary calculation [2x1=2]
3) Match the following [4x0.5=2]
Bandwidth ISP
Internet POP
Protocol bps
Hardware security NAV
CVT
4) Choose the correct answer [4x0.5=2]
a. Which is not a guided media?
b. Which device is necessary to operate internet.
c. MODEM convert …..
d. Which is not an Internet service.
5) Give appropriate technical terms of the following [4x0.5=2]
6) Write full form [4x0.5=2]
Group B - DBMS - 10 marks
7) Answer the following questions. [3x2=6]
8) Stare whether the following statements are true or false [4x0.5=2]
a. Primary key does not accept null value.
b. The extension of database file created by MS-Access is BDF.
c. Memo data type can be indexed.
9) Match the following [4x0.5=2]
Primary key Formatted output
OLE Interfae
Form 64,000 characters
Report Unique field
Picture
Group C - QBASIC programming - 18 marks
10) Answer the following. [3x1=3]
11) Debug the given program. [2]
DECLARE FUNCTION reverse$(N$)
INPUT “Any String”; N$
X$ = reverse$(N$)
PRINT N$
END
FUNCTION reverse(N$)
L = LEN$(N$)
FOR X = L to 1 STEP – 1
A$ = MID$(N$, X, I)
B$ = B$ + A$
NEXT X
B$ = reverse$(N$)
END FUNCTION
12) Write the output of the following program. [2]
DECLARE SUB series ()
CALL series
END
SUB series
X = 1
FOR K = 1 TO 4
PRINT X;
X = X + K
NEXT K
END SUB
13) Read the given program and answer the given question. [2]
DECLARE SUB SUM (N)
N = 5
CALL SUM (N)
END
SUB SUM (N)
FOR X = 1 TO N
S =S + X
NEXT X
PRINT S
END SUB
a) In the above program, how many times does the FOR ………..NEXT loop executes?
b) Write the name of the procedure used in the above program.
14) a) Write a program to calculate the average of three numbers using FUNCTION procedure. [3]
b) Write a program to print the total number of vowel alphabets present in the given word using SUB procedure. [3]
c) A data file “STAFF.dat” has stored records of few employees with EMPID, First name, last name, post and salary. Write a program to display all the records of the employees whose salary is more than 40,000 [3]