What Is Pseudocode or Structured English ?
Structured English or pseudocode is a technique used by systems analysts (and sometimes by IT business analysts) to model and document logic of information processes.
It is a form of English often used in functional or system specifications and it looks a bit like programming statements but does not have a compiler readable syntax.
Structured English uses a subset of English as follows:
Action verbs (ex: display, save, delete, etc.)
Noun phrases (ex: bank account, customer, etc.)
Set of well defined keywords (IF, FOR EACH, WHILE)
NO adjectives or adverbs
Example:
FOR-EACH Account belonging to the Customer
IF Account is NOT closed THEN
Display account on the screen
END-IF
END-FOR-EACH
Comments
Post a Comment