Top answers


What is an Algorithm?

An algorithm is a set of instructions given to a computer to carry out a particular task.
MM
Answered by Max M. Computing tutor
2544 Views

Perform AND, OR & XOR operations on 0001 1111 & 1010 1010

0001 1111 AND 1010 1010 = 0000 1010 0001 1111 OR 1010 1010 = 1011 1111 0001 1111 XOR 1010 1010 = 1011 0101
DH
Answered by Dom H. Computing tutor
5373 Views

What is a Mutatable Data Structure?

A Mutatable Data Structure is a type of data structure in which the data structure can be edited, deleted or moved, in comparison to an immutable structure data cannot be changed, it can only have more data ...
NH
Answered by Najeeb H. Computing tutor
2700 Views

What is an algorithm?

An algorithm is a set of steps that can be followed to complete a task. There are lots of examples of algorithms that we follow or use in our everyday lives. Algorithms are used to solve the many problems th...
JZ
Answered by Joshua Z. Computing tutor
2690 Views

What is Control Flow in a Computer Program?

Control Flow is the order in which elements of a computer program - instructions, statements and function calls - are executed and evalutated. In a computer program, actions will run in sequence , one after ...
AC
Answered by Alexis C. Computing tutor
18875 Views