Hexadecimal MCQ Quiz - Objective Question with Answer for Hexadecimal - Download Free PDF

Last updated on Jun 12, 2025

Latest Hexadecimal MCQ Objective Questions

Hexadecimal Question 1:

Which of the following is the correct octal representation of the hexadecimal number 1A3?

  1. 346
  2. 124
  3. 634
  4. 643
  5. None of the above

Answer (Detailed Solution Below)

Option 4 : 643

Hexadecimal Question 1 Detailed Solution

Explanation:

Hexadecimal to Octal Conversion

Definition: Hexadecimal and octal are both positional numeral systems, widely used in computing and digital electronics. Hexadecimal (base-16) uses sixteen symbols, 0-9 and A-F, to represent values, while octal (base-8) uses eight symbols, 0-7.

To convert a hexadecimal number to its octal equivalent, it is often easiest to first convert it to binary (base-2), and then from binary to octal. This method works because both octal and hexadecimal are powers of 2 (octal is 23 and hexadecimal is 24).

Step-by-Step Solution:

Given hexadecimal number: 1A3

1. Convert Hexadecimal to Binary:

Each hexadecimal digit can be represented by a 4-bit binary number:

  • 1 (Hex) = 0001 (Binary)
  • A (Hex) = 1010 (Binary)
  • 3 (Hex) = 0011 (Binary)

So, the hexadecimal number 1A3 can be written in binary as: 0001 1010 0011

2. Group Binary Digits into Sets of Three:

Since octal is base-8 and each octal digit corresponds to 3 binary digits, we group the binary digits in sets of three, starting from the right:

  • 0001 1010 0011 (Binary)
  • 000 110 100 011 (Binary, grouped in sets of three)

3. Convert Binary Sets to Octal:

Each group of three binary digits can be converted directly to its octal equivalent:

  • 000 (Binary) = 0 (Octal)
  • 110 (Binary) = 6 (Octal)
  • 100 (Binary) = 4 (Octal)
  • 011 (Binary) = 3 (Octal)

So, the binary number 000 110 100 011 can be written in octal as: 0643

Hence, the correct octal representation of the hexadecimal number 1A3 is 643.

Important Information:

To analyze other options, let's convert the hexadecimal number 1A3 using the same method:

  • Option 1: 346
    • 346 (Octal) in binary: 011 100 110
    • Groups: 011 100 110 (Binary) = 3 4 6 (Octal)
    • Binary to Hexadecimal: 011100110 (Binary) = 1C6 (Hex)
    • 1C6 ≠ 1A3
  • Option 2: 124
    • 124 (Octal) in binary: 001 010 100
    • Groups: 001 010 100 (Binary) = 1 2 4 (Octal)
    • Binary to Hexadecimal: 001010100 (Binary) = 54 (Hex)
    • 54 ≠ 1A3
  • Option 3: 634
    • 634 (Octal) in binary: 110 011 100
    • Groups: 110 011 100 (Binary) = 6 3 4 (Octal)
    • Binary to Hexadecimal: 110011100 (Binary) = 19C (Hex)
    • 19C ≠ 1A3

Therefore, the correct option is confirmed as option 4: 643.

Hexadecimal Question 2:

Which of the following is the correct octal representation of the hexadecimal number 1A3?

  1. 346
  2. 124
  3. 634
  4. 643

Answer (Detailed Solution Below)

Option 4 : 643

Hexadecimal Question 2 Detailed Solution

Explanation:

Hexadecimal to Octal Conversion

Definition: Hexadecimal and octal are both positional numeral systems, widely used in computing and digital electronics. Hexadecimal (base-16) uses sixteen symbols, 0-9 and A-F, to represent values, while octal (base-8) uses eight symbols, 0-7.

To convert a hexadecimal number to its octal equivalent, it is often easiest to first convert it to binary (base-2), and then from binary to octal. This method works because both octal and hexadecimal are powers of 2 (octal is 23 and hexadecimal is 24).

Step-by-Step Solution:

Given hexadecimal number: 1A3

1. Convert Hexadecimal to Binary:

Each hexadecimal digit can be represented by a 4-bit binary number:

  • 1 (Hex) = 0001 (Binary)
  • A (Hex) = 1010 (Binary)
  • 3 (Hex) = 0011 (Binary)

So, the hexadecimal number 1A3 can be written in binary as: 0001 1010 0011

2. Group Binary Digits into Sets of Three:

Since octal is base-8 and each octal digit corresponds to 3 binary digits, we group the binary digits in sets of three, starting from the right:

  • 0001 1010 0011 (Binary)
  • 000 110 100 011 (Binary, grouped in sets of three)

3. Convert Binary Sets to Octal:

Each group of three binary digits can be converted directly to its octal equivalent:

  • 000 (Binary) = 0 (Octal)
  • 110 (Binary) = 6 (Octal)
  • 100 (Binary) = 4 (Octal)
  • 011 (Binary) = 3 (Octal)

So, the binary number 000 110 100 011 can be written in octal as: 0643

Hence, the correct octal representation of the hexadecimal number 1A3 is 643.

Important Information:

To analyze other options, let's convert the hexadecimal number 1A3 using the same method:

  • Option 1: 346
    • 346 (Octal) in binary: 011 100 110
    • Groups: 011 100 110 (Binary) = 3 4 6 (Octal)
    • Binary to Hexadecimal: 011100110 (Binary) = 1C6 (Hex)
    • 1C6 ≠ 1A3
  • Option 2: 124
    • 124 (Octal) in binary: 001 010 100
    • Groups: 001 010 100 (Binary) = 1 2 4 (Octal)
    • Binary to Hexadecimal: 001010100 (Binary) = 54 (Hex)
    • 54 ≠ 1A3
  • Option 3: 634
    • 634 (Octal) in binary: 110 011 100
    • Groups: 110 011 100 (Binary) = 6 3 4 (Octal)
    • Binary to Hexadecimal: 110011100 (Binary) = 19C (Hex)
    • 19C ≠ 1A3

Therefore, the correct option is confirmed as option 4: 643.

Hexadecimal Question 3:

A hexa decimal number 'A0' has the decimal value

  1. 160
  2. 80
  3. 100
  4. More than one of the above
  5. None of the above

Answer (Detailed Solution Below)

Option 1 : 160

Hexadecimal Question 3 Detailed Solution

The correct answer is 160

Key Points

The hexadecimal number system, or base 16, uses 16 digits: 0-9 and A-F, where A represents 10, B is 11, up to F which represents 15.

The hexadecimal number A0 can be converted to decimal by multiplying each digit by 16 raised to its position from right (starting from 0).

So, converting the hexadecimal value 'A0' to a decimal value would look like this:

    A = 10 

    A0 = 100

    = 10 * (161) + 0 * (160)

    = 160 + 0 = 160

So, the correct answer is: 160

Hexadecimal Question 4:

A hexa decimal number 'A0' has the decimal value

  1. 16
  2. 80
  3. 100
  4. 256
  5. 160

Answer (Detailed Solution Below)

Option 5 : 160

Hexadecimal Question 4 Detailed Solution

The correct answer is 160

Key Points

The hexadecimal number system, or base 16, uses 16 digits: 0-9 and A-F, where A represents 10, B is 11, up to F which represents 15.

The hexadecimal number A0 can be converted to decimal by multiplying each digit by 16 raised to its position from right (starting from 0).

So, converting the hexadecimal value 'A0' to a decimal value would look like this:

    A = 10 

    A0 = 100

    = 10 * (161) + 0 * (160)

    = 160 + 0 = 160

So, the correct answer is: 160

Hexadecimal Question 5:

A hexa decimal number 'A0' has the decimal value

  1. 160
  2. 80
  3. 100
  4. 256

Answer (Detailed Solution Below)

Option 1 : 160

Hexadecimal Question 5 Detailed Solution

The correct answer is 160

Key Points

The hexadecimal number system, or base 16, uses 16 digits: 0-9 and A-F, where A represents 10, B is 11, up to F which represents 15.

The hexadecimal number A0 can be converted to decimal by multiplying each digit by 16 raised to its position from right (starting from 0).

So, converting the hexadecimal value 'A0' to a decimal value would look like this:

    A = 10 

    A0 = 100

    = 10 * (161) + 0 * (160)

    = 160 + 0 = 160

So, the correct answer is: 160

Top Hexadecimal MCQ Objective Questions

The 12th digit in standard hexadecimal system is equal to:

  1. D
  2. B
  3. A
  4. C

Answer (Detailed Solution Below)

Option 2 : B

Hexadecimal Question 6 Detailed Solution

Download Solution PDF


Mistake Points
The question is asking for the 12th Digit in Hexadecimal representation, i.e. 0 will be the first digit, 1 will be the second, and so on.

The correct answer is (option 2) i.e. B

Explanation:

Digits in hexadecimal number systems are 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E, F. Therefore, the total number of different digits in hexadecimal number systems is 16.

Hence 12th digit in the hexadecimal system is B. And it is equivalent to 11 for Decimal and 1011 for the Binary number system,

Important Points

  • Digits in decimal number systems are 0, 1, 2, 3, 4, 5, 6, 7, 8, 9. Therefore, number of different digits in decimal number systems is 10.
  • Digits in Octal number systems are 0, 1, 2, 3, 4, 5, 6, 7. Therefore, number of different digits in octal number systems is 8.
  • Digits in binary number systems are 0, 1. Therefore, number of different digits in binary number systems is 2.
  • In the standard hexadecimal system, each digit can have 16 possible values, ranging from 0 to 9 and then A to F, representing the values 10 to 15.
  • To determine the 12th digit in the standard hexadecimal system, we need to convert the number 12 from decimal to hexadecimal.
  • 12 in decimal is equal to B in hexadecimal. Therefore, the 12th digit in the standard hexadecimal system is option 4) B.

The hexadecimal system is a number system with a base of 16. It is commonly used in computing and digital systems because it provides a convenient way to represent binary numbers. In hexadecimal, the digits range from 0 to 9, and then use the letters A to F to represent values 10 to 15.

Here's a breakdown of the digits leading up to the 12th position:

  • 1st digit: 0
  • 2nd digit: 1
  • 3rd digit: 2
  • 4th digit: 3
  • 5th digit: 4
  • 6th digit: 5
  • 7th digit: 6
  • 8th digit: 7
  • 9th digit: 8
  • 10th digit: 9
  • 11th digit: A
  • 12th digit: B

Therefore, the 12th digit in the standard hexadecimal system is 'B'.

The hexadecimal equivalent of the decimal number 4096 is ____.

  1. 1000
  2. F100
  3. F0
  4. 1F0

Answer (Detailed Solution Below)

Option 1 : 1000

Hexadecimal Question 7 Detailed Solution

Download Solution PDF

Concept:

  • To convert a decimal number system to hexadecimal, we follow the successive division approach i.e. we divide the decimal number by 16 and note down the remainder.
  • Each remainder is then expressed in hexadecimal.

 

Calculation:

F1 Neha Madhu 17.10.20 D3

So, The hexadecimal equivalent of decimal number 4096 is 1000. 

State the respective decimal equivalent and hexa decimal equivalent of (65)8.

  1. 53, 35
  2. 46, 65
  3. 65, 46
  4. 35, 53

Answer (Detailed Solution Below)

Option 1 : 53, 35

Hexadecimal Question 8 Detailed Solution

Download Solution PDF

Concept:

Step 1: Conversion: Octal to decimal

Step 2: Conversion: decimal to Hexadecimal

Calculation:

Step 1:

Conversion: Octal to decimal

(65)8 = 6 × 8 + 5 × 80

= 53

Step 2:

Conversion: decimal to Hexadecimal

16

53

 

16

3

5

16

0

3

 

Read the remainder from bottom to top: (35)H

Therefore, the hexadecimal equivalent of octal number 65: (35)H

 

Binary to Hexadecimal conversion table:

0000

0001

0010

0011

0100

0101

0110

0111

1000

1001

1010

1011

1100

1101

1110

1111

0

1

2

3

4

5

6

7

8

9

A

B

C

D

E

F


Tips and Tricks:

Every digit in octal represents 3 bits of binary and every digit in hexadecimal is 4 bits in binary

(65)8 = (110 101 )2

Forming pairs of 4 to get the hexadecimal representation, we get:

(110 101)2 = (0011 0101)2 = (35)16

Addition of the hexadecimal numbers (DEF. 12)16 and (12 EF.C)16 gives:

  1. (20DE.E2)16
  2. (20DE.D2)16
  3. (20DE.C2)16
  4. (20DE.B2)16

Answer (Detailed Solution Below)

Option 2 : (20DE.D2)16

Hexadecimal Question 9 Detailed Solution

Download Solution PDF

For the addition of two hexadecimal numbers, there are two methods:

  • In the 1st method, we first convert the hexadecimal number to decimal then add both numbers. After that, we convert that decimal number to hexadecimal number. But it is a time-consuming method and also calculations become bulky.
  • In the 2nd method, we directly add both hexadecimal numbers as shown below

 

F1 J.P Madhu 31.12.19 D4

Convert decimal 32 to hexadecimal.

  1. 20
  2. 30
  3. 10
  4. 40

Answer (Detailed Solution Below)

Option 1 : 20

Hexadecimal Question 10 Detailed Solution

Download Solution PDF

Step 1: Divide (32)10 successively by 16 until the quotient is 0.

\({32\over 16}=2\), the remainder is 0

\({2\over 16}=0\), the remainder is 2

Step 2: Read from the bottom (MSB) to the top (LSB) as 20.

So, 20 is the hexadecimal equivalent of the decimal number 32 

The hexadecimal representation of 6578 is:

  1. 1AF H
  2. D78 H
  3. D71 H
  4. 32F H

Answer (Detailed Solution Below)

Option 1 : 1AF H

Hexadecimal Question 11 Detailed Solution

Download Solution PDF

Concept:

Step 1: Conversion: Octal to decimal

Step 2: Conversion: decimal to Hexadecimal

Calculation:

Step 1:

Conversion: Octal to decimal

(657)8 = 6 × 82 + 5 × 8 + 7 × 80

= 431

Step 2:

Conversion: decimal to Hexadecimal

16

431

 

16

26

15(F)

16

1

10(A)

 

0

1

 

Read the remainder from bottom to top: (1AF) H

Therefore, the hexadecimal equivalent of octal number 657: (1AF) H

0000

0001

0010

0011

0100

0101

0110

0111

1000

1001

1010

1011

1100

1101

1110

1111

0

1

2

3

4

5

6

7

8

9

A

B

C

D

E

F

 

Binary to Hexadecimal conversion table:

Tips and Tricks:

Every digit in octal represents 3 bits of binary and every digit in hexadecimal is 4 bits in binary

(657)8 = (110 101 111)2

Forming pairs of 4 to get the hexadecimal representation, we get:

(110 101 111)2 = (0001 1010 1111)2 = (1AF)16

The representation of the value of a 16-bit unsigned integer X in hexadecimal number system is BCA9. The representation of the value of X in octal number system is

  1. 571244
  2. 736251
  3. 571247
  4. 136251

Answer (Detailed Solution Below)

Option 4 : 136251

Hexadecimal Question 12 Detailed Solution

Download Solution PDF

STEPS:

1) First, convert the given hexadecimal number into binary equivalent.

2) Convert that binary number into an octal number.

F1 R.S Deepak 09.12.2019 D1

Binary equivalent of BCA9: 1011110010101001

Representation of this binary equivalent to octal number system is: 136251

Tips and Tricks:

For hexadecimal number, pair of 4 binary bits are taken from right to left and for octal number, pair of 3 binary bits is taken starting from least significant bits.

What is the sum of the Hexadecimal numbers (FF)16  and (BA)16 ?

  1. (B9)16
  2. (2B9)16
  3. (1B9)16
  4. (139)16

Answer (Detailed Solution Below)

Option 3 : (1B9)16

Hexadecimal Question 13 Detailed Solution

Download Solution PDF

The correct answer is option 3.

Concept:

  • In the 1st method, If we add both numbers after converting the hexadecimal number to decimal. The decimal number is then converted to a hexadecimal number. However, it is a time-consuming procedure, and the computations grow cumbersome as a result.
  • In the 2nd method,  As demonstrated below, we just add both hexadecimal numbers together.

The given two Hexadecimal numbers are,

       (FF)   

  +   (BA)

  (1)  (1)

------------------

      (1B9)16   

Here F+A=15+10

=25-16=9 and 1 carray

Here F+B+1=15+11+1

=27-16 =11 and 1 carray

 

 

Hence the correct answer is (1B9)16.

In a hexadecimal system the radix is:

  1. 15
  2. 1
  3.  8
  4. 16

Answer (Detailed Solution Below)

Option 4 : 16

Hexadecimal Question 14 Detailed Solution

Download Solution PDF

For any number system with the radix (base) r, the allowed numbers are from 0 to (r – 1).

  • For the binary system, the radix is 2 and the numbers used in this system are 0 and 1
  • For the octal system, the radix is 8 and the numbers used in this system are 0 to 7
  • For the decimal system, radix is 10 and the numbers used in this system are 0 to 9
  • For the Hexadecimal system, radix is 16 and the numbers used in this system are 0 to F

a 4 bit digital word (D) is used to represent an analog signal that varies from 0 V to 15 V. The digital word D corresponding to 7 V will be:

  1. 0001
  2. 0010
  3. 0111
  4. 0110

Answer (Detailed Solution Below)

Option 3 : 0111

Hexadecimal Question 15 Detailed Solution

Download Solution PDF

Explanation:

  • The hexadecimal number system consists of the symbols 0 - 9, A - F.
  • Hexadecimal uses decimal numbers and six extra symbols.
  • There are no numerical symbols that represent values greater than nine, so letters taken from the English alphabet are used, specifically A, B, C, D, E, and F, where Hexadecimal A = decimal 10, and hexadecimal F = decimal 15.
  • binary number is just a string of zeros and ones: 11011011.
  • Three bits, each being on or off, can represent the eight numbers from 0 to 7, this is known as the octal number system.
Hexadecimal number Binary representation
0 0000
1 0001
2 0010
3 0011
4 0100
5 0101
6 0110
7 0111
8 1000
9 1001
A 1010
B 1011
C 1100
D 1101
E 1110
F 1111

 

Hence 7 is represented as 0111.

Important Points

Steps to Convert Binary to Hex:

  • Start from the least significant bit (LSB) at the right of the binary number and divide it up into groups of 4 digits. (4 digital bits is called a "nibble").
  • Convert each group of 4 binary digits to its equivalent hex value (see table above).
  • Concatenate the results together, giving the total hex number.
Get Free Access Now
Hot Links: teen patti flush teen patti master purana teen patti master apk download all teen patti