Operating system में process swapping के लिए swap space कहाँ स्थित होती है?
(HTET PGT C.S. 2020)
Correct Answer: B
Explanation (EN): Swap space resides on disk.
Explanation (HI): Swap space disk पर होती है।
Multiprogramming environment में क्या होता है?
(UKPSC PGT C.S. Asstt. Prof. 2017)
Correct Answer: C
Explanation (EN): In multiprogramming, multiple processes reside in memory so CPU can switch among them.
Explanation (HI): Multiprogramming में कई processes memory में रहती हैं ताकि CPU उनके बीच switch कर सके।
निम्न में से कौन-सा CPU scheduling algorithm नहीं है?
(DSSSB TGT C.S. 08.08.2021 (Shift-I))
Correct Answer: B
Explanation (EN): C-SCAN is a disk scheduling algorithm, not a CPU scheduling algorithm.
Explanation (HI): C-SCAN एक disk scheduling algorithm है, CPU scheduling algorithm नहीं।
CPU scheduling algorithm के बारे में निम्न statements में कौन-से सही हैं? I. Shortest Remaining Time First starvation cause कर सकता है। II. Response time के संदर्भ में Round Robin, FCFS से बेहतर है।
(DSSSB TGT C.S. 08.08.2021 (Shift-I))
Correct Answer: C
Explanation (EN): SRTF may cause starvation, and Round Robin generally provides better response time than FCFS.
Explanation (HI): SRTF starvation cause कर सकता है, और Round Robin सामान्यतः FCFS से बेहतर response time देता है।
मान लें निम्न jobs single processor system पर execute होनी हैं और सभी 0 msec पर arrive हुई हैं: a=4, b=1, c=7, d=2. यदि scheduling round robin है और time slice 1 msec है, तो job 'a' का completion time क्या होगा?
(DSSSB TGT C.S. 07.08.2021 (Shift-II))
Correct Answer: B
Explanation (EN): Round robin simulation with 1 msec quantum gives completion time of job a as 10 msec.
Explanation (HI): 1 msec quantum वाले round robin simulation में job a का completion time 10 msec आता है।
Two-level CPU scheduling के संदर्भ में निम्न statements में कौन-से सही हैं? I. यह तब उपयोग होती है जब memory सभी ready processes को hold करने के लिए कम हो। II. इसका performance FIFO जैसा ही होता है। III. यह कुछ processes को memory में रखने और उनमें से choice करने में मदद करती है। IV. यह in-core processes के set को adjust नहीं करने देती।
(UGC NET C.S. December-2014 (Paper-II))
Correct Answer: D
Explanation (EN): The correct justification is I and III.
Explanation (HI): सही justification I और III हैं।
Program के successful completion पर operating system को कौन-सी value return की जाती है?
(UGC NET C.S. June-2014 (Paper-II))
Correct Answer: A
Explanation (EN): A return value of 0 generally indicates successful execution.
Explanation (HI): Return value 0 सामान्यतः successful execution को दर्शाती है।
एक program में 8 pages (0 से 7) हैं और physical memory में 4 page frames उपलब्ध हैं। Page reference string है: 1 2 3 2 5 6 3 4 6 3 7 3 1 5 3 6 3 4 2 4 3 4 5 1. उपलब्ध frames भरने वाले initial page faults को छोड़े बिना, LRU और optimal page replacement algorithms में page faults क्रमशः कितने होंगे?
(UGC NET C.S. June-2014 (Paper-III))
Correct Answer: B
Explanation (EN): For the given string, LRU gives 10 page faults and Optimal gives 7 page faults.
Explanation (HI): दिए गए string के लिए LRU में 10 page faults और Optimal में 7 page faults आते हैं।
System clock के temporal relationship के अनुसार निम्न में से कौन-सा interrupt है?
(UGC NET C.S. June-2017 (Paper-III))
Correct Answer: D
Explanation (EN): An interrupt dependent on the system clock is synchronous interrupt.
Explanation (HI): जो interrupt system clock पर dependent हो, वह synchronous interrupt कहलाता है।
निम्न statements में कौन-से सही हैं? A. SRTF starvation cause कर सकता है। B. Preemptive scheduling starvation cause कर सकती है। C. Response time के मामले में Round Robin, FCFS से बेहतर है।
(UGC NET C.S. December-2022)
Correct Answer: D
Explanation (EN): All three statements are true.
Explanation (HI): तीनों statements सही हैं।