In term of programming language, the statement is a command that the programmer has given to the computer system for performing the specific action. A Computer program is the collection of statements.
"Flowchart of Statement"

Types of Statement
- Simple Statement
- Compound statement
Simple Statement
- assignment (=)
- goto
- return
Compound Statement
if-statement:
if(condition){…..} else {…..}
switch-statement:
switch (c) { case 'a': alert(); break; case 'q': quit(); break; }
Looping Statement
do-while loop
Syntax :- do {
………..
………..} while (condition);
for-loop:
for(initialization, condition, inc/dec)
{
………
………
}