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 जोड़ने के लिए उपयोग होता है।
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 करता है।
Windows 2000 का कौन-सा भाग portable नहीं है?
(UGC NET C.S. June-2014 (Paper-III))
Correct Answer: B
Explanation (EN): Virtual memory depends on hardware, so not portable.
Explanation (HI): Virtual memory hardware dependent होती है, इसलिए portable नहीं है।
Linux command seq 1 2 10 का output क्या होगा?
(UGC NET C.S. June-2014 (Paper-III))
Correct Answer: C
Explanation (EN): seq 1 2 10 generates sequence with step 2: 1,3,5,7,9.
Explanation (HI): seq command 1 से 10 तक step 2 में output देता है: 1,3,5,7,9।