converting between binary & hexadecimal

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/10

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

11 Terms

1
New cards

define nibble.

a nibble is a group of four bits.

2
New cards

what is the definition of binary?

binary is a base-2 number system that uses only 0 and 1 to represent all values.

3
New cards

true or false?

each digit in a hexadecimal number represents a binary nibble.

true.

4
New cards

define denary.

denary is the base-10 number system, which uses digits from 0 to 9.

5
New cards

what does hexadecimal mean?

hexadecimal is a base-16 number system that uses 16 digits: 0-9 and A-F.

6
New cards

state the method in terms of X for converting binary to hexadecimal.

  • split X (binary number) into 2 × nibbles (4-bits)

  • convert each nibble to its denary value

  • represent each denary value as a hexadecimal digit.

example: 11011001 = 1101 (13=D), 1001 (9) = D9

7
New cards

true or false?

to convert hexadecimal to binary, you split the digits apart and convert each to a binary nibble.

true.

8
New cards

what is the definition of bit?

a bit is a basic unit of information in computing, representing either a 0 or 1.

9
New cards

define byte.

a byte is a unit of digital information that consists of 8 bits.

10
New cards

convert binary to hexadecimal

128

64

32

16

8

4

2

1

1

1

1

0

1

0

0

0

8

4

2

1

1

1

1

0

8

4

2

1

1

0

0

0

1110 = 14 (E)

1000 = 8

answer: E8

11
New cards

convert hexadecimal 4B to binary.

8

4

2

1

0

1

0

0

8

4

2

1

1

0

1

1

combine to create an 8-bit value

answer: 01001011