Describe structured programming
What will be an ideal response?
Answer: Structured programming refers to programs that are subdivided into small, well-defined modules with the goal of reducing complexity and enhancing reliability and modifiability. Each module should interact with a control module rather than with each other. Proper structured programming dictates that each module should have only one entry and exit point to facilitate testing and modification.
Business