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
1306
EN + हिं Medium
GB Binary 11000000.10101000.00000001.00000001 is IP address?
IN बाइनरी 11000000.10101000.00000001.00000001 आईपी एड्रेस है?
A
192.168.1.1 192.168.1.1
B
196.168.1.1 196.168.1.1
C
192.170.1.1 192.170.1.1
D
193.168.1.1 193.168.1.1
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) 11000000=192, 10101000=168, 00000001=1, 00000001=1 → 192.168.1.1
व्याख्या (हिन्दी) 11000000=192, 10101000=168, 0000001=1, 0000001=1 → 192.168.1.1
1307
EN + हिं Medium
GB Booth's algorithm is used for?
IN बूथ का एल्गोरिदम किसके लिए प्रयोग किया जाता है?
A
Binary addition बाइनरी जोड़
B
Efficient signed binary multiplication कुशल हस्ताक्षरित द्विआधारी गुणन
C
Division विभाजन
D
Square root computation वर्गमूल गणना
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) Booth's algorithm efficiently multiplies signed binary numbers by encoding runs of 1s.
व्याख्या (हिन्दी) बूथ का एल्गोरिदम 1s के रन एन्कोडिंग द्वारा हस्ताक्षरित बाइनरी संख्याओं को कुशलतापूर्वक गुणा करता है।
1308
EN + हिं Medium
GB Restoring division algorithm in binary?
IN बाइनरी में डिविजन एल्गोरिदम को पुनर्स्थापित किया जा रहा है?
A
Adds divisor repeatedly भाजक को बार-बार जोड़ता है
B
Partially restores remainder if subtraction result is negative यदि घटाव परिणाम नकारात्मक है तो शेषफल को आंशिक रूप से पुनर्स्थापित करता है
C
Uses reciprocal पारस्परिक उपयोग करता है
D
Works only for unsigned केवल अहस्ताक्षरित के लिए काम करता है
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) Restoring division restores the partial remainder to its previous value if subtraction goes negative.
व्याख्या (हिन्दी) यदि घटाव नकारात्मक हो जाता है तो विभाजन को पुनर्स्थापित करने से आंशिक शेषफल उसके पिछले मान पर पुनर्स्थापित हो जाता है।
1309
EN + हिं Medium
GB Binary number 101.101 in decimal is?
IN दशमलव में बाइनरी संख्या 101.101 है?
A
5.5 5.5
B
5.625 5.625
C
5.125 5.125
D
5.25 5.25
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) 101.101 = 4+0+1 + 0.5+0+0.125 = 5.625
व्याख्या (हिन्दी) 101.101 = 4+0+1 + 0.5+0+0.125 = 5.625
1310
EN + हिं Medium
GB Hexadecimal 0.8 in decimal is?
IN दशमलव में हेक्साडेसिमल 0.8 है?
A
0.5 0.5
B
0.8 0.8
C
0.53125 0.53125
D
0.25 0.25
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) 0.8 hex = 8 × 16⁻¹ = 8/16 = 0.5
व्याख्या (हिन्दी) 0.8 हेक्स = 8 × 16⁻¹ = 8/16 = 0.5
1311
EN + हिं Medium
GB Octal 0.4 in decimal is?
IN दशमलव में ऑक्टल 0.4 है?
A
0.4 0.4
B
0.5 0.5
C
0.25 0.25
D
0.125 0.125
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) Octal 0.4 = 4 × 8⁻¹ = 4/8 = 0.5
व्याख्या (हिन्दी) ऑक्टल 0.4 = 4 × 8⁻¹ = 4/8 = 0.5
1312
EN + हिं Medium
GB BCD addition of 7+6: result with correction?
IN 7+6 का बीसीडी जोड़: सुधार के साथ परिणाम?
A
0001 0011 0001 0011
B
0001 1101 0001 1101
C
0000 1101 0000 1101
D
0001 0001 0001 0001
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) 7(0111)+6(0110)=1101(13). 1101>9, add 0110: 1101+0110=1 0011 → BCD 0001 0011 = 13
व्याख्या (हिन्दी) 7(0111)+6(0110)=1101(13). 1101>9, 0110 जोड़ें: 1101+0110=1 0011 → बीसीडी 0001 0011 = 13
1313
EN + हिं Medium
GB Excess-3 representation of decimal 5 is?
IN दशमलव 5 का आधिक्य-3 निरूपण है?
A
0101 0101
B
1000 1000
C
0110 0110
D
1001 1001
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) Excess-3: decimal 5 + 3 = 8 = 1000 in binary
व्याख्या (हिन्दी) अतिरिक्त-3: दशमलव 5 + 3 = 8 = 1000 बाइनरी में
1314
EN + हिं Medium
GB Gray code for decimal 5 is?
IN दशमलव 5 के लिए ग्रे कोड है?
A
0101 0101
B
0111 0111
C
0100 0100
D
1100 1100
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) Binary 5=0101; Gray code: MSB same (0), 0⊕1=1, 1⊕0=1, 0⊕1=1 → 0111
व्याख्या (हिन्दी) बाइनरी 5=0101; ग्रे कोड: MSB समान (0), 0⊕1=1, 1⊕0=1, 0⊕1=1 → 0111
1315
EN + हिं Medium
GB Binary to Gray code conversion: each Gray bit = ?
IN बाइनरी से ग्रे कोड रूपांतरण: प्रत्येक ग्रे बिट = ?
A
Same as binary बाइनरी के समान
B
XOR of binary bit with previous binary bit पिछले बाइनरी बिट के साथ बाइनरी बिट का XOR
C
AND of binary bits और बाइनरी बिट्स का
D
NOT of binary bit बाइनरी बिट का नहीं
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) Gray code bit i = binary bit i XOR binary bit i+1 (for i < n-1); MSB is same as binary MSB.
व्याख्या (हिन्दी) ग्रे कोड बिट i = बाइनरी बिट i XOR बाइनरी बिट i+1 (i < n-1 के लिए); MSB बाइनरी MSB के समान है।
1316
EN + हिं Medium
GB Hamming code is used for?
IN हैमिंग कोड का उपयोग किसके लिए किया जाता है?
A
Data compression आधार - सामग्री संकोचन
B
Single-bit error detection AND correction एकल-बिट त्रुटि का पता लगाना और सुधार करना
C
Encryption कूटलेखन
D
Multiplication गुणा
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) Hamming code adds redundancy bits to detect and correct single-bit errors in transmitted data.
व्याख्या (हिन्दी) हैमिंग कोड प्रेषित डेटा में एकल-बिट त्रुटियों का पता लगाने और उन्हें ठीक करने के लिए अतिरेक बिट्स जोड़ता है।
1317
EN + हिं Medium
GB Minimum Hamming distance for single error correction is?
IN एकल त्रुटि सुधार के लिए न्यूनतम हैमिंग दूरी कितनी है?
A
1 1
B
2 2
C
3 3
D
4 4
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) Minimum Hamming distance of 3 is required to both detect and correct single-bit errors.
व्याख्या (हिन्दी) एकल-बिट त्रुटियों का पता लगाने और उन्हें ठीक करने के लिए न्यूनतम 3 हैमिंग दूरी की आवश्यकता होती है।
1318
EN + हिं Medium
GB Number of parity bits needed for 8 data bits in Hamming code?
IN हैमिंग कोड में 8 डेटा बिट्स के लिए आवश्यक समता बिट्स की संख्या?
A
2 2
B
3 3
C
4 4
D
5 5
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) For m=8 data bits: 2^p ≥ m+p+1 → 2^4=16 ≥ 8+4+1=13 → 4 parity bits needed.
व्याख्या (हिन्दी) m=8 डेटा बिट्स के लिए: 2^p ≥ m+p+1 → 2^4=16 ≥ 8+4+1=13 → 4 समता बिट्स की आवश्यकता है।
1319
EN + हिं Medium
GB CRC error detection can detect?
IN सीआरसी त्रुटि का पता लगा सकता है?
A
All single-bit errors सभी एकल-बिट त्रुटियाँ
B
Burst errors up to CRC length सीआरसी लंबाई तक बर्स्ट त्रुटियाँ
C
Only even-numbered errors केवल सम संख्या वाली त्रुटियाँ
D
No errors त्रुटियाँ नहीं
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) CRC detects all single-bit errors, all double-bit errors, all odd-bit errors, and burst errors ≤ CRC length.
व्याख्या (हिन्दी) सीआरसी सभी एकल-बिट त्रुटियों, सभी डबल-बिट त्रुटियों, सभी विषम-बिट त्रुटियों और बर्स्ट त्रुटियों ≤ सीआरसी लंबाई का पता लगाता है।
1320
EN + हिं Medium
GB ASCII 'Z' (uppercase) has decimal code?
IN ASCII 'Z' (अपरकेस) में दशमलव कोड है?
A
90 90
B
91 91
C
89 89
D
92 92
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) ASCII Z = 90 (A=65, so Z = 65+25 = 90)
व्याख्या (हिन्दी) एएससीआईआई जेड = 90 (ए=65, इसलिए जेड = 65+25 = 90)
1306–1320 of 2941