Show how you would calculate 53 + 39 in 8-bit binary?

First convert each number to binary. 53 = 00110101. 39 = 00100111.Then add the two binary numbers, considering each column of bits from right to left and using carry bits. 0011010100100111 +01001110 (c)01011100 (r)

PM

Related Computing GCSE answers

All answers ▸

Describe the differences between a binary and linear search algorithm.


What is an algorithm?


Explain lossless compression.


Describe the process used by a binary search algorithm, and explain why binary search would not be appropriate for the list [3,2,5,7,9]