• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/6

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

6 Cards in this Set

  • Front
  • Back
  • 3rd side (hint)

What are some things hexadecimal is used for?

Identify Mac addresses and IPv6 addresses.

What is the range of values for hexadecimal?

The range is 0 to F. It uses the numbers 1-9, and the letters A - F. The decimal equivalent of A - F are 10 - 15 respectively. The hexadecimal values of 0-9 are the same in decimal.

How do you convert decimal 128 to hexadecimal?

First convert it to binary. Binary equivalent of decimal 128 is 100000000. Then split that binary number into two groups of four bits, then convert those two groups into one hexadecimal number each. Remember your binary and decimal table (128, 64, 32, 16, 8, 4, 2, 1). 1000 binary converted to decimal is 8 (8 + 0 + 0 + 0). 0000 in binary converted to decimal is 0. Therefore, the answer is 80.

What is the hexadecimal equivalent of decimal 255?

FF. Remember the binary and hexadecimal table 1111 is the same as 00001111. Which is equivalent to 8 + 4 + 2 + 1 = 15.

Convert decimal 224 to hexadecimal.

The result is E0

Convert this IP address to hexadecimal


10.1.1.1

The result is 0A010101