What is the name of this 4-bit pattern: 1010 ?

A good answer might be:

A ― this is the name of the pattern the four bits make.

Base 16 Repn and 4-bit Pattern Names

The name of the pattern 1010 is the same as the hex digit that corresponds to the number represented by 10102.

When a 4-bit pattern is regarded as a number in (unsigned) base two, that number in hex is the same as the bit pattern name.

Base Sixteen Digits: When describing Bit Patterns: Hex digits in Binary
0  is a digit, 
   representing 
   zero. 
.
.
.
A  is a digit, 
   representing  
   ten. 
.
.
.
F  is a digit, 
   representing  
   fifteen. 
0  is the name 
   of the pattern 
   0000
.
.
.
A  is the name 
   of the pattern 
   1010
.
.
.
F  is the name 
   of the pattern 
   1111
0  in 4-bit 
   binary is 
   0000 
.
.
.
A  in 4-bit 
   binary is 
   1010
.
.
.
F  in 4-bit 
   binary is 
   1111

The name of a 4-bit pattern (regarded as an abstract pattern) is the same as the hexadecimal digit whose representation in binary is that 4-bit pattern. This is not accidental.


QUESTION 12:

Here is an integer represented in base two: 1011. What is the representation in base two of the number times sixteen?

Hint: remember that trick with appending zeros.