Search over 10,000 free study notes
Over a million students use our free study notes to help them with their homework
Top answers
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. 00110101 00100111 +01001110 (c)0101...
PM
Answered by
Paolo M.
•
Computing tutor
2591 Views
Calculate -3 + 3 using Two's Complement and the Sign and Magnitude Method. Which works correctly?
Using the Two's complement notation of -3 and 3 (11111101 and 00000011), binary addition will return 100000000 which has an overflow error, so the 9th bit is ignored giving a value of 00000000 which is equal...
MJ
Answered by
Mark J.
•
Computing tutor
3421 Views
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]
A binary search starts at the middle of the list and compares this item with the search term, if the item matches the search term, then the search is complete.If the item is not the search term, it is compar...
WH
Answered by
William H.
•
Computing tutor
1715 Views
What does a compiler do in the context of programming?
A compiler's main purpose is to translate source code (code that we write in Java, C++ etc) into machine readable code. Think of it like a machine which takes our document of code and translates it into 0's ...
FK
Answered by
Filippos K.
•
Computing tutor
3425 Views
What do I need to know about operating systems?
Motivation -> We need operating systems to give easy access to the hardware of a computer. A processor (CPU) can only execute one instruction at a time, yet we can have multiple applications running at th...
CW
Answered by
Calum W.
•
Computing tutor
1679 Views
1
2
3
4
5
→