National Examination Board (NEB) has changed the syllabus and grid of class 10 Computer Science. Class 10 examination has been conducted as Secondary Education Examination (SEE). CDC (Curriculum Development Centre) has published the new model question along with the new grid which is going to be implemented from this academic year 2077 BS. CDC has also published the pdf of Computer Science book with necessary updates in chapters. you can download all the necessary material from the link given below.
Click here to download new model question and grid by CDC.
Click here for the solution of new model question and grid by CDC.
Click here to download new Computer Science book by CDC.
Click here to see all the chapter e-notes with solved programs.
Click here for SEE Class 10 C programming notes and programs.
Readersnepal.com
Model Question
SUBJECT: Computer Science
TIME: 1:30hrs FM: 50 CLASS: X PM: 20
Candidates are required to give their answers in their own words as far as practicable.
Group ‘A' Very Short Answer [10x1=10]
1. Answer the following questions in one sentence: [6x1=6]
2. Write appropriate technical term for the following: [2x1=2]
3. Write the full form of the following: [2x1=2]
SMTP, CDMA
Group ‘B' Short Answer [12x2=24]
4. Answer the following questions: [9x2=18]
5. Write down the output of the given program. Show with dry run in table. [2]
DECLARE SUB SHOW (A,B)
CLS
X=1 : Y=2
CALL SHOW (X,Y)
END
SUB SHOW (A ,B)
I=1
DO
PRINT A;
A=A+B
B=A+B
I=I+1
LOOP WHILE I <= 5
END SUB
6. Re-write the given program after correcting the bugs: [2]
REM to store record in data file
CLS
OPEN “info.dat” FOR INPUT AS #1
DO
INPUT “Enter Name, address and class “; N$, A, C
INPUT #1, N$, A, C
INPUT “Do you want to continue “; Y$
WHILE UCASE$(Y$) = “Y”
CLOSE “info.dat”
END
7. Study the following program and answer the given questions: [2]
DECLARE FUNCTION text$(N$)
CLS
INPUT “Enter any string”;X$
PRINT text$(X$)
END
FUNCTION text$(N$)
FOR i=len (N$) TO 1 STEP -1
W$=W$+MID$(N$,I,1)
NEXT i
text$ = W$
END FUNCTION
Group ‘C' Long Answer [4x4=16]
8. Convert / calculate as per the instruction: [4x1=4]
9. Write a program in QBASIC to input radius of circle and calculate its area using function and circumference using sub procedure [ Area=pr2 and Circumference= 2pr] [4]
10. A sequential data file called “Record.txt” has stored data under the field heading Roll No., Name, Gender, English, Nepali, Math’s and Computer. Write a program to display all the information of female students who pass in all subjects.[Note: Pass mark in all subject is 40] [4]
11. Write a program in C language to convert days into respective years, months and days. [4]
OR
Write a program in ‘C' language to input two number and find greatest among two number.