Computer Fundamentals — MCQ Practice

Hindi aur English dono mein practice karo — click karo answer check karne ke liye

📚 2941 Questions 🌐 Hindi + English ✅ Free
भाषा / Language:
2941 questions
826
EN + हिं Medium
GB Optimal page replacement algorithm?
IN इष्टतम पृष्ठ प्रतिस्थापन एल्गोरिदम?
A
Is implementable in practice व्यवहार में कार्यान्वयन योग्य है
B
Replaces the page not used for longest time in future भविष्य में लंबे समय तक उपयोग न किए गए पेज को बदल देता है
C
Uses LRU एलआरयू का उपयोग करता है
D
Uses FIFO फीफो का उपयोग करता है
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) Optimal (OPT/Bélády's) algorithm replaces the page that won't be used for the longest future time — theoretical only.
व्याख्या (हिन्दी) ऑप्टिमल (ऑप्ट/बेलेडीज़) एल्गोरिदम उस पृष्ठ को प्रतिस्थापित करता है जिसका भविष्य में लंबे समय तक उपयोग नहीं किया जाएगा - केवल सैद्धांतिक।
827
EN + हिं Medium
GB Bélády's anomaly occurs in?
IN बेलाडी की विसंगति कहाँ होती है?
A
LRU एलआरयू
B
Optimal इष्टतम
C
FIFO फीफो
D
MRU एमआरयू
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) Bélády's anomaly: adding more page frames can increase page faults in FIFO page replacement.
व्याख्या (हिन्दी) बेलाडी की विसंगति: अधिक पृष्ठ फ़्रेम जोड़ने से फीफो पृष्ठ प्रतिस्थापन में पृष्ठ दोष बढ़ सकते हैं।
828
EN + हिं Medium
GB Working set model is related to?
IN वर्किंग सेट मॉडल किससे संबंधित है?
A
CPU scheduling सीपीयू शेड्यूलिंग
B
Page replacement and memory management पृष्ठ प्रतिस्थापन और स्मृति प्रबंधन
C
File systems फ़ाइल सिस्टम
D
Network routing नेटवर्क रूटिंग
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) The working set model tracks the pages a process has recently used to determine its memory requirements.
व्याख्या (हिन्दी) वर्किंग सेट मॉडल उन पेजों को ट्रैक करता है जिनका उपयोग एक प्रक्रिया ने हाल ही में अपनी मेमोरी आवश्यकताओं को निर्धारित करने के लिए किया है।
829
EN + हिं Medium
GB File allocation table (FAT) stores?
IN फ़ाइल आवंटन तालिका (एफएटी) भंडार?
A
File content फ़ाइल सामग्री
B
Location of file data clusters on disk डिस्क पर फ़ाइल डेटा क्लस्टर का स्थान
C
User permissions उपयोगकर्ता अनुमतियाँ
D
Directory names only केवल निर्देशिका नाम
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) FAT (File Allocation Table) maintains a table mapping cluster numbers to track where files are stored on disk.
व्याख्या (हिन्दी) FAT (फ़ाइल आवंटन तालिका) डिस्क पर फ़ाइलें कहाँ संग्रहीत हैं, यह ट्रैक करने के लिए क्लस्टर संख्याओं की एक तालिका मैपिंग बनाए रखती है।
830
EN + हिं Medium
GB Inode in Linux stores?
IN लिनक्स स्टोर्स में इनोड?
A
File content फ़ाइल सामग्री
B
File metadata (permissions, size, location) फ़ाइल मेटाडेटा (अनुमतियाँ, आकार, स्थान)
C
File name फ़ाइल का नाम
D
Directory structure only केवल निर्देशिका संरचना
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) An inode stores file metadata (permissions, owner, size, timestamps, block locations) but not the file name.
व्याख्या (हिन्दी) एक इनोड फ़ाइल मेटाडेटा (अनुमतियाँ, स्वामी, आकार, टाइमस्टैम्प, ब्लॉक स्थान) संग्रहीत करता है लेकिन फ़ाइल नाम नहीं।
831
EN + हिं Medium
GB Hard link in Linux?
IN लिनक्स में हार्ड लिंक?
A
Points to another path दूसरे रास्ते की ओर इशारा करता है
B
Points to same inode as original मूल के समान इनोड को इंगित करता है
C
Creates a copy एक प्रति बनाता है
D
Stores metadata only केवल मेटाडेटा संग्रहीत करता है
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) A hard link creates another directory entry pointing to the same inode (same data) as the original file.
व्याख्या (हिन्दी) एक हार्ड लिंक मूल फ़ाइल के समान इनोड (समान डेटा) की ओर इशारा करते हुए एक और निर्देशिका प्रविष्टि बनाता है।
832
EN + हिं Medium
GB Soft link (symbolic link) in Linux?
IN लिनक्स में सॉफ्ट लिंक (प्रतीकात्मक लिंक)?
A
Points to same inode समान इनोड की ओर इशारा करता है
B
Points to path/name of original file मूल फ़ाइल के पथ/नाम की ओर इंगित करता है
C
Is always on same disk हमेशा एक ही डिस्क पर होता है
D
Cannot be deleted हटाया नहीं जा सकता
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) A soft link (symlink) points to the path/name of the original file, not the inode directly.
व्याख्या (हिन्दी) एक सॉफ्ट लिंक (सिम्लिंक) मूल फ़ाइल के पथ/नाम को इंगित करता है, सीधे इनोड को नहीं।
833
EN + हिं Easy
GB What does chmod 755 mean?
IN चामोद 755 का क्या मतलब है?
A
Read-write-execute for owner; read-execute for group and others मालिक के लिए पढ़ें-लिखें-निष्पादित करें; समूह और अन्य के लिए पढ़ें-निष्पादित करें
B
Read for all सभी के लिए पढ़ें
C
Write for all सभी के लिए लिखें
D
No access तक पहुँच नहीं
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) chmod 755: owner (rwx=7), group (r-x=5), others (r-x=5).
व्याख्या (हिन्दी) chmod 755: स्वामी (rwx=7), समूह (r-x=5), अन्य (r-x=5)।
834
EN + हिं Medium
GB Root user in Linux has UID?
IN लिनक्स में रूट उपयोगकर्ता के पास यूआईडी है?
A
1 1
C
999 999
D
100 100
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) The root (superuser) account in Linux always has UID (User ID) of 0.
व्याख्या (हिन्दी) लिनक्स में रूट (सुपरयूजर) खाते का यूआईडी (यूजर आईडी) हमेशा 0 होता है।
835
EN + हिं Medium
GB Which command shows network interfaces in Linux?
IN कौन सा कमांड लिनक्स में नेटवर्क इंटरफेस दिखाता है?
A
ls रास
B
ifconfig or ip addr ifconfig या आईपी पता
C
netstat नेटस्टैट
D
ping गुनगुनाहट
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) 'ifconfig' (legacy) and 'ip addr' (modern) display network interface configuration in Linux.
व्याख्या (हिन्दी) 'ifconfig' (विरासत) और 'ip addr' (आधुनिक) Linux में नेटवर्क इंटरफ़ेस कॉन्फ़िगरेशन प्रदर्शित करते हैं।
836
EN + हिं Medium
GB Which command installs packages in Ubuntu?
IN कौन सा कमांड उबंटू में पैकेज स्थापित करता है?
A
yum install यम स्थापित करें
B
rpm -i आरपीएम -आई
C
apt install उपयुक्त स्थापना
D
pacman -S पैक्मैन-एस
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) 'apt install' (Advanced Package Tool) installs software packages on Debian/Ubuntu-based Linux systems.
व्याख्या (हिन्दी) 'एपीटी इंस्टॉल' (उन्नत पैकेज टूल) डेबियन/उबंटू-आधारित लिनक्स सिस्टम पर सॉफ्टवेयर पैकेज स्थापित करता है।
837
EN + हिं Medium
GB Which command installs packages in CentOS/RHEL?
IN कौन सा कमांड CentOS/RHEL में पैकेज स्थापित करता है?
A
apt install उपयुक्त स्थापना
B
apt-get उपयुक्त-प्राप्त करें
C
yum install / dnf install यम इंस्टॉल / डीएनएफ इंस्टॉल
D
pacman Pacman
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) 'yum install' (older) and 'dnf install' (modern) install packages on CentOS/RHEL-based systems.
व्याख्या (हिन्दी) 'यम इंस्टॉल' (पुराना) और 'डीएनएफ इंस्टॉल' (आधुनिक) सेंटओएस/आरएचईएल-आधारित सिस्टम पर पैकेज इंस्टॉल करें।
838
EN + हिं Easy
GB What is /etc in Linux?
IN लिनक्स में /etc क्या है?
A
Executable files निष्पादन योग्य फ़ाइलें
B
System configuration files सिस्टम कॉन्फ़िगरेशन फ़ाइलें
C
Home directories होम निर्देशिकाएँ
D
Temporary files अस्थायी फ़ाइलें
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) /etc contains system-wide configuration files for the Linux operating system and applications.
व्याख्या (हिन्दी) /etc में Linux ऑपरेटिंग सिस्टम और अनुप्रयोगों के लिए सिस्टम-व्यापी कॉन्फ़िगरेशन फ़ाइलें शामिल हैं।
839
EN + हिं Easy
GB What is /var in Linux?
IN Linux में /var क्या है?
A
Virtual addresses आभासी पते
B
Variable data files (logs, spools, databases) परिवर्तनीय डेटा फ़ाइलें (लॉग, स्पूल, डेटाबेस)
C
Virtual machines आभाषी दुनिया
D
Video files वीडियो फ़ाइलें
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) /var contains variable data that changes during normal operation: logs, mail spools, databases.
व्याख्या (हिन्दी) /var में वेरिएबल डेटा होता है जो सामान्य ऑपरेशन के दौरान बदलता है: लॉग, मेल स्पूल, डेटाबेस।
840
EN + हिं Easy
GB What is /tmp in Linux?
IN लिनक्स में /tmp क्या है?
A
Text files पाठ फ़ाइलें
B
System temp files (cleared on reboot) सिस्टम अस्थायी फ़ाइलें (रीबूट पर साफ़)
C
Thumbnail cache थंबनेल कैश
D
TCP logs टीसीपी लॉग
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) /tmp is used for temporary files; many systems clear it on reboot.
व्याख्या (हिन्दी) /tmp का उपयोग अस्थायी फ़ाइलों के लिए किया जाता है; कई सिस्टम रीबूट पर इसे साफ़ कर देते हैं।
826–840 of 2941