COMPUTER PROGRAMMING FUNDAMENTALS
WHAT IS PROGRAMMING
Question
[CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
|
|
The steps can be altered in any way without affecting the results.
|
|
The steps may be performed in any order to produce the proper result.
|
|
The steps must be repeated to produce the proper result.
|
|
The steps must be performed in a certain order to produce the proper result.
|
Detailed explanation-1: -How is structured programming similar to a recipe? The steps must be performed in a certain order to produce the proper result. The steps can be altered in any way without affecting the results. The steps may be performed in any order to produce the proper result.
Detailed explanation-2: -She explains that every step must be followed in order and that no steps may be skipped. She shows the errors that will occur if the order is mixed or steps are skipped. This type of programming structure is known as: sequence.
Detailed explanation-3: -Structured programming is a program written with only the structured programming constructions: (1) sequence, (2) repetition, and (3) selection. Sequence. Lines or blocks of code are written and executed in sequential order. Repetition.
Detailed explanation-4: -Structured programming is a programming paradigm aimed at improving the clarity, quality, and development time of a computer program by making extensive use of the structured control flow constructs of selection (if/then/else) and repetition (while and for), block structures, and subroutines.