62.0k views
0 votes
Identify characteristics of structured programming design. Choose all that apply.

The code is easy to test and debug.
It creates a program made of modules that can be called when needed.
The code is difficult to modify due to the use of modules.
It uses logic flow.
The code is easier to follow.
The code is easier to modify.

User Gmanjon
by
4.4k points

2 Answers

3 votes

Answer:

A.B.D.E.F.

Step-by-step explanation:

pretty much everything except C.

:)

User Allan Beaufour
by
4.6k points
3 votes

Answer:

The correct options are;

The code is easy to test and debug

It creates programs made of modules that can be called when needed

It uses logic flow

The code is easier to follow

The code is easier to modify

Step-by-step explanation:

The approach of structural programming is one such that the problem is well understood and the solution is economical

Features of structural programming includes;

  • Error debugging are facilitated by structural programs and as such testing to debug
  • Structural program creates program modules that are reusable
  • Structural programs can be easily modified hence maintained
  • Structural program emphasizes on logic
  • The structural program code is easily read and understood, and therefore, it is easier to follow
User JeremyWeir
by
4.5k points