175k views
1 vote
The imperative programming paradigm is popular and is a part of object-oriented computing paradigm, because it: __________.

A. is based on computer organization and thus is efficient to execute on hardware.
B. matches the culture of doing things by following the step-wise instructions.
C. enforces the modularity and supports the development of large programs.
D. supports class inheritance and code reuse.

User Tarak
by
6.3k points

1 Answer

6 votes

Answer:

B. Matches the culture of doing things by following the step-wise instructions.

Step-by-step explanation:

Imperative programming paradigm follows a sequence of instructions and steps. The order of execution of the statement is necessary because their is sequence of statements. Operation is system oriented.

In imperative programming, the source code is a series of commands, this commands tell the computer what to do, when to do it and the order it will be done so as to achieve the best result. The code of imperative programming paradigm is quite easy to understand.

User Qxlab
by
5.8k points