how does a computer work out a hexadecimal sum

Takes hex, internally converts into binary, does the arithmetic, displays results back in hex.

thought it was something like that thanks.

got an exam at 5 and not got any notes etc.

one think though i got an example here, its 5EH - 4CH. the H is upper case but is smaller than other figures and its sort of on the toe of E and C if that makes sense. what does that mean?
 
Last edited:
Takes hex, internally converts into binary, does the arithmetic, displays results back in hex.

it cannot accept hex its binary!!!

it accepts a string of 1's and 0's and does some magic, then does some stuff to disply some other stuff on the screen (unless its not going to be displayed on the screen)
 
thought it was something like that thanks.

got an exam at 5 and not got any notes etc.

one think though i got an example here, its 5EH - 4CH. the H is upper case but is smaller than other figures and its sort of on the toe of E and C if that makes sense. what does that mean?

It means 5E is a hexadecimal number, like 21H is not 21 decimal, it's 21 hex (or base 16, not base 10)
 
thought it was something like that thanks.

got an exam at 5 and not got any notes etc.

one think though i got an example here, its 5EH - 4CH. the H is upper case but is smaller than other figures and its sort of on the toe of E and C if that makes sense. what does that mean?

H is not part of the hex character set which is 0-9 and A-F

So here we have:

5E - 4C = 12 hex
1011110 – 1001100 = 10010 binary
94 - 76 = 18 decimal​
 
it cannot accept hex its binary!!!

it accepts a string of 1's and 0's and does some magic, then does some stuff to disply some other stuff on the screen (unless its not going to be displayed on the screen)

Of course it takes Hex. You don't type a hex number in as binary do you?
 
got some other questions

describe two common types of micro controller architecture

a computer has 26 address lines. calculate teh total memory capacity available in Mb
 
Back
Top Bottom