Number Systems Flashcards
1
Q
___ are important for representing addresses and data in computer systems and networks
A
Number systems
2
Q
Some attack vectors involve causing numerical…
A
overflows
3
Q
a particular method for executing an attack.
A
attack vector
4
Q
1010 in decimal
A
10
5
Q
111 in decimal
A
7
6
Q
___ binary digits represent one octal digit
A
3
7
Q
75 octal to binary
A
111 101
8
Q
61 octal to decimal
A
49
9
Q
101101 to octal
A
55 octal
10
Q
42 decimal to octal
A
52 octal
11
Q
A5 hex to binary
A
1010 0101
12
Q
A5 hex to decimal
A
165
13
Q
To convert from decimal to binary
- Divide the original number by 2 and note the remainder.
- Keep dividing the ___1 (noting the remainder each time) until the ___1 becomes zero.
- Read the remainders ___2 for the result.
A
- intermediate quotient
2. in reverse order
14
Q
___ binary digits represent one hex digit
A
4
15
Q
111010101 to hex
A
1D5