CSharp to Pseudo Code
Assigning a value
'←' is to assign a value to a variable, essentially just like '=' in C#.
While Loop
The command words used in the exam questions is:
WHILE (Condition) .................... ENDWHILE
Condition will be something which equates to either true or false. Some examples of the conditions are:
WHILE (root * root) < Number
or:
WHILE (factorfound = false)
So the condition is always contained within the round brackets.
C#
while (factorfound == false)
{
............
}