Rearrange steps involved in top-down design programming? I. Analyze the…
2021
Rearrange steps involved in top-down design programming?
I. Analyze the problem
II. Revise and resequence
III. Write the main modul
IV. Connect the modules in proper order
V. Write the remaining modules
- A.
II → IV → V → III → I
- B.
III → I → V → IV → II
- C.
V → III → I → IV → II
- D.
I → III → V → IV → II
Attempted by 235 students.
Show answer & explanation
Correct answer: D
I. Analyze the problem (Understand the requirements and goals first.)
III. Write the main module (Define the overall structure and control logic.)
V. Write the remaining modules (Break the main task into smaller, specialized sub-tasks.)
IV. Connect the modules in proper order (Integrate the sub-tasks so they work together.)
II. Revise and resequence (Test, debug, and refine the logic.)