Numbering Sytems Flashcards
Max digit in Octal
7
Max digit in hex
F
max digit in decimal
9
max digit in binary
1
How to convert octal to decimal
Starting with the right most digit at 1 add 1 to the power of 8.
https://www.rapidtables.com/convert/number/index.html
How to convert hex to Decimal
Starting with the right most digit at 1 add 1 to the power of 16.
https://www.rapidtables.com/convert/number/index.html
what is any number to the power of 0.
1
What is A in hex?
10
What is B in hex?
11
What is C in hex?
12
What is D in hex?
13
What is E in hex?
14
What is F in hex?
15
what Addition Boolean Algebra?
How many formulas
7 formulas
```
A + 0 = A
A + 1 = 1
A + !A = 1
A + A = A
A + B) + C = A + (B + C
A + B = B + A
A + (B * C) = (A + B) * (A + C)
~~~
what Multiplication Boolean Algebra?
how many formulas
7 formulas
```
A * 0 =0
A * 1 = A
!A * A = 0
A * A = A
A * B) * C = A * (B * C
A * B = B * A
A * (B + C) = A * B + A * C
~~~