SSC-I
COMPUTER SCIENCE
Section A (12-Marks)
Time allowed: 20 Minutes
Section-A is compulsory. All parts of this
Section are to be answered on this page and
Handed over to the center superintendent.
Deleting/overwriting is not allowed.
Do not use lead pencil
حصہاولالزمیہے۔اسکےجواباتاسیصفحہپےدےکرناظم
مرکزکےحوالےکریں۔کاٹکردوبارہلکھنےکیاجازتنہیں۔
لیڈپنسلکااستعمالممنوعہے۔
Answer sheet No: ……………………….
ہر سوال ےک سام ےن دی ےئ گ ےن کریکولم ےک مطابق درست دائرہ کو ُپرکریں۔
Fill the relevant bubble against each question according to the curriculum. Candidate Sign: ………………..
S. Question: A B C D A B C D
NO
1 The unit in a computer that
coordinates all operations ALU CU Control Unit Cache
and manages execution of Controller
instructions is called:
2 Which of the following
best represents the Removing Breaking tasks Ignoring Writing a final
process of abstraction essential details into small steps unnecessary algorithm
in computational details directly
thinking?
3 In the I-P-O model, the
“Processing” stage mainly Storing data Displaying data Transforming Organizing
focuses on: inputs into hardware
outputs
4 Which HTML tag is used to
define important text that <ins> <strong> <emphasize> <bold>
browsers typically display in
bold and emphasized?
5 Padding Margin Spacing border-
CSS property that controls radius
the space outside an
element’s border is:
6 Which part of the HTML
document contains Body section Head section Footer Section Navigation
metadata and the page bar
title?
7 Big Data mainly differs
from normal data due to Data type Volume, Storage Data
its: Velocity, format Storage
Variety Capacity
8 Which of the following is a Deep Learning Computer Cloud A.I
subset of Machine Networks Storage
Learning?
9 Which of the following
refers to spreading Disinformation Misinformation Fake Deepfake
misleading information news
without the intent to
harm?
10 Which of the following is Using licensed Respecting Updating Modifying
an inappropriate example software for software software software
of software use. personal copyrights and regulary code
projects licenses without
permission
from
developer
11 In a problem solution A ready Bread and Spreading Eating a
involving making a sandwich Butter butter on Sandwich
sandwich, what would be bread
considered the input.
12 What does privacy means Sharing Hacking into Ignoring Keeping
in the context of computer personal others Security personal
Ethics information account measures information
online confidential
and secure
COMPUTER SCIENCE SSC–I
SEND-UP EXAMINATION
Time Allowed: 2:35 hours Total Marks: 48
Note: Answer all parts from Section 'B’, and from Section 'C' on the separately provided answer book.
Write your answers neatly and legibly.
SECTION-B (Marks)
Q.2: Attempt all questions. Marks of each question are given within brackets. (3 x 10 = 30)
1 Define the Von Neumann architecture and OR Differentiate between primary memory and
mention its main parts. Explain any 2 of them. secondary memory with one example each
2 What is abstraction in computational thinking? OR Explain the I-P-O model (Input-Processing-
Give an example. Output) with an example.
3 Explain the concept of flowchart and list any two OR What is an algorithm? Write any two
common flowchart symbols. characteristics of a good algorithm..
4 Define cyberbullying and write any two ways to OR What is digital privacy? Mention any two
prevent it. practices to protect personal data online.
5 What are HTML attributes? Write any two OR Write the purpose of the <img> tag and mention
common HTML attributes with their purpose. its two most important attributes.
<!DOCTYPE html>
What is DOM (Document Object <html>
6 Model)? Briefly explain how JavaScript OR <body>
interacts with HTML elements through <h3>Fruits List</h3>
DOM <ol>
<li>Apple</li>
<li>Banana</li>
<li>Cherry</li>
</ol>
<h3>Stationery List</h3>
<ul>
<li>Pen</li>
<li>Pencil</li>
<li>Eraser</li>
</ul>
<p> Note: This page showing list of fruits and
stationary items </p>
</body>
</html>
7 State the 3Vs of Big Data? OR List two data types commonly used in data science
and give a short example for each.
8 Explain intellectual property briefly and give OR Define Internal CSS and External CSS.
two ways to protect it.
9 What are secondary and primary data collection OR Differentiate between natural and artificial system
method? and also write their examples.
Write down the names of three for each method.
10 Compare simple and complex problems OR Write down any three (03) advantages of
with one daily life example of each cloud computing.
problem.
SECTION-C (Marks)
Q.3: Attempt 3 questions. All questions carry equal marks. (3 x 6 = 18)
1 Write down the differences between 4th Draw a complete flowchart that takes three numbers
generation and 5th generation computers. OR as input and determines which one is the largest. Your
(Write any 5 well-explained differences) flowchart should include all standard flowchart
symbols, input/output steps, decision boxes, and a
clear comparison process leading to the correct largest
number.
2 Describe any FIVE major cyber threats (such Explain different data types used in Data Science and
as ransomware, phishing, Spyware, OR give examples of each..
Software Piracy and Hacking). Explain how
each attack works and give one prevention
method for each.
3 Q. Write an HTML and JavaScript Compare between the traditional algorithms and A.I
program that takes a student's marks as based algorithms that use machine learning. Criticize
input and displays the grade according to OR A.I based algorithms for producing wrong results, at
the following criteria by using the if–else- times.
if statement:
A+ if marks > 90
A if marks > 80
B if marks > 70
C if marks > 60
D if marks > 50
E if marks > 40
F otherwise