Pseudocode is a description of an algorithm using everyday wording, but molded to appear similar to a simplified programming language.
define passwordcreate a pass_length variable and set it to 0create a contains_number variable and set it to Falseif the entire password hasn't been searched:iterate to the next character of the passwordincrement the pass_length variableif the current character of the password contains number:set contains_number to Trueif pass_length is greater than 8 and if contain_number is equal to True:valid passwordotherwise:invalid password
In code-based flowcharts, common ANSI shapes are ovals for terminals, arrows for flowlines, rhomboids for inputs and outputs, rhombuses for decisions, and rectangles for processes.