Copy the decimal values, for each of the above initials.
(We'll refer to these as A, B, and C.)
Then, create three new values
(X, Y, Z)
by adding ten to the first number, subtracting five from the second number, and adding 33 to the third number.
In the table below, show the ASCII character represented by each new number (X,Y,Z),
as well as the value in hex and binary.
In the last column, COMPLEMENT the 8-bit binary value
(i.e. change every one to a zero, and every zero to a one).
| Old Decimal
| New Decimal
|
| ASCII
| Hex
| Binary
|
| Complement
|
X=A+10
| _75_+10
|
|
|
U
|
55G
|
0101 01012
|
|
1010 10102
|
Y=B-5
| _69_-5
|
|
|
A
|
41G
|
0100 00012
|
|
1011 11102
|
Z=C+33
| _89_+33
|
|
|
z(lower-case)
|
7AG
|
0111 10102
|
|
1000 01012
|