Question: What are the four kinds of modules in structured programming?
Answer (Highlight to reveal): Sequence, Decision, Loop, Selection.
Question: What is the difference between Selection and Decision modules?
Answer (Highlight to reveal): Decision may contain only 2 alternative paths in a flowchart, selective contains as much as the user desires.
Question: Do Sequence modules conatin any alternative paths?
Answer (Highlight to reveal): No. It contains a number of predetermined processes.
Question: What are subprograms?
Answer (Highlight to reveal): They are procedures/processes for a specific task. They simplify programming by breaking up complicated parts to make it manageable.
Question: What are different between structured programming and traditional programming?
Answer (Highlight to reveal): Structured programming contains structures within its processes for organizational purposes.