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
256
EN + हिं Hard
GB Convert decimal 64 to binary?
IN दशमलव 64 को बाइनरी में बदलें?
A
0100 0000 0100 0000
B
1000 0000 1000 0000
C
0110 0100 0110 0100
D
0100 0001 0100 0001
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) 64 = 2⁶ = 0100 0000 in 8-bit binary.
व्याख्या (हिन्दी) 64 = 2⁶ = 8-बिट बाइनरी में 0100 0000।
257
EN + हिं Medium
GB Hexadecimal 10 in decimal is?
IN दशमलव में हेक्साडेसिमल 10 है?
A
10 10
B
16 16
C
15 15
D
17 17
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) Hex 10 = 1×16 + 0 = 16 in decimal.
व्याख्या (हिन्दी) हेक्स 10 = 1×16 + 0 = 16 दशमलव में।
258
EN + हिं Hard
GB Convert binary 11000000 to decimal?
IN बाइनरी 11000000 को दशमलव में बदलें?
A
192 192
B
190 190
C
194 194
D
188 188
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) 11000000 = 128+64 = 192 in decimal.
व्याख्या (हिन्दी) 11000000 = 128+64 = 192 दशमलव में.
259
EN + हिं Easy
GB What is decimal 15 in hexadecimal?
IN हेक्साडेसिमल में दशमलव 15 क्या है?
A
E
B
D डी
C
F एफ
D
10 10
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) Decimal 15 = F in hexadecimal.
व्याख्या (हिन्दी) दशमलव 15 = हेक्साडेसिमल में एफ.
260
EN + हिं Medium
GB Octal 10 in decimal is?
IN दशमलव में ऑक्टल 10 है?
A
8 8
B
10 10
C
16 16
D
2 2
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) Octal 10 = 1×8 + 0 = 8 in decimal.
व्याख्या (हिन्दी) अष्टक 10 = 1×8 + 0 = 8 दशमलव में।
261
EN + हिं Medium
GB Binary 0000 1111 in hexadecimal is?
IN हेक्साडेसिमल में बाइनरी 0000 1111 है?
A
0F 0एफ
B
F0 एफ0
C
FF सीमांत बल
D
00 00
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) 0000=0, 1111=F → hexadecimal 0F.
व्याख्या (हिन्दी) 0000=0, 1111=F → हेक्साडेसिमल 0F.
262
EN + हिं Medium
GB Decimal 128 in binary is?
IN बाइनरी में दशमलव 128 है?
A
10000000 10000000
B
01000000 01000000
C
11000000 11000000
D
10000001 10000001
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) 128 = 2⁷ = 10000000 in binary.
व्याख्या (हिन्दी) 128 = 2⁷ = 10000000 बाइनरी में।
263
EN + हिं Medium
GB Hexadecimal FF in octal is?
IN अष्टाधारी में हेक्साडेसिमल एफएफ है?
A
377 377
B
777 777
C
177 177
D
357 357
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) FF hex = 255 decimal = 3×64+7×8+7 = 377 in octal.
व्याख्या (हिन्दी) एफएफ हेक्स = 255 दशमलव = 3×64+7×8+7 = 377 अष्टक में।
264
EN + हिं Medium
GB Adding binary 0110 + 0111 = ?
IN बाइनरी जोड़ना 0110 + 0111 = ?
A
1101 1101
B
1100 1100
C
1111 1111
D
1110 1110
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) 0110 + 0111 = 6+7 = 13 = 1101 in binary.
व्याख्या (हिन्दी) 0110 + 0111 = 6+7 = 13 = 1101 बाइनरी में।
265
EN + हिं Medium
GB Decimal 10 in octal is?
IN दशमलव 10 अष्टक में है?
A
12 12
B
10 10
C
8 8
D
2 2
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) Decimal 10 = 1×8+2 = 12 in octal.
व्याख्या (हिन्दी) दशमलव 10 = 1×8+2 = 12 अष्टक में।
266
EN + हिं Easy
GB What is the largest single digit in octal?
IN अष्टक में सबसे बड़ा एकल अंक कौन सा है?
A
6 6
B
7 7
C
8 8
D
9 9
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) The largest single digit in octal (base-8) is 7.
व्याख्या (हिन्दी) अष्टक (आधार-8) में सबसे बड़ा एकल अंक 7 है।
267
EN + हिं Hard
GB Convert hex 2F to decimal?
IN हेक्स 2F को दशमलव में बदलें?
A
47 47
B
45 45
C
46 46
D
48 48
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) 2F hex = 2×16 + 15 = 32+15 = 47 in decimal.
व्याख्या (हिन्दी) 2F हेक्स = 2×16 + 15 = 32+15 = 47 दशमलव में।
268
EN + हिं Medium
GB Binary 1001 × 2 in binary is?
IN बाइनरी में बाइनरी 1001×2 है?
A
10010 10010
B
11000 11000
C
10100 10100
D
10001 10001
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) Multiplying by 2 in binary = left shift by 1: 1001 → 10010.
व्याख्या (हिन्दी) बाइनरी में 2 से गुणा करना = 1 से बायां शिफ्ट: 1001 → 10010।
269
EN + हिं Medium
GB The radix (base) of hexadecimal system is?
IN हेक्साडेसिमल प्रणाली का मूलांक (आधार) है?
A
8 8
B
10 10
C
12 12
D
16 16
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) Radix means base; hexadecimal has radix 16.
व्याख्या (हिन्दी) मूलांक का अर्थ है आधार; हेक्साडेसिमल का मूलांक 16 है।
270
EN + हिं Hard
GB Convert decimal 255 to hexadecimal?
IN दशमलव 255 को हेक्साडेसिमल में बदलें?
A
FE फ़े
B
FF सीमांत बल
C
EE ईई
D
EF एफई
✅ Correct Answer:
💡 Explanation / व्याख्या
Explanation (English) 255 = 15×16 + 15 = FF in hexadecimal.
व्याख्या (हिन्दी) 255 = 15×16 + 15 = हेक्साडेसिमल में एफएफ।
256–270 of 2941