BINARY SYSTEMS Flashcards
What are the 2 ways of data representation nd which is used in the modern day world?
Analog signals - continuous and vary in strength and quality
Digital signals are in one of the 2 states ON or OFF. Modern-day computers are digital
Decimal, a base 10, is ______ number system
Positional
_____ is the magic number in computing
2
What are the 2 methods of binary to decimal conversion?
Repeated division by 2 and powers of 2 factorization
In binary addition, a carry over is when __+___ occurs
1+1
Bit contains ___ piece of info and can hold one of the 2 values that is ___ or ___
One
on or off
a byte is made up of ___ bits
8
a byte can hold ___ number of values and the range is ____
256 (0-255)
ASCII represents each character as a unique ___ bit code
8
What is a unicode
16-bit character encoding scheme that allows characters from all major world languages, living and dead, to be encoded in a single character
What is bitwise negation in ones complement?
In order to represent a negative binary number we have to flip the 0 to 1 and 1 to 0
1s complement of a positive number gives ____
Negative number
1s complement of a negative number gives ____
positive number
Which number is used a sign in 1s complement method system
The most significant bit which is the extreme left number
if we are converting a negative binary number to decimal what is the first step
negate each bit to get a positive binary number then convert to decimal