Operating system में buffer cache का उपयोग किसलिए किया जाता है?
(Bihar STET C.S. 12.09.2023 (Shift-I))
Correct Answer: B
Explanation (EN): The buffer cache is a high-speed memory area where copies of frequently accessed files or data are kept. This reduces the number of disk accesses and improves system performance.
Explanation (HI): Buffer cache high-speed memory area होती है जहाँ frequently accessed files या data की copies रखी जाती हैं। इससे disk access कम होते हैं और system performance बढ़ती है।
Hard disk के read-write head को उचित sector पर लाने में लगने वाला समय क्या कहलाता है?
(KVS PGT C.S. 2017)
Correct Answer: B
Explanation (EN): Seek time is the time taken by the disk head to move from one track to another to reach the required sector.
Explanation (HI): Seek time वह समय है जो disk head को एक track से दूसरे track पर जाकर required sector तक पहुँचने में लगता है।
एक operating system में 3 user processes हैं और प्रत्येक को resource R की 2 units चाहिए। R की न्यूनतम कितनी units हों कि deadlock कभी न हो?
(KVS PGT C.S. 2017)
Correct Answer: D
Explanation (EN): For n processes each requiring m units, the minimum number of resources to avoid deadlock is n(m−1)+1. Here it is 3(2−1)+1 = 4.
Explanation (HI): n processes और प्रत्येक को m units चाहिए हों, तो deadlock avoid करने के लिए minimum resources n(m−1)+1 होते हैं। यहाँ 3(2−1)+1 = 4।
Kernel प्रत्येक executing program की state को किस data structure की मदद से track करता है?
(KVS PGT C.S. 2017)
Correct Answer: A
Explanation (EN): The kernel uses a Process Control Block (PCB) to store information about each process.
Explanation (HI): Kernel प्रत्येक process की information store करने के लिए Process Control Block (PCB) का उपयोग करता है।
Synchronous load के साथ किसी shift register में एक byte data parallel load करने के लिए क्या आवश्यक है?
(KVS PGT C.S. 2018)
Correct Answer: A
Explanation (EN): In synchronous parallel load, the entire byte is loaded at once on a single clock pulse.
Explanation (HI): Synchronous parallel load में पूरा byte एक साथ केवल एक clock pulse पर load हो जाता है।
Open-file table में प्रत्येक entry के लिए रखे गए 'open-count' को manipulate करने वाले file operations कौन-से हैं?
(KVS PGT C.S. 2018)
Correct Answer: D
Explanation (EN): The open-count is incremented on open and decremented on close.
Explanation (HI): Open-count, file open करने पर बढ़ता है और close करने पर घटता है।
Data में कमियाँ और loopholes दूर करने की प्रक्रिया क्या कहलाती है?
(KVS PGT C.S. 2018)
Correct Answer: D
Explanation (EN): Removing errors, inconsistencies and unwanted parts from data is called data cleaning.
Explanation (HI): Data से errors, inconsistencies और unwanted parts हटाने की प्रक्रिया data cleaning कहलाती है।
एक computer system में page TLB में मिलने पर memory mapped access 100 ns लेता है और TLB miss होने पर 400 ns लेता है। यदि hit ratio 80% है, तो effective access time क्या होगा?
(KVS PGT C.S. 2018)
Correct Answer: B
Explanation (EN): Effective access time = 0.8×100 + 0.2×400 = 160 nanoseconds.
Explanation (HI): Effective access time = 0.8×100 + 0.2×400 = 160 nanoseconds.
Memory allocation की first-fit और best-fit strategies किस समस्या से प्रभावित होती हैं?
(KVS PGT C.S. 2013)
Correct Answer: A
Explanation (EN): Both first-fit and best-fit leave small unusable holes in memory over time, causing external fragmentation.
Explanation (HI): First-fit और best-fit समय के साथ memory में छोटे unusable holes छोड़ती हैं, जिससे external fragmentation होती है।
Redundancy के लिए सबसे सरल लेकिन महँगी तकनीक, जिसमें हर disk की duplicate copy रखी जाती है, क्या कहलाती है?
(KVS PGT C.S. 2013)
Correct Answer: B
Explanation (EN): Mirroring duplicates data on every disk to provide redundancy.
Explanation (HI): Mirroring में redundancy के लिए data की duplicate copy हर disk पर रखी जाती है।