What do the logical operators AND, OR, XOR and NOT do?

AND (both conditions on either side of the AND operation MUST be satisfied for the IF function to work)
OR (either condition on each side of the OR operation MUST be satisfied for the IF function to work)
NOT (used when something needs to be displayed UNLESS a value is a certain amount/type/name etc.)
XOR (used when exclusively ONE of the conditions has to be met – not both! This is where XOR and OR differ.)

CD

Related Computing A Level answers

All answers ▸

Express the number 208 as a) an 8-bit binary number b) an octal string c) a hexadecimal string


What is the denary equivalent of the hexadecimal number A7?


A common construct found in many algorithms is a loop. Using pseudocode, write a pre-condition loop to output all of the even numbers between 99 and 201.


What are the main differences between different loops when it comes to coding ?