Unix में वे processes जो समाप्त हो चुके हैं लेकिन उनका status collect नहीं हुआ है, क्या कहलाते हैं?
(UGC NET C.S. June-2016 (Paper-III))
Correct Answer: C
Explanation (EN): Zombie processes are terminated processes whose exit status has not been collected by the parent.
Explanation (HI): Zombie process वह होता है जिसका execution समाप्त हो चुका है लेकिन उसका status collect नहीं हुआ।
fork() call में parent और child के बीच क्या share होता है?
(UGC NET C.S. June-2016 (Paper-III))
Correct Answer: C
Explanation (EN): Only shared memory segments are shared; other parts are duplicated.
Explanation (HI): केवल shared memory segments साझा होते हैं, बाकी copy हो जाते हैं।
Unix file system के बारे में कौन-सा statement गलत है?
(UGC NET C.S. June-2016 (Paper-III))
Correct Answer: C
Explanation (EN): i-node size is not necessarily 256 bytes (commonly 128 bytes), so statement is incorrect.
Explanation (HI): i-node का size 256 bytes नहीं होता, इसलिए यह statement गलत है।
Unix OS के संदर्भ में कौन-सा statement गलत है?
(UGC NET C.S. June-2016 (Paper-III))
Correct Answer: D
Explanation (EN): KILL signal cannot be blocked or ignored.
Explanation (HI): KILL signal को block नहीं किया जा सकता।
Linux OS में special files को दर्शाने के लिए कौन-सा symbol उपयोग होता है?
(DSSSB TGT C.S. 07.08.2021 (Shift-I))
Correct Answer: C
Explanation (EN): 'c' represents character special files in Linux.
Explanation (HI): Linux में 'c' character special file को दर्शाता है।
VB.NET में append keyword का क्या उपयोग है?
(DSSSB TGT C.S. 08.08.2021 (Shift-I))
Correct Answer: C
Explanation (EN): Append mode is used to add data at end of file without overwriting.
Explanation (HI): Append mode file के अंत में data जोड़ने के लिए उपयोग होता है।
Intermediate Language को execution से पहले machine language में बदलने की प्रक्रिया क्या कहलाती है?
(DSSSB TGT C.S. 07.08.2021 (Shift-II))
Correct Answer: A
Explanation (EN): Just-In-Time compiling converts IL to machine code at runtime.
Explanation (HI): JIT compiling runtime पर IL को machine code में बदलता है।
Linux में /etc directory में क्या होता है?
(DSSSB TGT C.S. 07.08.2021 (Shift-II))
Correct Answer: B
Explanation (EN): /etc stores system configuration files.
Explanation (HI): /etc में system configuration files होती हैं।
Unix kernel में user structure का भाग क्या नहीं है?
(UGC NET C.S. June-2015 (Paper-II))
Correct Answer: C
Explanation (EN): Scheduling parameters are part of process table, not user structure.
Explanation (HI): Scheduling parameters process table में होते हैं, user structure में नहीं।
Unix file system में free disk blocks की list कौन maintain करता है?
(UGC NET C.S. June-2014 (Paper-III))
Correct Answer: C
Explanation (EN): Super block maintains list of free blocks and file system metadata.
Explanation (HI): Super block free blocks की list maintain करता है।