ENOTES

SEE Class 10 Computer Science new practice model question

access_time Apr 03, 2021 remove_red_eye 74749

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.

New model question of Class 10 Computer Science

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]

  1. What is internet?
  2. What is cloud computing?
  3. Which data type is used to store salary of an employee in MS-Access?
  4. What is an extension of MS-Access database?
  5. What are modules in QBASIC?
  6. Write any two data type used in C language.

2. Write appropriate technical term for the following:                         [2x1=2]

  1. The rate at which data are transferred in a given medium
  2. The use of computer technology to create a simulated environment.

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]

  1. Differentiate between bus and star topology with figure.
  2. What is computer crime? Give any four example of it
  3. What is hardware security? Write any two measures of software security.
  4. What is E-Commerce? Write its importance.
  5. What is mobile computing? Write any two importance of it.
  6. Differentiate between database and DBMS with example
  7. What is primary key? List any two advantages of it.
  8. What is data sorting? List any two advantages of using it.
  9. Define query? Write its importance

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
  1. What is the main objective of the program given above?
  2. List all the parameters used in above program.

Group ‘C' Long Answer [4x4=16]

8. Convert / calculate as per the instruction:                           [4x1=4]

  1. (1110001110)2 = (?)8
  2. (111)10 = (?) 2
  3. (1000) 2 – (111) 2 = (?) 2
  4. (111111) 2 ÷ (111) 2

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.

 

Click here Download PDF of this model question