Computer Science - Final
Computer Science - Final
Please Note
The notes I have prepared has been taken from various students and from different
sections.
Rakeeb Khan
� wreckieb@gmail.com - � 7829556030
Table of Contents
DEFINE
EXERCISE – OBJECTIVE
Which of the following shortcut keys will you use to distribute your
5.
text evenly between the margins?
A Ctrl + M B Ctrl + N
C Ctrl + J D Ctrl + P
Solved:
When PowerPoint icon is clicked on the desktop or taskbar, the default
window appears on the screen as shown below:
Now, answer the following questions with reference to the default window:
SUBJECTIVE
Write short notes on:
1. Start
2. Go to Shop
3. Select a pen
4. Pay price
5. Take pen
6. Come home
7. Stop
2. Write an algorithm and flow chart to “make tea”
1. Start
5. Add milk
7. Pour in cup
8. Stop
Fundamentals of QBASIC (A Programming
Language)
Write QBASIC commands / statements for the following
1. The command that allows users to clear the working NEW
memory in the computer’s memory for storing the next
program
2. The command which is used to execute and see the RUN
output of the program
3. The statement that is used to assign a value to a LET
variable
4. The command which is used to save current program SAVE AS
in the computer’s memory
2. CLS Answer is 36
LET M=540
LET N=15
LET Q=M/N
PRINT “Answer is”
PRINT Q
END
3. CLS
PRINT “Virat Kohli” Virat Kohli
PRINT “is the” is the
PRINT “captain” Captain
PRINT “of” of
PRINT “Indian Cricket Team” Indian Cricket Team
END
4. CLS
LET N1 = 74.5 Total = 240
LET N2 = 85 Average = 80
LET N3 = 80.5
LET TOT = N1+N2+N3
LET AVG = TOT/3
PRINT “Total =”; TOT
PRINT “Average =”; AVG
END