100 Common Questions on Binary Numbers & Data Representation

Q1.
What is the base of the Binary Number System?
a) 2
b) 8
c) 10
d) 16

✅ Answer: a) 2
📘 Reasoning: Binary uses only two digits (0 and 1).

বাংলা:
Binary Number System-এর ভিত্তি কত?
উত্তর: 2
কারণ: Binary-তে শুধু 0 এবং 1 ব্যবহার হয়।

 


 

Q2.
Which digits are used in the Binary Number System?
a) 0–9
b) 0–7
c) 0–1
d) 0–F

✅ Answer: c) 0–1
📘 Reasoning: Binary has only two symbols: 0 and 1.

বাংলা:
Binary Number System-এ কোন সংখ্যা ব্যবহার হয়?
উত্তর: 0 এবং 1
কারণ: Binary System-এ শুধুমাত্র দুইটি সংখ্যা থাকে।

 


 

Q3.
What is the binary representation of decimal number 5?
a) 101
b) 111
c) 110
d) 100

✅ Answer: a) 101
📘 Reasoning: Decimal 5 = (1×2²) + (0×2¹) + (1×2⁰).

বাংলা:
Decimal 5-এর Binary রূপ কী?
উত্তর: 101
কারণ: 5 = 4 + 1 → 101 (Binary)।

 


 

Q4.
Which number system is called the “machine language” of computers?
a) Decimal
b) Binary
c) Octal
d) Hexadecimal

✅ Answer: b) Binary
📘 Reasoning: Computers process data in 0s and 1s.

বাংলা:
কোন সংখ্যাপদ্ধতিকে কম্পিউটারের “Machine Language” বলা হয়?
উত্তর: Binary
কারণ: কম্পিউটার শুধুমাত্র 0 এবং 1 বুঝতে পারে।

 


 

Q5.
What is 1010 (binary) equal to in decimal?
a) 8
b) 10
c) 12
d) 14

✅ Answer: b) 10
📘 Reasoning: (1×2³) + (0×2²) + (1×2¹) + (0×2⁰) = 8+0+2+0=10.

বাংলা:
Binary 1010-এর Decimal মান কত?
উত্তর: 10
কারণ: 1010 → 8+2=10।

 


 

Q6.
In binary, what comes after 111?
a) 1000
b) 1010
c) 1110
d) 1100

✅ Answer: a) 1000
📘 Reasoning: After 7 (111), the next binary is 8 (1000).

বাংলা:
Binary 111-এর পরে কী আসে?
উত্তর: 1000
কারণ: 111 (7)-এর পর 1000 (8) হয়।

 


 

Q7.
How many bits are there in a byte?
a) 2
b) 4
c) 8
d) 16

✅ Answer: c) 8
📘 Reasoning: 1 byte = 8 bits.

বাংলা:
একটি Byte-এ কতটি Bit থাকে?
উত্তর: 8
কারণ: 1 Byte = 8 Bit।

 


 

Q8.
Which binary number represents decimal 15?
a) 1110
b) 1111
c) 1010
d) 1101

✅ Answer: b) 1111
📘 Reasoning: 15 = 8+4+2+1 = 1111 (binary).

বাংলা:
Decimal 15-এর Binary রূপ কী?
উত্তর: 1111
কারণ: 15 = 1111 (Binary)।

 


 

Q9.
Which unit is used to measure computer storage?
a) Hertz
b) Byte
c) Pixel
d) Watt

✅ Answer: b) Byte
📘 Reasoning: Storage is measured in Bytes, KB, MB, GB, etc.

বাংলা:
কম্পিউটার স্টোরেজ মাপার একক কী?
উত্তর: Byte
কারণ: KB, MB, GB ইত্যাদি Byte ভিত্তিক।

 


 

Q10.
Which number system is most closely related to binary and often used in shorthand notation?
a) Decimal
b) Octal
c) Hexadecimal
d) Both b and c

✅ Answer: d) Both b and c
📘 Reasoning: Binary numbers are grouped into Octal (3 bits) or Hexadecimal (4 bits).

বাংলা:
Binary-এর সাথে সবচেয়ে ঘনিষ্ঠ এবং সংক্ষিপ্ত নোটেশনে ব্যবহৃত কোন সংখ্যা পদ্ধতি?
উত্তর: Octal ও Hexadecimal
কারণ: Binary সহজে Octal (3 bit) ও Hexadecimal (4 bit)-এ রূপান্তর করা যায়।


Q11.
What is the binary equivalent of decimal 9?
a) 1000
b) 1001
c) 1010
d) 1100

✅ Answer: b) 1001
📘 Reasoning: 9 = 8+1 → 1001 in binary.

বাংলা:
Decimal 9-এর Binary রূপ কী?
উত্তর: 1001
কারণ: 9 = 1001 (Binary)।

 


 

Q12.
Which of the following is NOT a positional number system?
a) Binary
b) Decimal
c) Roman Numerals
d) Octal

✅ Answer: c) Roman Numerals
📘 Reasoning: Roman Numerals are non-positional, unlike binary, octal, and decimal.

বাংলা:
নিচের কোনটি Positional Number System নয়?
উত্তর: Roman Numerals
কারণ: Roman সংখ্যা পদ্ধতি Non-positional।

 


 

Q13.
In binary addition, 1 + 1 equals:
a) 0 with carry 1
b) 1 with carry 0
c) 10 with carry 0
d) 11

✅ Answer: a) 0 with carry 1
📘 Reasoning: In binary, 1+1 = 10 (0 and carry 1).

বাংলা:
Binary যোগে 1+1 কত হয়?
উত্তর: 0 (carry 1)
কারণ: Binary-তে 1+1 = 10।

 


 

Q14.
Which binary number represents decimal 20?
a) 10100
b) 10011
c) 11010
d) 11100

✅ Answer: a) 10100
📘 Reasoning: 20 = 16+4 → 10100.

বাংলা:
Decimal 20-এর Binary রূপ কী?
উত্তর: 10100
কারণ: 20 = 10100 (Binary)।

 


 

Q15.
What is the smallest unit of data in a computer?
a) Byte
b) Bit
c) Word
d) Nibble

✅ Answer: b) Bit
📘 Reasoning: Bit (Binary Digit) is the smallest unit, either 0 or 1.

বাংলা:
কম্পিউটারের ডেটার সবচেয়ে ছোট একক কী?
উত্তর: Bit
কারণ: Bit মানে 0 অথবা 1।

 


 

Q16.
How many nibbles are in a byte?
a) 1
b) 2
c) 4
d) 8

✅ Answer: b) 2
📘 Reasoning: 1 nibble = 4 bits, so 1 byte = 8 bits = 2 nibbles.

বাংলা:
একটি Byte-এ কতটি Nibble থাকে?
উত্তর: 2
কারণ: 1 Byte = 8 bits = 2 Nibbles।

 


 

Q17.
What is the binary representation of decimal 25?
a) 11000
b) 11001
c) 10101
d) 11100

✅ Answer: b) 11001
📘 Reasoning: 25 = 16+8+1 → 11001.

বাংলা:
Decimal 25-এর Binary রূপ কী?
উত্তর: 11001
কারণ: 25 = 11001 (Binary)।

 


 

Q18.
Which of the following is a non-binary number system?
a) Base-2
b) Base-10
c) Base-16
d) Base-8

✅ Answer: b) Base-10
📘 Reasoning: Base-10 is decimal, not binary.

বাংলা:
নিচের কোনটি Binary Number System নয়?
উত্তর: Base-10
কারণ: Base-10 হলো Decimal, Binary নয়।

 


 

Q19.
In binary subtraction, what is 10 – 1?
a) 1
b) 0
c) 11
d) 10

✅ Answer: a) 1
📘 Reasoning: 2 (10 in binary) – 1 = 1.

বাংলা:
Binary Subtraction-এ 10 – 1 = ?
উত্তর: 1
কারণ: 2 (10) – 1 = 1।

 


 

Q20.
How many unique values can 3 bits represent?
a) 6
b) 7
c) 8
d) 16

✅ Answer: c) 8
📘 Reasoning: n bits can represent 2ⁿ values → 2³ = 8.

বাংলা:
3 bit দিয়ে কতটি ভিন্ন মান প্রকাশ করা যায়?
উত্তর: 8
কারণ: 2³ = 8।


 

Q21.
What is the binary equivalent of decimal 50?
a) 110001
b) 110010
c) 110011
d) 110100

✅ Answer: b) 110010
📘 Reasoning: 50 = 32 + 16 + 2 → 110010.

বাংলা:
Decimal 50-এর Binary রূপ কী?
উত্তর: 110010
কারণ: 50 = 110010 (Binary)।

 


 

Q22.
In binary multiplication, 1 × 1 = ?
a) 0
b) 1
c) 2
d) 10

✅ Answer: b) 1
📘 Reasoning: In binary, multiplication follows normal logic (1×1=1).

বাংলা:
Binary গুণে 1 × 1 কত?
উত্তর: 1
কারণ: Binary গুণে 1×1 = 1।

 


 

Q23.
What is the binary equivalent of decimal 32?
a) 100000
b) 100010
c) 110000
d) 111000

✅ Answer: a) 100000
📘 Reasoning: 32 = 2⁵ → 100000.

বাংলা:
Decimal 32-এর Binary রূপ কী?
উত্তর: 100000
কারণ: 32 = 2⁵ = 100000।

 


 

Q24.
Which binary number is equal to decimal 255?
a) 11111111
b) 11111110
c) 11110000
d) 11001111

✅ Answer: a) 11111111
📘 Reasoning: 255 = 2⁸ – 1 = 11111111.

বাংলা:
Decimal 255-এর Binary রূপ কী?
উত্তর: 11111111
কারণ: 255 = 11111111 (Binary)।

 


 

Q25.
What is a group of 4 bits called?
a) Byte
b) Word
c) Nibble
d) Hex

✅ Answer: c) Nibble
📘 Reasoning: 4 bits = 1 nibble.

বাংলা:
৪ bit-এর একটি গ্রুপকে কী বলা হয়?
উত্তর: Nibble
কারণ: 1 Nibble = 4 Bit।

 


 

Q26.
Which binary number represents decimal 100?
a) 1100100
b) 1101000
c) 1110000
d) 1010000

✅ Answer: a) 1100100
📘 Reasoning: 100 = 64 + 32 + 4 = 1100100.

বাংলা:
Decimal 100-এর Binary রূপ কী?
উত্তর: 1100100
কারণ: 100 = 64+32+4 = 1100100।

 


 

Q27.
How many bits are required to represent decimal 31 in binary?
a) 4
b) 5
c) 6
d) 8

✅ Answer: b) 5
📘 Reasoning: 31 = 11111 (5 bits).

বাংলা:
Decimal 31 কে Binary-তে প্রকাশ করতে কতটি bit লাগে?
উত্তর: 5
কারণ: 31 = 11111 (5 bit)।

 


 

Q28.
Which decimal number is represented by binary 10101?
a) 19
b) 20
c) 21
d) 22

✅ Answer: c) 21
📘 Reasoning: 10101 = 16+4+1 = 21.

বাংলা:
Binary 10101-এর Decimal মান কত?
উত্তর: 21
কারণ: 10101 = 16+4+1 = 21।

 


 

Q29.
In binary, what is the result of 101 + 11?
a) 1000
b) 111
c) 110
d) 1010

✅ Answer: b) 111
📘 Reasoning: 101 (5) + 11 (3) = 8 → 111 (binary).

বাংলা:
Binary 101 + 11 এর ফলাফল কী?
উত্তর: 111
কারণ: 5 + 3 = 8 = 111 (Binary)।

 


 

Q30.
What is the binary representation of decimal 64?
a) 100000
b) 1000000
c) 1001000
d) 1100000

✅ Answer: b) 1000000
📘 Reasoning: 64 = 2⁶ → 1000000.

বাংলা:
Decimal 64-এর Binary রূপ কী?
উত্তর: 1000000
কারণ: 64 = 2⁶ = 1000000।

 


 

Q31.
What is the binary equivalent of decimal 75?
a) 1001011
b) 1001101
c) 1001010
d) 1001110

✅ Answer: a) 1001011
📘 Reasoning: 75 = 64 + 8 + 2 + 1 → 1001011.

বাংলা:
Decimal 75-এর Binary রূপ কী?
উত্তর: 1001011
কারণ: 75 = 64+8+2+1 = 1001011।

 


 

Q32.
In binary division, 10 ÷ 10 = ?
a) 1
b) 0
c) 10
d) 11

✅ Answer: a) 1
📘 Reasoning: 10 (2 in decimal) ÷ 10 (2 in decimal) = 1.

বাংলা:
Binary ভাগে 10 ÷ 10 কত?
উত্তর: 1
কারণ: 2 ÷ 2 = 1।

 


 

Q33.
How many different values can be represented using 4 bits?
a) 8
b) 12
c) 16
d) 32

✅ Answer: c) 16
📘 Reasoning: 2⁴ = 16 values (0 to 15).

বাংলা:
4 bit দিয়ে কতটি মান প্রকাশ করা যায়?
উত্তর: 16
কারণ: 2⁴ = 16।

 


 

Q34.
Which decimal number does the binary 111000 represent?
a) 54
b) 56
c) 58
d) 60

✅ Answer: b) 56
📘 Reasoning: 111000 = 32 + 16 + 8 = 56.

বাংলা:
Binary 111000-এর Decimal মান কত?
উত্তর: 56
কারণ: 111000 = 56।

 


 

Q35.
What is the binary representation of decimal 200?
a) 11001000
b) 11001010
c) 11001100
d) 11100100

✅ Answer: a) 11001000
📘 Reasoning: 200 = 128 + 64 + 8 = 11001000.

বাংলা:
Decimal 200-এর Binary রূপ কী?
উত্তর: 11001000
কারণ: 200 = 128+64+8 = 11001000।

 


 

Q36.
Which number system uses digits 0–7?
a) Binary
b) Octal
c) Decimal
d) Hexadecimal

✅ Answer: b) Octal
📘 Reasoning: Octal is base-8, using digits 0–7.

বাংলা:
কোন সংখ্যাপদ্ধতিতে 0–7 পর্যন্ত সংখ্যা ব্যবহার হয়?
উত্তর: Octal
কারণ: Octal হলো Base-8।

 


 

Q37.
What is the decimal value of binary 100000?
a) 16
b) 32
c) 64
d) 128

✅ Answer: b) 32
📘 Reasoning: 100000 = 2⁵ = 32.

বাংলা:
Binary 100000-এর Decimal মান কত?
উত্তর: 32
কারণ: 2⁵ = 32।

 


 

Q38.
How many bits are needed to store decimal number 1000 in binary?
a) 8
b) 9
c) 10
d) 11

✅ Answer: c) 10
📘 Reasoning: 1000 < 2¹⁰ (1024), so 10 bits needed.

বাংলা:
Decimal 1000 Binary-তে প্রকাশ করতে কতটি bit লাগে?
উত্তর: 10
কারণ: 1000 < 1024 → 10 bit প্রয়োজন।

 


 

Q39.
Which decimal number does the binary 101010 represent?
a) 40
b) 42
c) 44
d) 46

✅ Answer: b) 42
📘 Reasoning: 101010 = 32+8+2 = 42.

বাংলা:
Binary 101010-এর Decimal মান কত?
উত্তর: 42
কারণ: 101010 = 42।

 


 

Q40.
What is the binary representation of decimal 128?
a) 1000000
b) 10000000
c) 10001000
d) 11111111

✅ Answer: b) 10000000
📘 Reasoning: 128 = 2⁷ = 10000000.

বাংলা:
Decimal 128-এর Binary রূপ কী?
উত্তর: 10000000
কারণ: 128 = 2⁷ = 10000000।

 


 

Q41.
What is the binary equivalent of decimal 150?
a) 10010100
b) 10010110
c) 10011000
d) 10011100

✅ Answer: b) 10010110
📘 Reasoning: 150 = 128 + 16 + 4 + 2 → 10010110.

বাংলা:
Decimal 150-এর Binary রূপ কী?
উত্তর: 10010110
কারণ: 150 = 128+16+4+2 = 10010110।

 


 

Q42.
How many values can 8 bits represent?
a) 128
b) 255
c) 256
d) 512

✅ Answer: c) 256
📘 Reasoning: 2⁸ = 256 values (0–255).

বাংলা:
8 bit দিয়ে কতটি মান প্রকাশ করা যায়?
উত্তর: 256
কারণ: 2⁸ = 256 (0 থেকে 255 পর্যন্ত)।

 


 

Q43.
Which decimal number does the binary 111111 represent?
a) 62
b) 63
c) 64
d) 65

✅ Answer: b) 63
📘 Reasoning: 111111 = 32+16+8+4+2+1 = 63.

বাংলা:
Binary 111111-এর Decimal মান কত?
উত্তর: 63
কারণ: 111111 = 63।

 


 

Q44.
What is the binary representation of decimal 500?
a) 111110010
b) 111110100
c) 111110101
d) 111110110

✅ Answer: b) 111110100
📘 Reasoning: 500 = 256+128+64+32+16+4 = 111110100.

বাংলা:
Decimal 500-এর Binary রূপ কী?
উত্তর: 111110100
কারণ: 500 = 111110100 (Binary)।

 


 

Q45.
How many bits are in a kilobyte (KB)?
a) 1000
b) 1024
c) 8192
d) 8000

✅ Answer: c) 8192
📘 Reasoning: 1 KB = 1024 Bytes = 1024 × 8 = 8192 bits.

বাংলা:
একটি Kilobyte-এ কতটি bit থাকে?
উত্তর: 8192
কারণ: 1 KB = 1024 Bytes = 8192 bits।

 


 

Q46.
Which binary number is equal to decimal 256?
a) 11111111
b) 10000000
c) 100000000
d) 111111110

✅ Answer: c) 100000000
📘 Reasoning: 256 = 2⁸ = 100000000.

বাংলা:
Decimal 256-এর Binary রূপ কী?
উত্তর: 100000000
কারণ: 256 = 2⁸ = 100000000।

 


 

Q47.
What is the decimal value of binary 1000000000?
a) 256
b) 512
c) 768
d) 1024

✅ Answer: d) 1024
📘 Reasoning: 1000000000 = 2¹⁰ = 1024.

বাংলা:
Binary 1000000000-এর Decimal মান কত?
উত্তর: 1024
কারণ: 2¹⁰ = 1024।

 


 

Q48.
What is the binary representation of decimal 300?
a) 100101100
b) 100101101
c) 100101110
d) 100101111

✅ Answer: a) 100101100
📘 Reasoning: 300 = 256 + 32 + 8 + 4 → 100101100.

বাংলা:
Decimal 300-এর Binary রূপ কী?
উত্তর: 100101100
কারণ: 300 = 256+32+8+4 = 100101100।

 


 

Q49.
Which number system uses digits 0–9 and A–F?
a) Binary
b) Octal
c) Decimal
d) Hexadecimal

✅ Answer: d) Hexadecimal
📘 Reasoning: Hexadecimal (Base-16) uses 0–9 and A–F.

বাংলা:
কোন সংখ্যাপদ্ধতিতে 0–9 ও A–F ব্যবহৃত হয়?
উত্তর: Hexadecimal
কারণ: Hexadecimal হলো Base-16।

 


 

Q50.
How many bits are needed to represent decimal 500 in binary?
a) 8
b) 9
c) 10
d) 11

✅ Answer: d) 11
📘 Reasoning: 2¹⁰ = 1024 > 500, so 11 bits needed.

বাংলা:
Decimal 500 Binary-তে প্রকাশ করতে কতটি bit লাগে?
উত্তর: 11
কারণ: 500 প্রকাশে 11 bit প্রয়োজন।

 


 

Q51.
Which binary number represents decimal 1023?
a) 11111110
b) 11111111
c) 1111111111
d) 111111111

✅ Answer: c) 1111111111
📘 Reasoning: 1023 = 2¹⁰ – 1 = 1111111111.

বাংলা:
Decimal 1023-এর Binary রূপ কী?
উত্তর: 1111111111
কারণ: 1023 = 2¹⁰ – 1।

 


 

Q52.
Which of the following is not a positional number system?
a) Binary
b) Decimal
c) Roman
d) Octal

✅ Answer: c) Roman
📘 Reasoning: Roman numerals are non-positional.

বাংলা:
নিচের কোনটি positional সংখ্যাপদ্ধতি নয়?
উত্তর: Roman
কারণ: Roman numeral positional নয়।

 


 

Q53.
What is the binary equivalent of decimal 1024?
a) 1000000000
b) 10000000000
c) 1111111111
d) 1010101010

✅ Answer: b) 10000000000
📘 Reasoning: 1024 = 2¹⁰ → 10000000000.

বাংলা:
Decimal 1024-এর Binary রূপ কী?
উত্তর: 10000000000
কারণ: 2¹⁰ = 1024।

 


 

Q54.
What is the octal representation of binary 110101?
a) 65
b) 55
c) 35
d) 25

✅ Answer: b) 65
📘 Reasoning: Binary 110101 → group 110 (6) and 101 (5) → 65.

বাংলা:
Binary 110101-এর Octal রূপ কী?
উত্তর: 65
কারণ: 110 (6), 101 (5)।

 


 

Q55.
Which number system has base 8?
a) Decimal
b) Octal
c) Hexadecimal
d) Binary

✅ Answer: b) Octal
📘 Reasoning: Octal number system is base-8.

বাংলা:
কোন সংখ্যাপদ্ধতির base হলো 8?
উত্তর: Octal
কারণ: Octal-এর Base-8।

 


 

Q56.
What is the decimal value of binary 1100100?
a) 96
b) 98
c) 100
d) 102

✅ Answer: c) 100
📘 Reasoning: 1100100 = 64+32+4 = 100.

বাংলা:
Binary 1100100-এর Decimal মান কত?
উত্তর: 100
কারণ: 1100100 = 100।

 


 

Q57.
How many hexadecimal digits are required to represent 8-bit binary number?
a) 1
b) 2
c) 3
d) 4

✅ Answer: b) 2
📘 Reasoning: 8 bits = 2 hex digits (since 1 hex = 4 bits).

বাংলা:
8-bit Binary প্রকাশ করতে কতটি Hexadecimal digit লাগে?
উত্তর: 2
কারণ: 1 Hex digit = 4 bit।

 


 

Q58.
What is the binary equivalent of decimal 4095?
a) 111111111111
b) 11111111111
c) 100000000000
d) 111111110000

✅ Answer: a) 111111111111
📘 Reasoning: 4095 = 2¹² – 1 → 12 ones in binary.

বাংলা:
Decimal 4095-এর Binary রূপ কী?
উত্তর: 111111111111
কারণ: 2¹² – 1।

 


 

Q59.
Which number system is most commonly used in computers?
a) Decimal
b) Binary
c) Octal
d) Hexadecimal

✅ Answer: b) Binary
📘 Reasoning: Computers work on binary (0,1).

বাংলা:
কম্পিউটার সবচেয়ে বেশি কোন সংখ্যাপদ্ধতি ব্যবহার করে?
উত্তর: Binary
কারণ: কম্পিউটার 0 ও 1 নিয়ে কাজ করে।

 


 

Q60.
How many bits are required to represent decimal 999 in binary?
a) 9
b) 10
c) 11
d) 12

✅ Answer: c) 11
📘 Reasoning: 2¹⁰ = 1024 > 999 → needs 11 bits.

বাংলা:
Decimal 999 Binary-তে প্রকাশ করতে কতটি bit লাগে?
উত্তর: 11
কারণ: 999 প্রকাশে 11 bit প্রয়োজন।

 


 

 

Q61.
What is the binary representation of decimal number 255?
a) 1111111
b) 11111111
c) 111111111
d) 1111111111

✅ Answer: b) 11111111
📘 Reasoning: 255 = 2⁸ – 1 → 8 bits all 1.

বাংলা:
Decimal 255-এর Binary রূপ কী?
উত্তর: 11111111
কারণ: 2⁸ – 1 = 255।

 


 

Q62.
How many different values can be represented with 5 bits?
a) 16
b) 31
c) 32
d) 64

✅ Answer: c) 32
📘 Reasoning: n bits can represent 2ⁿ values = 2⁵ = 32.

বাংলা:
5-bit দিয়ে কতটি ভিন্ন মান প্রকাশ করা যায়?
উত্তর: 32
কারণ: 2⁵ = 32।

 


 

Q63.
The binary number 101010 is equivalent to decimal:
a) 42
b) 40
c) 44
d) 46

✅ Answer: a) 42
📘 Reasoning: 101010 = 32+8+2 = 42.

বাংলা:
Binary 101010-এর Decimal মান কত?
উত্তর: 42
কারণ: 32+8+2 = 42।

 


 

Q64.
Which binary number corresponds to hexadecimal ‘7F’?
a) 1111101
b) 1111110
c) 1111111
d) 1000000

✅ Answer: c) 1111111
📘 Reasoning: Hex ‘7F’ = (7 × 16 + 15) = 127 → binary = 1111111.

বাংলা:
Hexadecimal ‘7F’-এর Binary রূপ কী?
উত্তর: 1111111
কারণ: 7F = 127 = 1111111।

 


 

Q65.
Which of the following is an invalid binary number?
a) 1101
b) 1021
c) 1010
d) 111

✅ Answer: b) 1021
📘 Reasoning: Binary uses only 0 and 1.

বাংলা:
নিচের কোনটি অবৈধ Binary সংখ্যা?
উত্তর: 1021
কারণ: Binary-তে শুধু 0 এবং 1 থাকে।

 


 

Q66.
How many bits are required to represent 1 kilobyte (KB)?
a) 1024
b) 2048
c) 8192
d) 4096

✅ Answer: c) 8192
📘 Reasoning: 1 KB = 1024 bytes; 1 byte = 8 bits → 1024×8 = 8192 bits.

বাংলা:
1 KB প্রকাশ করতে কত bit লাগে?
উত্তর: 8192
কারণ: 1 KB = 1024×8 = 8192 bit।

 


 

Q67.
Which binary number is equivalent to decimal 512?
a) 1000000000
b) 111111111
c) 1010101010
d) 10000000000

✅ Answer: a) 1000000000
📘 Reasoning: 512 = 2⁹ → binary 1000000000.

বাংলা:
Decimal 512-এর Binary রূপ কী?
উত্তর: 1000000000
কারণ: 2⁹ = 512।

 


 

Q68.
Which coding system is primarily used for representing text in computers?
a) ASCII
b) Binary Coded Decimal
c) Octal Code
d) Hexadecimal Code

✅ Answer: a) ASCII
📘 Reasoning: ASCII encodes text into binary values.

বাংলা:
কম্পিউটারে টেক্সট প্রকাশে প্রধানত কোন কোড ব্যবহার হয়?
উত্তর: ASCII
কারণ: ASCII টেক্সটকে Binary তে রূপান্তর করে।

 


 

Q69.
The binary number system is also known as:
a) Base-8
b) Base-10
c) Base-16
d) Base-2

✅ Answer: d) Base-2
📘 Reasoning: Binary works with base 2.

বাংলা:
Binary সংখ্যাপদ্ধতিকে আর কী বলা হয়?
উত্তর: Base-2
কারণ: Binary base হলো 2।

 


 

Q70.
What is the maximum unsigned decimal value represented by 10 bits?
a) 512
b) 1023
c) 1024
d) 2047

✅ Answer: b) 1023
📘 Reasoning: Max value = 2ⁿ – 1 = 2¹⁰ – 1 = 1023.

বাংলা:
10-bit দিয়ে সর্বোচ্চ কত unsigned decimal মান প্রকাশ করা যায়?
উত্তর: 1023
কারণ: 2¹⁰ – 1 = 1023।

 


 

Q71.
Convert binary 101101 to decimal.
a) 45
b) 46
c) 44
d) 47

✅ Answer: a) 45
📘 Reasoning: 101101 = 32+8+4+1 = 45.

বাংলা:
Binary 101101-এর Decimal মান কত?
উত্তর: 45
কারণ: 32+8+4+1 = 45।

 


 

Q72.
Which is the hexadecimal representation of binary 11010111?
a) D7
b) A7
c) B7
d) C7

✅ Answer: a) D7
📘 Reasoning: 1101 = D, 0111 = 7 → D7.

বাংলা:
Binary 11010111-এর Hexadecimal রূপ কী?
উত্তর: D7
কারণ: 1101=D, 0111=7।

 


 

Q73.
Which number system uses only two digits, 0 and 1?
a) Decimal
b) Binary
c) Octal
d) Hexadecimal

✅ Answer: b) Binary
📘 Reasoning: Binary system uses only 0 and 1 digits.

বাংলা:
কোন সংখ্যা পদ্ধতিতে কেবলমাত্র 0 এবং 1 ব্যবহৃত হয়?
উত্তর: Binary
কারণ: Binary number system শুধু 0 এবং 1 দিয়ে তৈরি

 


 

Q74.
Which of the following has the highest storage capacity?
a) 1 GB
b) 1 MB
c) 1 TB
d) 1 KB

✅ Answer: c) 1 TB
📘 Reasoning: TB > GB > MB > KB.

বাংলা:
নিচের কোনটির storage capacity সবচেয়ে বেশি?
উত্তর: 1 TB
কারণ: TB > GB > MB > KB।

 


 

Q75.
Decimal number 50 in binary is:
a) 110001
b) 110010
c) 110011
d) 110100

✅ Answer: b) 110010
📘 Reasoning: 50 = 32+16+2 → 110010.

বাংলা:
Decimal 50-এর Binary রূপ কী?
উত্তর: 110010
কারণ: 32+16+2 = 50।

 


 

Q76.
What is the decimal value of hexadecimal ‘1A’?
a) 24
b) 25
c) 26
d) 27

✅ Answer: c) 26
📘 Reasoning: (1×16 + 10) = 26.

বাংলা:
Hexadecimal ‘1A’-এর Decimal মান কত?
উত্তর: 26
কারণ: 1×16 + 10 = 26।

 


 

Q77.
Which binary number represents decimal 200?
a) 11001000
b) 11001100
c) 11001010
d) 11001110

✅ Answer: a) 11001000
📘 Reasoning: 200 = 128+64+8 → 11001000.

বাংলা:
Decimal 200-এর Binary রূপ কী?
উত্তর: 11001000
কারণ: 200 = 128+64+8।

 


 

Q78.
What is the octal representation of decimal 100?
a) 144
b) 145
c) 146
d) 147

✅ Answer: a) 144
📘 Reasoning: 100 ÷ 8 = 12 R4, 12 ÷ 8 = 1 R4 → 144.

বাংলা:
Decimal 100-এর Octal রূপ কী?
উত্তর: 144
কারণ: 100 → 144 octal।

 


 

Q79.
Which of the following binary numbers is divisible by 2?
a) 1011
b) 1111
c) 1010
d) 1110

✅ Answer: c) 1010 and d) 1110 (both valid)
📘 Reasoning: A binary number divisible by 2 ends with 0.

বাংলা:
নিচের কোন Binary সংখ্যা 2 দ্বারা বিভাজ্য?
উত্তর: 1010 এবং 1110
কারণ: Binary-তে যদি শেষে 0 থাকে তবে সেটা 2 দ্বারা বিভাজ্য।

 


 

Q80.
What is the hexadecimal equivalent of decimal 255?
a) EE
b) FF
c) DD
d) AA

✅ Answer: b) FF
📘 Reasoning: 255 = 15×16 + 15 = FF.

বাংলা:
Decimal 255-এর Hexadecimal রূপ কী?
উত্তর: FF
কারণ: 255 → FF।

 


Q81.
What is the range of unsigned 8-bit binary numbers?
a) 0 to 127
b) 0 to 255
c) –128 to 127
d) –255 to 255

 

✅ Answer: b) 0 to 255
📘 Reasoning: Unsigned 8-bit → 2⁸ = 256 values → 0–255.

বাংলা:
Unsigned 8-bit সংখ্যা প্রকাশের range কত?
উত্তর: 0–255
কারণ: 8-bit unsigned → 256 মান।

 


 

Q82.
What is the range of signed 8-bit numbers (2’s complement)?
a) –128 to 127
b) –127 to 128
c) 0 to 255
d) –255 to 255

✅ Answer: a) –128 to 127
📘 Reasoning: Signed n-bit → –2ⁿ⁻¹ to (2ⁿ⁻¹ –1).

বাংলা:
Signed 8-bit সংখ্যার range কত?
উত্তর: –128 to 127
কারণ: Signed n-bit → –2ⁿ⁻¹ থেকে 2ⁿ⁻¹–1।

 


 

Q83.
What is the maximum value of an unsigned 16-bit binary number?
a) 65535
b) 65536
c) 32767
d) 32768

✅ Answer: a) 65535
📘 Reasoning: Max = 2¹⁶ –1 = 65535.

বাংলা:
Unsigned 16-bit এর সর্বোচ্চ মান কত?
উত্তর: 65535
কারণ: 2¹⁶ –1।

 


 

Q84.
Which binary representation is used to store negative numbers in computers?
a) Sign-Magnitude
b) 1’s Complement
c) 2’s Complement
d) Excess-3

✅ Answer: c) 2’s Complement
📘 Reasoning: Modern computers use 2’s complement.

বাংলা:
কম্পিউটারে negative সংখ্যা প্রকাশে কোন representation ব্যবহৃত হয়?
উত্তর: 2’s Complement
কারণ: আধুনিক কম্পিউটার 2’s complement ব্যবহার করে।

 


 

Q85.
What happens when a calculation result exceeds the fixed number of bits?
a) Underflow
b) Overflow
c) Truncation
d) Rounding

✅ Answer: b) Overflow
📘 Reasoning: Exceeding capacity = overflow.

বাংলা:
যখন calculation-এর ফল নির্দিষ্ট bit-এর বেশি হয় তখন একে কী বলে?
উত্তর: Overflow
কারণ: ফলাফল bit capacity ছাড়িয়ে যায়।

 


 

Q86.
How many values can be represented in signed 16-bit numbers?
a) 32767
b) 65536
c) 65535
d) 32768

✅ Answer: b) 65536
📘 Reasoning: Signed 16-bit → total 2¹⁶ = 65536 values.

বাংলা:
Signed 16-bit সংখ্যায় মোট কতটি মান প্রকাশ করা যায়?
উত্তর: 65536
কারণ: 2¹⁶ = 65536।

 


 

Q87.
Which of the following is the minimum value in 8-bit signed 2’s complement representation?
a) –127
b) –128
c) –255
d) –256

✅ Answer: b) –128
📘 Reasoning: Min value = –2⁷ = –128.

বাংলা:
8-bit signed 2’s complement সংখ্যার সর্বনিম্ন মান কত?
উত্তর: –128
কারণ: –2⁷ = –128।

 


 

Q88.
If a system uses 32-bit word length, how many distinct unsigned values can it represent?
a) 2³² –1
b) 2³²
c) 2³¹ –1
d) 2³¹

✅ Answer: b) 2³²
📘 Reasoning: Unsigned → 0 থেকে (2ⁿ –1), মোট 2ⁿ মান।

বাংলা:
32-bit word length হলে কতটি unsigned মান প্রকাশ করা যায়?
উত্তর: 2³²
কারণ: unsigned → মোট 2ⁿ মান।

 


 

Q89.
What is the hexadecimal value of binary 1111111111111111 (16 bits all 1)?
a) FFFF
b) EEEE
c) 1111
d) 0000

✅ Answer: a) FFFF
📘 Reasoning: 4 bits = F → 16 bits = FFFF.

বাংলা:
16-bit binary সব 1 হলে তার Hexadecimal রূপ কী?
উত্তর: FFFF
কারণ: 1111 = F, তাই 16-bit = FFFF।

 


 

Q90.
Which of the following best describes underflow in binary arithmetic?
a) Value too large to represent
b) Value too small to represent
c) Bit shifting error
d) Conversion error

✅ Answer: b) Value too small to represent
📘 Reasoning: Underflow occurs when value approaches zero beyond representation.

বাংলা:
Binary arithmetic-এ Underflow বলতে কী বোঝায়?
উত্তর: খুব ছোট মান যা প্রকাশযোগ্য নয়
কারণ: শূন্যের কাছাকাছি গিয়ে প্রকাশ সম্ভব হয় না।

 


 

Q91.
What is the result of binary addition 1011 + 1101?
a) 11000
b) 10110
c) 10100
d) 11100

✅ Answer: a) 11000
📘 Reasoning: 11 + 13 = 24 → binary = 11000.

বাংলা:
Binary 1011 + 1101 এর ফল কত?
উত্তর: 11000
কারণ: 11 + 13 = 24।

 


 

Q92.
Binary subtraction: 1101 – 1010 = ?
a) 0010
b) 0011
c) 0100
d) 1111

✅ Answer: b) 0011
📘 Reasoning: 13 – 10 = 3 → 0011.

বাংলা:
Binary 1101 – 1010 = ?
উত্তর: 0011
কারণ: 13 – 10 = 3।

 


 

Q93.
In binary addition, 1 + 1 equals:
a) 0 with carry 1
b) 1 with carry 0
c) 1 with carry 1
d) 0 with carry 0

✅ Answer: a) 0 with carry 1
📘 Reasoning: Binary 1+1 = 10.

বাংলা:
Binary যোগে 1 + 1 = ?
উত্তর: 0, carry 1
কারণ: 1+1 = 10।

 


 

Q94.
Which method is commonly used for binary subtraction in computers?
a) Sign-magnitude
b) 1’s complement
c) 2’s complement
d) Octal method

✅ Answer: c) 2’s complement
📘 Reasoning: Computers use 2’s complement subtraction.

বাংলা:
কম্পিউটার Binary বিয়োগে কোন পদ্ধতি ব্যবহার করে?
উত্তর: 2’s complement
কারণ: আধুনিক কম্পিউটার 2’s complement ব্যবহার করে।

 


 

Q95.
What is the 1’s complement of binary number 101010?
a) 101010
b) 111111
c) 010101
d) 000000

✅ Answer: c) 010101
📘 Reasoning: 1’s complement → invert all bits.

বাংলা:
Binary 101010-এর 1’s complement কী?
উত্তর: 010101
কারণ: সব bit উল্টাতে হয়।

 


 

Q96.
What is the 2’s complement of binary number 101010?
a) 010101
b) 010110
c) 010100
d) 010111

✅ Answer: b) 010110
📘 Reasoning: 1’s complement (010101) + 1 = 010110.

বাংলা:
Binary 101010-এর 2’s complement কী?
উত্তর: 010110
কারণ: 1’s complement + 1।

 


 

Q97.
Binary addition: 1111 + 0001 = ?
a) 0000 with carry 1
b) 10000
c) 1110
d) 0111

✅ Answer: b) 10000
📘 Reasoning: 15 + 1 = 16 → binary = 10000.

বাংলা:
Binary 1111 + 0001 = ?
উত্তর: 10000
কারণ: 15 + 1 = 16।

 


 

Q98.
What is the result of subtracting binary 100 from 111?
a) 001
b) 010
c) 011
d) 100

✅ Answer: c) 011
📘 Reasoning: 111 (7 in decimal) – 100 (4 in decimal) = 3 → binary = 011.

বাংলা:
Binary 111 – 100 এর ফল কত?
উত্তর: 011
কারণ: 7 – 4 = 3 → binary আকারে 011।

 


 

Q99.
Which operation is simplest to implement in binary arithmetic?
a) Multiplication
b) Division
c) Subtraction
d) Addition

✅ Answer: d) Addition
📘 Reasoning: Binary system designed around addition + carry.

বাংলা:
Binary arithmetic-এ কোন operation সবচেয়ে সহজে implement হয়?
উত্তর: Addition
কারণ: Binary মূলত addition এবং carry ভিত্তিক।

 


 

Q100.
If an 8-bit register contains 11111111 and we add 1, what happens?
a) Result = 00000000 (Overflow)
b) Result = 100000000
c) Result = 11111110
d) Result = 00000001

✅ Answer: a) Result = 00000000 (Overflow)
📘 Reasoning: 255 + 1 = 256 → needs 9 bits → overflow in 8-bit.

বাংলা:
যদি 8-bit register-এ 11111111 থাকে এবং আমরা 1 যোগ করি, তাহলে কী হবে?
উত্তর: 00000000 (Overflow)
কারণ: 255 + 1 = 256 → overflow।

 

🔗 Click Below to Get More Questions

 

1. Important MCQ of Computer Subject

2. 50 Questions and Answer about MS Office Word

3. HTML & CSS MCQs with Answers

4. Basic computer knowledge for competitive exams

5. Computer MCQs for Competitive Exams

6. 50 Basics Computer question for Competitive Exams

7. 50 Common Questions on Computer Generations for Beginners

REPLY NOW

Leave A Reply

Partners Image
Partners Image
Partners Image
Partners Image
Partners Image
Partners Image
Partners Image
Partners Image
Partners Image
Partners Image
Partners Image
Partners Image