SST IT PAST PAPER 09-01-2021
SST 5 years Past Papers Click Here
Show Answers
چار آپشن میں سے کسی ایک پر کلک کرنے سے جواب سرخ ہو جائے گا۔
16
23
30
None of these
اس سوال کو وضاحت کے ساتھ پڑھیں
Explanation
Process P2 starts at time 16 and finishes at time 23 .
Finish time is the time when the process completes execution in FCFS .
ایک مرتب شدہ سی زبان کے پروگرام فائل میں عام طور پر کون سی توسیع ہوتی ہے؟
.obj
.pdf
.pptx
None of these
اس سوال کو وضاحت کے ساتھ پڑھیں
Explanation
.obj files are object files generated during compilation before linking into an executable.
.pdf and .pptx are document formats.
.cpp is C++ source code.
مندرجہ ذیل میں سے کون سے کمپیوٹنگ ڈیوائس میں ڈسک ڈرائیوز شامل نہیں ہیں؟
Palmtop Computer
Laptop Computer
Notebook Computer
Desktop Computer
اس سوال کو وضاحت کے ساتھ پڑھیں
Explanation
Palmtop computers are small handheld devices and usually do not have disk drives.
Laptops, notebooks, and desktops generally include disk drives for storage.
SELECT * FROM STUDENT;
SELECT ALL FROM STUDENT;
DISPLAY * FROM STUDENT;
None of these
اس سوال کو وضاحت کے ساتھ پڑھیں
Explanation
The SELECT * syntax retrieves all columns from the specified table.
It is the standard SQL command for displaying complete table data.
=SUM(C1 + C12)
=SUM(C1:C12)
=TOTAL(C1:C12)
None of these
اس سوال کو وضاحت کے ساتھ پڑھیں
Explanation
= SUM(C1:C12) is the correct Excel formula to sum all values from cell C1 to C12.
The colon : denotes a continuous range of cells.
جب ڈیٹا بیس بناتے ہو تو ، "ایڈریس" فیلڈ کی ڈیٹا کی قسم کیا ہونی چاہئے؟
Alphabetic
Integer
Alpha-numeric
None of these
اس سوال کو وضاحت کے ساتھ پڑھیں
Explanation
The address field contains letters, numbers, and symbols (e.g., " House #42, Street 8 ").
So, it must be stored as an alpha-numeric data type to handle such mixed content.
ایم ایس ورڈ کی مندرجہ ذیل میں سے کون سی خصوصیات مناسب الفاظ یا متبادل الفاظ فراہم کرتی ہیں؟
Spell Character
Table Index
Thesaurus
None of these
اس سوال کو وضاحت کے ساتھ پڑھیں
Explanation
Thesaurus in MS Word suggests synonyms and alternative words for better word choice.
It helps improve writing quality and avoid repetition.
# define PI 3.14
# define PI = 3.14
define PI = 3.14
None of these
اس سوال کو وضاحت کے ساتھ پڑھیں
Explanation
#define PI 3.14
This is the correct syntax for defining a constant using the C preprocessor directive.
It replaces every instance of PI with 3.14 before compilation begins.
فرض کریں کہ آپ کو ایم ایس ورڈ پر ایک متن دیا گیا ہے اور آپ کو متن کی ہر لائن کو بائیں اور دائیں مارجن سے برابر فاصلے پر سیدھ میں کرنا ہوگا ، آپ مندرجہ ذیل میں سے کون سی صف بندی کا اطلاق کریں گے؟
Justify
Align text left
Align text right
None of these
اس سوال کو وضاحت کے ساتھ پڑھیں
Explanation
Justify alignment evenly spaces text between the left and right margins , making both edges straight.
It gives the document a clean and professional appearance , commonly used in newspapers and reports.
تیسری معمول سے زیادہ مضبوط شکل میں مندرجہ ذیل میں سے کون سا فارم ہوتا ہے؟
2nd Normal Form
Boyce-Codd Normal Form (BCNF)
3rd Normal Form
None of these
اس سوال کو وضاحت کے ساتھ پڑھیں
Explanation
BCNF is a stronger version of the 3rd Normal Form ; it handles certain anomalies that 3NF does not.
It ensures that every determinant is a candidate key , improving data integrity.