Computer Science, asked by needachange95, 1 year ago

Which of the following is true about the principle of decomposition and modularization in Software design?
a) Software is divided into separately named and addressable components which are called modules. These modules are integrated to satisfy problem requirements.
b) It refers to the degree to which the elements of a module belong together.
C) It is a measure of how strongly related each piece of functionality expressed by the source code of a Software module is.
d) It states that modules should be specified and designed so that procedure and data contained within a module is accessible to other modules.

Answers

Answered by theking20
1

The statement that a Software is divided into seperately named and addressable components which are called modules is true when we talk about the principle of decomposition and modularization in Software design. The modules are then integrated to satisfy problem requirements.

The main aim of the whole process is to unite different tasks and responsibilities into one component and make the whole process easy.

Answered by hotelcalifornia
0

Answer:

Option A

Explanation:

The word decompose means breaking complex problem into multiple simple problems thus enabling each problem to get solved easily and then combining the results to produce solution to the given problem. This is to solve problem quickly and with ease. Each simple problem which has been broken from a complex problem is called a module. It is necessary to specify the relationship between these modules. Modules are normally contains data structure and algorithm.

Similar questions