Computer Fundamentals — MCQ Practice

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

📚 58 Questions 🌐 Hindi + English ✅ Free
भाषा / Language:
58 questions
46
EN + हिं Medium
GB Two hexadecimal digits can represent how many bits?
IN दो हेक्साडेसिमल अंक कितने बिट्स का प्रतिनिधित्व कर सकते हैं?
A
4 4
B
8 8
C
16 16
D
2 2
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) Each hex digit = 4 bits, so 2 hex digits = 8 bits = 1 byte.
व्याख्या (हिन्दी) प्रत्येक हेक्स अंक = 4 बिट्स, इसलिए 2 हेक्स अंक = 8 बिट्स = 1 बाइट।
47
EN + हिं Medium
GB Binary number 10000000000 has how many zeros?
IN बाइनरी नंबर 10000000000 में कितने शून्य हैं?
A
9 9
B
10 10
C
11 11
D
8 8
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) 10000000000 = 1 followed by 10 zeros.
व्याख्या (हिन्दी) 10000000000 = 1 के बाद 10 शून्य।
48
EN + हिं Medium
GB Hexadecimal is more convenient than binary for memory addresses because?
IN मेमोरी एड्रेस के लिए हेक्साडेसिमल बाइनरी की तुलना में अधिक सुविधाजनक है क्योंकि?
A
It's more accurate यह अधिक सटीक है
B
Each byte is represented by exactly 2 hex digits प्रत्येक बाइट को बिल्कुल 2 हेक्स अंकों द्वारा दर्शाया जाता है
C
It's faster to compute यह गणना करने में तेज़ है
D
Computers prefer hex कंप्यूटर हेक्स पसंद करते हैं
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) Each byte (8 bits) maps exactly to 2 hex digits, making hex a compact representation for memory addresses.
व्याख्या (हिन्दी) प्रत्येक बाइट (8 बिट्स) बिल्कुल 2 हेक्स अंकों को मैप करता है, जिससे हेक्स मेमोरी पतों के लिए एक कॉम्पैक्ट प्रतिनिधित्व बन जाता है।
49
EN + हिं Medium
GB Hexadecimal F0 in decimal is?
IN दशमलव में हेक्साडेसिमल F0 है?
A
240 240
B
250 250
C
230 230
D
244 244
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) F0 hex = 15×16 + 0 = 240.
व्याख्या (हिन्दी) F0 हेक्स = 15×16 + 0 = 240.
50
EN + हिं Medium
GB 1 Nibble equals how many bits?
IN 1 निबल कितने बिट्स के बराबर होता है?
A
2 2
B
4 4
C
8 8
D
16 16
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) A nibble is 4 bits — half a byte — representing one hexadecimal digit (0-F).
व्याख्या (हिन्दी) एक निबल 4 बिट्स - आधा बाइट - एक हेक्साडेसिमल अंक (0-एफ) का प्रतिनिधित्व करता है।
51
EN + हिं Medium
GB How many bytes in a Kilobyte (binary)?
IN एक किलोबाइट (बाइनरी) में कितने बाइट्स होते हैं?
A
1000 1000
B
1024 1024
C
512 512
D
2048 2048
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) In binary/computing context, 1 KB = 2^10 = 1024 bytes.
व्याख्या (हिन्दी) बाइनरी/कंप्यूटिंग संदर्भ में, 1 KB = 2^10 = 1024 बाइट्स।
52
EN + हिं Medium
GB Hexadecimal 7F in decimal?
IN दशमलव में हेक्साडेसिमल 7F?
A
127 127
B
128 128
C
126 126
D
125 125
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) 7F hex = 7x16 + 15 = 112+15 = 127.
व्याख्या (हिन्दी) 7F हेक्स = 7x16 + 15 = 112+15 = 127.
53
EN + हिं Medium
GB Decimal 200 in hexadecimal?
IN हेक्साडेसिमल में दशमलव 200?
A
B8 बी8
B
C8 सी 8
C
C0 सी0
D
A8 ए8
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) 200 = 12x16 + 8 = C8 in hexadecimal.
व्याख्या (हिन्दी) 200 = 12x16 + 8 = सी8 हेक्साडेसिमल में।
54
EN + हिं Medium
GB Binary 11111110 in hexadecimal?
IN हेक्साडेसिमल में बाइनरी 11111110?
A
FE फ़े
B
EF एफई
C
FF सीमांत बल
D
7F 7एफ
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) 1111=F, 1110=E, so binary 11111110 = FE in hexadecimal.
व्याख्या (हिन्दी) 1111=एफ, 1110=ई, इसलिए बाइनरी 11111110 = हेक्साडेसिमल में एफई।
55
EN + हिं Medium
GB Hexadecimal BB in decimal?
IN दशमलव में हेक्साडेसिमल बीबी?
A
187 187
B
188 188
C
186 186
D
189 189
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) BB hex = 11x16 + 11 = 176+11 = 187.
व्याख्या (हिन्दी) बीबी हेक्स = 11x16 + 11 = 176+11 = 187।
56
EN + हिं Hard
GB Convert 0.75 decimal to binary?
IN 0.75 दशमलव को बाइनरी में बदलें?
A
0.110 0.110
B
0.11 0.11
C
0.111 0.111
D
0.100 0.100
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) 0.75x2=1.5(bit1), 0.5x2=1.0(bit1), done: 0.11 binary.
व्याख्या (हिन्दी) 0.75x2=1.5(बिट1), 0.5x2=1.0(बिट1), हो गया: 0.11 बाइनरी।
57
EN + हिं Medium
GB Hexadecimal 12C in decimal?
IN दशमलव में हेक्साडेसिमल 12C?
A
300 300
B
301 301
C
302 302
D
298 298
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) 12C = 1x256 + 2x16 + 12 = 256+32+12 = 300.
व्याख्या (हिन्दी) 12सी = 1x256 + 2x16 + 12 = 256+32+12 = 300।
58
EN + हिं Medium
GB Hexadecimal FF in decimal is?
IN दशमलव में हेक्साडेसिमल एफएफ है?
A
254 254
B
255 255
C
256 256
D
253 253
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) FF hex = 15x16 + 15 = 240+15 = 255.
व्याख्या (हिन्दी) एफएफ हेक्स = 15x16 + 15 = 240+15 = 255।
46–58 of 58