SEE Computer Science Exam Paper Solved 2067
![]() |
| SEE Computer Science Exam Paper Solved 2067 |
SEE Examination 2067
Computer Science
Group “A”
Computer Fundamental [22 marks]
1. Answer the following questions. (5x2=10)
· Sending email
c. Write any four advantages of multimedia.
· It helps to share the information effectively.
· Computer becomes slow.
2. a. Convert as indicated. (1x2=2)
i. (AC3)16 into decimal
Soln:
A X 162 + C X 161 + 3 X 160=2560 + 1792 + 3
=4355
Therefore: (AC3)16 = (4355)10
ii. (110010)2 into octal
Binary 110 010
Octal 6 2
Therefore: (110010)2 = (62)8
b. Binary calculations. (1x2=2)
1 1
X 1 1
1 1
1 0 0 1
-1 0 1
1 0 0
:. 11x11-101 = 100
ii. Divide 1010 by 10
soln:
10)1010(101
10
001
0010
- 10
0000
Q:101
R:
0
3. Match the following. (0.5x4=2)
Group A Group B
a.
Satellite Multimedia
b.
HTTP High
bandwidth
c.
Online Business Unguided media
d.
Fiber optics E- commerce
Protocol
Answer
Group A Group B
a.
Satellite Unguided media
b.
HTTP Protocol
c.
Online Business E-commerce
d.
Fiber optics High bandwidth
4. Choose the best answer. (0.5x4=2)
a. Which is not a communication media?
i. Wire ii. Microwave iii. Satellite iv. NIC
b. Which is a web browser?
i. Window NT ii. Internet explorer
iii. Window 2007 iv. All of the above
c. In which topology network devices are connected through hub?
i. Ring topology ii. Bus topology iii. Star topology iv. None of the above
d. Which is not related to internet?
i. ISP ii. TCP/IP iii. WWW iv. UPS
5. Give the appropriate technical terms of the following. (0.5x4=2)
a. An internet tool that helps to upload/download the file. FTP
b. Making duplicate copy of file for security purpose. Backup
c. A set of rules that governs how computer exchange information over computer network. Protocol
d. An integration of audio, video, graphics and text. Multimedia
6. Write the full forms of. (0.5x4=2)
a. URL Uniform Resource Locator
b. ISP Internet Service Provider
c. ASCII American Standard Code for Information Interchange
d. BPS Bits Per Second
Group B Database (10 marks)
7. Answer the following questions. (2x3=6)
a. Define DBMS with examples.
b. What is primary key?
c. Why report is created?
8. Choose the best answer. (0.5x4=2)
b. The storage size of Date and Time is…….
c. Collecting multiple related fields is called…….
9. Match the following. (0.5x4=2)
Group A Group B
a. OLE Report
b. Data Entry Picture
c. Indexing Table
d. Formatted Fast searching
Printout Form
Answer
Group A Group B
a. OLE Picture
b. Data Entry Form
c. Indexing Fast searching
d. Formatted Report
printout
Group C Programming (18 marks)
10. Aswer
the following questions. (1x3=3)
a. What
is procedures?
Ans: Procedures
are the block of codes that performs a pre-defined task when executed.
b. Write
any two characteristics of C Language.
Ans: The two
features of C language are listed below:
· It has many library functions.
· It is used for developing operating
system.
c. Write
the function of the following commands
i.
INPUT- This statement is used to receive
input from the user.
ii.
MKDIR- It is used to create a new directory
or a sub directory.
11. Write
the output of the given program. (2)
DECLARE SUB result(n$)
CLS
n$=” SCIENCE”
CALL result(n$)
END
SUB result(n$)
B=LEN(n$)
Count= 1
WHILE count <
= b
X$= X$+ MID$ (n$,
count, 1)
count = count + 2
WEND
PRINT X$
END SUB
Output: SINE
12. Re-write
the given program after correcting the bugs. (0.5x4=2)
REM to display
all the records from data file “ABC.DAT”
OPEN “ABC.DAT”
FOR OUTPUT AS #1
DO WHILE NOT EOF
(“ABC.DAT”)
INPUT # 1, N$, A
PRINT N$, A
CLOSE 1
END
Program after correcting bugs
REM to display
all the records from data file “ABC.DAT”
OPEN “ABC.DAT” FOR
INPUT AS #1
DO WHILE NOT EOF (1)
INPUT # 1, N$, A$
PRINT N$, A
CLOSE# 1
END
13. Read the given program and answer the
given questions. (2)
DECLARE SUB SUM(N)
INPUT “ANY
Numbers”; N
CALL SUM(N)
END
SUB SUM(N)
S=0
WHILE N<>0
R= N MOD 10
S= S+R
N=N/10
WEND
PRINT “SUM”; S
END SUB
a. In
which condition the statements within the WHILE…...WEND looping statement will
not be executed?
Ans: When the
value of N will be 0, the statements within the WHILE…...WEND looping statement
will not be executed.
b. Will
the output be same if the place “/” instead of “\” in the above program?
Ans: No the output will not be the same.
14. a. Using FUNCTION…END FUNCTION write a program
to find the average of three numbers. (3)
DECLARE FUNCTION
AVG (a, b, c)
CLS
INPUT” ENTER
FIRST NUMBER”; a
INPUT” ENTER
SECOND NUMBER”; b
INPUT” ENTER
THIRD NUMBER”; c
PRINT” THE
AVERAGE NUMBER IS”; AVG (a, b, c)
END
FUNCTION AVG (a,
b, c)
Average= (a + b +
c)/3
AVG= Average
END FUNCTION
b. Write
a program to test whether a number is completely divisible by 13 or not. Use
SUB…...END SUB. (3)
DECLARE SUB
CHECK(N)
CLS
INPUT” ENTER A
NUMBER”; N
CALL CHECK(N)
END
SUB CHECK(N)
IF N MOD 13=0
THEN
PRINT “THE NUMBER
IS COMPLETELY DIVISIBLE BY 13”
ELSE
PRINT” THE NUMBER
IS NOT COMPLETELY DIVISIBLE BY 13”
END IF
END
c. A sequential data file “EMP.DAT” contains
name, post, and salary fields of information about employees. Write a program to
display all the information of employees along with tax amount also (Tax is 15%
of salary). (3)
OPEN “EMP.DAT”
FOR INPUT AS #1
CLS
DO WHILE NOT EOF
(1)
INPUT#1, NAME$,
POST$, SALARY
TAX= (15/100) * SALARY
PRINT NAME$,
POST$, SALARY, TAX
LOOP
CLOSE # 1
END

Comments
Post a Comment