Example of replacing and COMPERISON, A="Alex", B="Alexa", output(A=B), it will print Alexa as in the computer, B is stored in A by using A=B. If we output(A==B) it will print false, this is because in pseudocode equal to is one "=", but in programming equal to is two= which is "==". (these stays the same in program: >, <, >=, <=) ( ≠ in pseudocode, != or < > in the program) IMPORTANT(we can use them all in pseudocode but technically is not allowed) REMEMBER computer is binary machine so only 1 and 0 or TRUE and FALSE
LOGICAL, output(A=="Alex" AND B=="Ted"), this will print FALSE as B doesn't store Ted.