Computer Science 10th Class Chapter 01 Short Questions Answers
Computer Science 10th Class Chapter 01 Short Questions Answers
Define Computer.
A computer is an electronic data processing device. It reads data processing and
produces results accurately at a very high speed.
What is a flowchart?
Flowchart is a diagrammatic representation of gorithm. It describes what operations
are required to solve a given problem.
Draw any four graphical symbols used in flowchart and explain them.
Flo chart symbols have specific meaning and are connected by arrows indicating the
flow from one step to another.
Flow line:
It is a line with arrow head. It is used to connect various flowchart symbols. It
indicates the flow of control.
Start/Stop Symbol:
It is a rounded rectangular shaped. It is used to indicate the start or end of a
flowchart. We can only write the words START or STOP inside this symbol. A flowchart
can only have one start but it may have many ends.
Input/Output Symbol:
============================================================
Visit www.easymcqs.com for Notes, Old Papers, Home Tutors, Jobs, IT Courses & more. (Page 1 of 7)
Download All Subjects Free PDF Educational Books, Notes, Past Papers etc.
Website: www.easymcqs.com , E-mail: usmanrafiq@gmail.com
TH
COMPUTER SCIENCE FOR 10 CLASS (UNIT # 1)
============================================================
It is represented by parallelogram. It indicate input or output operations. It contains
the word READ or INPUT along with the variables for input operation or PRINT for
OUTPUT along with the output data for output operation.
Processing Symbol:
It is represented by a rectangular block. It is used for data processing operation. All
the calculations appear inside the processing symbol, such as “SUM=A+B”. Variables
are also initialized inside the process symbol such as “K=1”.
Decision Symbol:
A decision or branching point. Lines representing different decisions emerge from
different points of the diamond.
LONG QUESTIONS
Write an algorithm to calculate the area of a rectangle for given breath and
length?
Step 1 Input the width (W) and Length (L) of a rectangle
Step 2 Calculate the area (A) by multiplying L with W
Step 3 Print A
Write an algorithm that inputs length in inches and calculate and prints it in
centimeters.
============================================================
Visit www.easymcqs.com for Notes, Old Papers, Home Tutors, Jobs, IT Courses & more. (Page 3 of 7)
Download All Subjects Free PDF Educational Books, Notes, Past Papers etc.
Website: www.easymcqs.com , E-mail: usmanrafiq@gmail.com
TH
COMPUTER SCIENCE FOR 10 CLASS (UNIT # 1)
============================================================
Step 1 Input the length in inches (LI)
Step 2 Calculate the length in cm (LCM) by multiplying LI with 2.54
Step 3 Print LCM
Write an algorithm that inputs marks and prints the message “PASS” or
“FAIL”. Passing marks are 33.
Step 1 Input Marks (M)
Step 2 Check if (M<33) then Print “FAIL” GOTO Step 4
Step 3 ELSE Print “PASS”
Step 4 Stop
Write a Flowchart to calculate the area of a rectangle for given breadth and
length.
Flowchart for the area of a rectangle for given breadth and length:
Write a Flowchart to that inputs length in inches and calculate and prints it
in centimeters.
============================================================
Visit www.easymcqs.com for Notes, Old Papers, Home Tutors, Jobs, IT Courses & more. (Page 5 of 7)
Download All Subjects Free PDF Educational Books, Notes, Past Papers etc.
Website: www.easymcqs.com , E-mail: usmanrafiq@gmail.com
TH
COMPUTER SCIENCE FOR 10 CLASS (UNIT # 1)
============================================================
Write a Flowchart to that inputs marks and prints the message “PASS” or
“FAIL” Passing marks are 33.
============================================================
Visit www.easymcqs.com for Notes, Old Papers, Home Tutors, Jobs, IT Courses & more. (Page 6 of 7)
Download All Subjects Free PDF Educational Books, Notes, Past Papers etc.
Website: www.easymcqs.com , E-mail: usmanrafiq@gmail.com
TH
COMPUTER SCIENCE FOR 10 CLASS (UNIT # 1)
============================================================
Write a Flowchart to to find the product of given numbers.
PRODUCT = 1×3×5×7×9×11×13×15
============================================================
Visit www.easymcqs.com for Notes, Old Papers, Home Tutors, Jobs, IT Courses & more. (Page 7 of 7)