• 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/31

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;

31 Cards in this Set

  • Front
  • Back
binary 0 is what voltage?
0 volts, or off
Binary 1 is what voltage?
5 volts or on
what is a bit?
one binary place equal to 0 or 1
What is a byte?
A byte is 8 bits
Any number raised to the power of 0 equals what?
1
Any number raised to the power of 1 equals what?
itself.
Each bit in a binary number is raised to what power?
each bit is raised to a power 1 greater than the previous bit, starting at 0 right to left.
the highest power in a byte is what number?
7
In C, a byte is called what?
A Character or 'char'
The left most bit in a binary number is called...
Most significant bit or msb
The right most bit in a binary number is...
Least significant bit or lsb
How is the weight of a binary bit calculated?
By raising the bit to the power determined by its position.
What's is the weight of the msb of a byte?
2^7 or 128
This byte, 00010000 equals what value?
16
The values of each bit in a byte are...
1,2,4,8,16,32,64,128
Hexadecimal notation is known as...
HEX
HEX is base what?
16
Binary is base what?
2
4 bits is called what?
A nibble
HEX 0-9 represents what values?
0,1,2,3,4,5,6,7,8,9
HEX A-F represents what values?
10,11,12,13,14,15
A word is how many bits?
16
a word has how many nibbles?
4 nibbles, each with 4 bits
In C, a word is called what?
An integer or int
What is the difference between a signed and unsigned int?
signed are - or +, unsigned are only +
unsigned integer have a minimum and maximum value of what?
0 - 65535
Signed into have a minimum and maximum value of what?
-32,768 to -1 and 0 to +32,768
A long word is how many bytes?
4 bytes, each 8 bits
What is the formula for finding the signed value of an unsigned int greater than 32768?
-1 * (65535 - int)
What is the minimum and maximum unsigned values of a long word?
0 - 4,294,967,295
What is the minimum and maximum value of a signed long word?
-1 to -2,147,483,647 and 0 to 2,147,483,647