2^24 bytes memory और 65,536 bytes के fixed partitions वाले system में limit register में कितने bits होने चाहिए?
(RPSC C.S. 2016 (PAPER-I))
Correct Answer: B
Explanation (EN): Since each partition size is 65,536 = 2^16 bytes, the limit register must be 16 bits.
Explanation (HI): क्योंकि प्रत्येक partition size 65,536 = 2^16 bytes है, इसलिए limit register 16 bits का होना चाहिए।
Virtual memory का size किस पर depend करता है?
(RPSC C.S. 2016 (PAPER-I))
Correct Answer: B
Explanation (EN): Virtual memory size depends on the size of the address bus, which determines how many unique addresses can be generated.
Explanation (HI): Virtual memory का size address bus पर depend करता है, क्योंकि वही बताता है कि कितने unique addresses generate किए जा सकते हैं।
Round Robin CPU scheduling में time quantum बढ़ाने पर average turnaround time क्या होता है?
(RPSC C.S. 2016 (PAPER-I))
Correct Answer: D
Explanation (EN): The average turnaround time may increase or decrease depending on the job mix and scheduling pattern.
Explanation (HI): Average turnaround time job mix और scheduling pattern पर depend करता है, इसलिए यह irregularly vary कर सकता है।
Operating system में निम्न में से कौन-सा scheduling algorithm नहीं है?
(RPSC C.S. 2016 (PAPER-I))
Correct Answer: D
Explanation (EN): Starvation is a scheduling problem, not a scheduling algorithm.
Explanation (HI): Starvation scheduling की एक problem है, algorithm नहीं।
Fence register का उपयोग किसलिए किया जाता है?
(RPSC C.S. 2016 (PAPER-I))
Correct Answer: A
Explanation (EN): A fence register is used to protect memory by preventing a program from accessing restricted regions.
Explanation (HI): Fence register memory protection के लिए उपयोग होता है और program को restricted memory region तक पहुँचने से रोकता है।
एक unit time में पूरा किया गया कार्य क्या कहलाता है?
(RPSC C.S. 2016 (PAPER-I))
Correct Answer: A
Explanation (EN): Throughput is the amount of work completed per unit time.
Explanation (HI): Throughput, unit time में completed work की मात्रा है।
निम्न में से starvation रोकने की technique कौन-सी है?
(RPSC C.S. 2016 (PAPER-I))
Correct Answer: C
Explanation (EN): Aging gradually increases the priority of waiting processes to prevent starvation.
Explanation (HI): Aging waiting processes की priority धीरे-धीरे बढ़ाकर starvation को रोकता है।
निम्न में से कौन-सा memory allocation method नहीं है?
(RPSC C.S. 2016 (PAPER-I))
Correct Answer: D
Explanation (EN): First fit, best fit and worst fit are valid allocation methods; not fit is not.
Explanation (HI): First fit, best fit और worst fit valid memory allocation methods हैं; not fit नहीं है।
निम्न में से कौन-से system objects न तो files हैं और न ही directories?
(RPSC C.S. 2016 (PAPER-I))
Correct Answer: C
Explanation (EN): Semaphore and monitor are synchronization objects, not files or directories.
Explanation (HI): Semaphore और monitor synchronization objects हैं, files या directories नहीं।
Critical section problem के solution के लिए कौन-सी conditions आवश्यक हैं?
(RPSC C.S. 2016 (PAPER-I))
Correct Answer: A
Explanation (EN): A correct solution to the critical section problem must satisfy mutual exclusion, progress, and bounded waiting.
Explanation (HI): Critical section problem के सही solution के लिए mutual exclusion, progress और bounded waiting आवश्यक हैं।