Top answers


Describe Round Robin Scheduling

Round robin scheduling is a process by which a computer can multitask. Technically a computer cannot multitask but what round robin does is it gives each task/program a very small time slice of the processor...
GV
2564 Views

Write a recursive binary search algorithm in pseudocode.

A binary search algorithm is one of the most important searching algorithm, user on sorted arrays. This algorithm searches for a given number (value) in an array A. How does the algorithm works ?1) check if ...
TU
Answered by Tudor U. Computing tutor
2654 Views

Describe the differences between a binary and linear search algorithm.

The binary and linear search algorithms describe two methods of finding a particular item in a list. They both have strengths in terms of how fast they are, but this depends on what type of list you are sear...
JE
Answered by Jack E. Computing tutor
2830 Views

What is immediate addressing?

The immediate addressing mode is when the opcode holds a numerical value. The first operand is the target register and the second operand is the constant numerical value.
FW
Answered by Freya W. Computing tutor
2624 Views

Convert 56 (decimal value) into its binary equivalent

56 into binary56/2 = 28 remainder 028/2 = 14 remainder 014/2 = 7 remainder 07/2 = 3 remainder 13/2 = 1 remainder 1and only 1 is remainingWrite the remainders you found in order from step 6 to 1 = 111000Write...
FW
Answered by Freya W. Computing tutor
3339 Views