Distributed system में बढ़े हुए service load को adapt करने की क्षमता क्या कहलाती है?
(UGC NET C.S. November-2017 (Paper-II))
Correct Answer: B
Explanation (EN): Scalability is the ability of a system to handle increased load.
Explanation (HI): Scalability किसी system की बढ़े हुए load को handle करने की क्षमता है।
किस disk scheduling algorithm में disk head एक छोर से दूसरे छोर तक जाते हुए requests serve करता है और दूसरे छोर पर पहुँचकर return trip में requests serve किए बिना शुरू में वापस लौट जाता है?
(UGC NET C.S. November-2017 (Paper-II))
Correct Answer: B
Explanation (EN): According to the given source, this behavior is identified as SCAN.
Explanation (HI): दिए गए source के अनुसार इस behavior को SCAN कहा गया है।
मान लीजिए छह files F1, F2, F3, F4, F5, F6 के sizes क्रमशः 150 KB, 225 KB, 75 KB, 60 KB, 275 KB और 65 KB हैं। यदि इन्हें sequential device पर access time optimize करने के लिए store करना हो, तो order क्या होगा?
(UGC NET C.S. November-2017 (Paper-II))
Correct Answer: B
Explanation (EN): To optimize access time, smaller files are arranged earlier as per the given source, yielding the order F4, F6, F3, F1, F2, F5.
Explanation (HI): दिए गए source के अनुसार access time optimize करने के लिए files का सही order F4, F6, F3, F1, F2, F5 होगा।
Short-term scheduler द्वारा selected process को CPU का control कौन-सा module देता है?
(UGC NET C.S. November-2017 (Paper-II))
Correct Answer: A
Explanation (EN): The dispatcher gives CPU control to the process selected by the short-term scheduler.
Explanation (HI): Dispatcher short-term scheduler द्वारा selected process को CPU का control देता है।
Semaphores पर permissible दो atomic operations कौन-सी हैं?
(UGC NET C.S. November-2017 (Paper-II))
Correct Answer: D
Explanation (EN): The two atomic operations on semaphores are wait and signal.
Explanation (HI): Semaphores पर दो atomic operations wait और signal हैं।
List-I और List-II का मिलान कीजिए: A. FCFS, B. SJF, C. Round Robin, D. Priority Scheduling
(UGC NET C.S. Re-Exam June-2024)
Correct Answer: C
Explanation (EN): FCFS → order of arrival, SJF → smallest next burst time, Round Robin → fair allocation by time slice, Priority Scheduling → each process assigned a priority.
Explanation (HI): FCFS → arrival order, SJF → smallest next burst time, Round Robin → time slice द्वारा fair allocation, Priority Scheduling → प्रत्येक process को priority दी जाती है।
16 processors वाले multiprocessor system में एक parallelizable task execute किया जाता है। यदि task का serial portion 200 clock cycles लेता है और parallel portion 800 clock cycles लेता है, तो सभी 16 processors उपयोग होने पर total clock cycles कितने होंगे?
(UGC NET C.S. Re-Exam June-2024)
Correct Answer: A
Explanation (EN): Parallel portion time = 800/16 = 50 cycles. Total = 200 + 50 = 250 cycles.
Explanation (HI): Parallel portion का time = 800/16 = 50 cycles। कुल time = 200 + 50 = 250 cycles।
Concurrent programming में mutual exclusion के बारे में निम्न statements में कौन-से true हैं? A. किसी भी समय केवल एक process critical section में हो सकता है। B. Mutual exclusion conflicts रोकने और shared resources पर एक समय में एक process की access सुनिश्चित करने के लिए है। C. यह विभिन्न algorithms का उपयोग कर सकता है ताकि processes एक साथ critical section में प्रवेश न करें। D. यह performance सुधारने के लिए multiple processes को एक साथ critical section में आने देता है।
(UGC NET C.S. Re-Exam June-2024)
Correct Answer: A
Explanation (EN): Statements A, B and C are true; D is false because mutual exclusion does not allow simultaneous access to the critical section.
Explanation (HI): Statements A, B और C सही हैं; D गलत है क्योंकि mutual exclusion critical section में simultaneous access की अनुमति नहीं देता।
Privileged Instructions के बारे में निम्न statements में कौन-से true हैं? A. इन्हें केवल OS kernel execute कर सकता है, user applications नहीं। B. ये hardware या system state को directly affect करने वाले operations जैसे I/O या memory management settings बदलने के लिए होते हैं। C. User applications सही permissions होने पर privileged instructions execute कर सकती हैं। D. ये सामान्यतः user mode में execute होते हैं।
(UGC NET C.S. Re-Exam June-2024)
Correct Answer: A
Explanation (EN): Only A and B are true. Privileged instructions execute in kernel mode, not user mode, and user applications cannot directly execute them.
Explanation (HI): केवल A और B सही हैं। Privileged instructions kernel mode में execute होते हैं, user mode में नहीं, और user applications इन्हें सीधे execute नहीं कर सकतीं।
तीन processes P1, P2 और P3 एक semaphore share कर रहे हैं। Semaphore का initial value 1 है। मान लें negative value waiting processes की संख्या बताती है। यदि access order (A) P2 needs to access, (B) P1 needs to access, (C) P3 needs to access, (D) P2 exits critical section, (E) P1 exits critical section है, तो semaphore का final value क्या होगा?
(UGC NET C.S. June-2017 (Paper-II))
Correct Answer: A
Explanation (EN): Starting from 1: P2 makes it 0, P1 makes it -1, P3 makes it -2, P2 exit makes it -1, P1 exit makes it 0.
Explanation (HI): Initial value 1 से शुरू करें: P2 के बाद 0, P1 के बाद -1, P3 के बाद -2, P2 exit के बाद -1, और P1 exit के बाद 0।