What is counting decimals?
What is counting binary?
What is counting hexadecimal?
What is counting general case radix R
Define Polynomial representation
How do you do decimal to binary conversion?
Given a number to base 10, divide the number by 2 and write down the remainder until said number is not divisible. Once done then read the numbers from bottom to top to get the binary number, then right the base next to it, in this case it would be base 2.
How do you do decimal to hex conversion?
Given a number to base 10, divide the number by 16 and write down the remainder until said number is not divisible. Once done then read the numbers from bottom to top to get the binary number, then right the base next to it, in this case it would be base 16. Note that if there is remainder of 10, 11, 12, 13, 14, 15 or 16 this is represented by A, B, C, D, E or F respectively
How do you do binary to hex conversion?
Four binary digits make up one hex digit (REFER TO NOTES)
How do you do decimal to binary conversion with decimal numbers ie 0.45 base 10?
Given a number to base 10, divide the number by 2 and the number before the decimal ie for 0.45/2 is 0.9 so you right down 0. Once done then read the numbers from top to bottom to get the binary number, then right the base next to it, in this case it would be base 2. This is done to a specfic precision which is typically given and this tells you how far to do (how m any numbers need to be recorded)
How do you do decimal to hex conversion with decimal numbers ie 0.45 base 10?
Given a number to base 10, divide the number by 16 and the number before the decimal ie for 0.45/16 is 0.029 (rounded) so you right down 0. Once done then read the numbers from top to bottom to get the binary number, then right the base next to it, in this case it would be base 16. This is done to a specfic precision which is typically given and this tells you how far to do (how m any numbers need to be recorded)
What are signed numbers? (refer to slides for examples)
How do you negate binary numbers?
What is the understanding of signed and unsigned numbers?
Depending on context (signed or unsigned), the same bit pattern can mean different things.
e.g.:
10112 signed = –5
10112 unsigned = +11
What is roll-over and overflow?
Correct transition between negative and positive range
(or vice versa) is called a roll-over.
Incorrect transition between negative and positive range
(or vice versa) is called an overflow.
REFER TO SLIDES (LECTURE 2 - SLIDE 24)
What are some of the special cases for floating point?
Exponent = 0 and Exponent = 255
REFER TO SLIDES
What are floating point numbers?