






































































Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
Community
Ask the community for help and clear up your study doubts
Discover the best universities in your country according to Docsity users
Free resources
Download our free guides on studying techniques, anxiety management strategies, and thesis advice from Docsity tutors
software engineering lessons lecture
Typology: Cheat Sheet
1 / 78
This page cannot be seen from the preview
Don't miss anything!
Structure chart is a chart derived from Data Flow Diagram. It represents the system in more detail than DFD. It breaks down the entire system into lowest functional modules, describes functions and sub-functions of each module of the system to a greater detail than DFD. Structure chart represents hierarchical structure of modules. At each layer a specific task is performed.
symbols used in construction of structure charts : Module - It represents process or subroutine or task. A control module branches to more than one sub-module. Library Modules are re-usable and invokable from any module.
Jump - An arrow is shown pointing inside the module to depict that the control will jump in the middle of the sub module.
Loop - A curved arrow represents loop in the module. All sub-modules covered by loop repeat execution of module.
Control flow - A directed arrow with filled circle at the end represents control flow.
Graphs or diagrams, may are sometimes interpreted differently by different people. Hence, analysts and designers of the software come up with tools such as Structured English.
following are some tokens of structured programming. IF-THEN-ELSE, DO-WHILE-UNTIL
Customer Authentication in the online shopping environment.
Pseudo code is written more close to programming language. It may be considered as augmented programming language, full of comments and descriptions. Pseudo code avoids variable declaration but they are written using some actual programming language’s constructs, like C, Fortran, Pascal etc.
Pseudo code contains more programming details than Structured English. It provides a method to perform the task, as if a computer is executing the code.