Represent the number obtained by the last ve digits of your
Represent the number obtained by the last ve digits of your student number in binary, e.g., if your student number is XXX8372 then the question is to represent “8372” in binary. Also, represent the rst three digits of your student number in binary and perform the addition of those two numbers in binary.
Solution
First convert the number 8372 to binary( each digit at a time) 1000 0011 0010 1100 then convert the three X say if it is ABC8372 then convert A to 1010 B to 1011 and C to 1100 then perform binary addition of the two to get 1000 1110 0010 1110 which goes to 8E2E
