निम्न में से कौन-सा wait किसी process के लिए undesirable है?
(RPSC C.S. 2016 (PAPER-I))
Correct Answer: D
Explanation (EN): Busy waiting wastes CPU cycles by repeatedly checking a condition.
Explanation (HI): Busy waiting में process बार-बार condition check करता रहता है, जिससे CPU cycles waste होती हैं।
एक system में fixed partitions के sizes 2^16, 2^24, 2^32 हैं। Limit register में कितने bits होने चाहिए?
(RPSC C.S. 2016 (PAPER-I))
Correct Answer: A
Explanation (EN): The limit register must represent the largest partition size, which is 2^32 bytes, so 32 bits are needed.
Explanation (HI): Limit register को सबसे बड़े partition size 2^32 bytes को represent करना होगा, इसलिए 32 bits चाहिए।
निम्न में से कौन-सा कथन गलत है?
(RPSC C.S. 2016 (PAPER-I))
Correct Answer: D
Explanation (EN): The dispatcher is an essential part of CPU scheduling, so saying it is not used is false.
Explanation (HI): Dispatcher CPU scheduling का essential भाग है, इसलिए यह कहना कि इसका उपयोग नहीं होता, गलत है।
किसी system में processes 10 processes per minute की दर से आते हैं और प्रत्येक job का average service time 3 seconds है। System load क्या होगा?
(RPSC C.S. 2016 (PAPER-I))
Correct Answer: A
Explanation (EN): Arrival rate = 10/60 per second and service time = 3 seconds, so load ρ = λ×T = (10/60)×3 = 0.5.
Explanation (HI): Arrival rate = 10/60 per second और service time = 3 seconds, इसलिए load ρ = λ×T = (10/60)×3 = 0.5।
Non-preemptive scheduling वाले system में ready queue में 5, 18, 9, 12 runtime वाले processes हैं। Waiting time न्यूनतम करने के लिए इन्हें किस order में चलाना चाहिए?
(RPSC C.S. 2016 (PAPER-I))
Correct Answer: B
Explanation (EN): Shortest Job First order minimizes average waiting time, so the order is 5, 9, 12, 18.
Explanation (HI): Shortest Job First average waiting time को minimize करता है, इसलिए order 5, 9, 12, 18 होगा।
RAID का full form क्या है?
(RPSC C.S. 2016 (PAPER-I))
Correct Answer: A
Explanation (EN): RAID stands for Redundant Array of Inexpensive Disks.
Explanation (HI): RAID का full form Redundant Array of Inexpensive Disks है।
Threads के संबंध में कौन-सा कथन सही नहीं है?
(RPSC C.S. 2016 (PAPER-I))
Correct Answer: C
Explanation (EN): Kernel level threads involve more overhead and are generally slower to create and manage than user level threads.
Explanation (HI): Kernel level threads में अधिक overhead होता है, इसलिए वे user level threads की तुलना में धीमे होते हैं।
निम्न में से किस instruction को kernel mode में execute करना आवश्यक नहीं है?
(RPSC C.S. 2016 (PAPER-I))
Correct Answer: D
Explanation (EN): The program counter is updated during normal instruction execution and need not be a privileged kernel-only operation.
Explanation (HI): Program counter normal instruction execution के दौरान update होता है और इसे kernel mode में ही execute करना आवश्यक नहीं है।
निम्न में से कौन-सा process state transition संभव नहीं है?
(RPSC C.S. 2016 (PAPER-I))
Correct Answer: C
Explanation (EN): A blocked process must first move to the ready state before it can run.
Explanation (HI): Blocked process सीधे run state में नहीं जा सकता; पहले उसे ready state में आना पड़ता है।
निम्न applications और scheduling algorithms के लिए सही combination कौन-सा है? A. Guaranteed Scheduling B. Real Time Scheduling C. Thread Scheduling
(RPSC C.S. 2016 (PAPER-I))
Correct Answer: B
Explanation (EN): Guaranteed Scheduling matches Fare Share Scheduling, Real Time Scheduling matches Rate Monotonic Scheduling, and Thread Scheduling matches Gang Scheduling.
Explanation (HI): Guaranteed Scheduling का संबंध Fare Share Scheduling से, Real Time Scheduling का Rate Monotonic Scheduling से, और Thread Scheduling का Gang Scheduling से है।