Binary, headecimal signed 2s compliment Flashcards
Computer technology has all components that recognise only two states. What are they?
1 or 0 (binary aka on or off)
Binary code is used inside the computer to do what?
.store and manipulate data
What is a disadvantage of using binary code?
Difficult to document outside of the computer system
What can be used to document instead of binary code?
Hexadecimal representation
What type of system is binary?
Base 2
What type of system is hexadecimal?
Base 16
How is one hexadecimal symbol grouped?
in four bits (nibble)
Convert 1011 0110 0111 0001 into Denary
46705
Convert 485 into Binary - 16 bits
0000000111100101
Convert 865 into Hexadecimal
361
Convert 1011 0110 0111 0001 into Hexadecimal
B671
Convert AE2 into denary
2786
How many bits in a byte?
8 bits
Why do we need signed numbers?
To see if a binary number is positive or negative
How is a signed binary byte structured
The first bit is used to represent the + or - sign. 0 is positive and 1 is negative. The remaining bits total up the value. Another name for this is sign and magnitude.