What is meant by thinking procedurally?
Identifying the individual parts of a bigger problem
What is a top down modular design (structure diagram)?
Breaking down a problem into smaller subproblems until each subproblem can be represented as a single task (ideally a self-contained subroutine)
What is decomposition?
Breaking down a complex problem into smaller more manageable parts
MDP
What are the advantages of decomposition?
What is the first stage of thinking procedurally?
Taking the problem defined by the user and breaking it down into constituent parts
What is the second stage of thinking procedurally?
Identifying components of a solution
How can the lowest level of subproblems in a structure diagram be coded as?
Self contained modules or sub routines
What do software developers need to consider when recombining components of a solution?
The order in which the subroutines are executed and how they interact with each other based on their role in solving the problem
RT
State two advantages of utilising reusable components
TRM
What are the advantages of procedural programming?