Pseudo code is an English language equivalent of any coding language. It might look something like this:
Begin the program.
declare a variable, x.
initialize x to 0.
loop 10 times
add 10 to x
if loop has repeated fewer than 10 times, repeat the loop; if not, proceed to the next statement
display x
end the program.
This is is an English language equivalent of the code your program will execute regardless of the language.
Good luck!