2026 | Study Guide,
Practice Questions,
Answers, Rationales &
Exam Review | Complete
Ethics Study Guide
Updated 2026 Questions and Answers
100% Verified Exam Prep and Comprehensive
Rationales
Included
, This symbol is used to show a Subroutine in flowcharts
Input / Output a value with this symbol
Make a decision in your flowchart with this symbol
Start or end of a flowchart with this symbol
For...Next statement is an iterative, incremental loop statement used to repeat a sequence of statements
for a specific number of occurrences.
Concatenation The process of joining two or more strings into one string.
Keyword Identifier reserved by a programming a language
! Not, will make a true expression false, and a false expression true.
< Less than, will be true if the expression on the left is less than the expression on the
right.
>= Greater than or equal to, will be true if the expression on the left is greater than or
equal to the expression on the right.
<= Less than or equal to, will be true if the expression on the left is less than or equal to
the expression on the right.
== Equal to (loose equality), will be true if the expressions on both sizes are equal, but
not necessarily the same data type.