Search over 10,000 free study notes
Over a million students use our free study notes to help them with their homework
Top answers
Why would you use Assembly Language instead of a normal programming language?
Although assembly language is much more difficult to program in, it runs much faster and takes up less storage space. You would generally use it if you need something to happen very very quickly, like in a s...
CH
Answered by
Cameron H.
•
Computing tutor
7796 Views
Basic Conversions (Binary, Hexadecimal, etc)
1. Convert the hexidecimal number D6 to decimal Since it is base-16, we multiply the first digit (6) by 16^0 - giving us 6 We then multiple the second digit (D - which equates to 13) by 16^1 - giving us 208 ...
CJ
Answered by
Calum J.
•
Computing tutor
3994 Views
Express the number 208 as a) an 8-bit binary number b) an octal string c) a hexadecimal string
Number conversions are a staple of both A-Level and GCSE computing papers. a) Expressing as a binary number is the hardest part of a conversion. Octal and hexadecimal can all come after easily. To express as...
AM
Answered by
Adam M.
•
Computing tutor
5775 Views
How to manually convert a number from decimal into binary?
Decimal and binary are two positional systems which essentially means that we write the number as a sum of digits multiplied by powers of a base . For instance, 142 actually means 10^2 * 1 + 10^1 * 4 + 10^0 ...
BC
Answered by
Brian C.
•
Computing tutor
2685 Views
Convert 10101100 to decimal.
4+8+32+128=172
PW
Answered by
Piotr W.
•
Computing tutor
2734 Views
←
12
13
14
15
16
→