Which of the following is the best type of module cohesion ?

Which of the following is the best type of module cohesion ?

A. Functional Cohesion
B. Temporal Cohesion
C. Functional Cohesion
D. Sequential Cohesion

Explanation: Functional Cohesion is a type of cohesion in which the tasks performed by a software module all contribute to the performance of a single function.

Which of the following is the worst type of module coupling ?

Which of the following is the worst type of module coupling ?

A. Control Coupling
B. Stamp Coupling
C. External Coupling
D. Content Coupling

Explanation: Content coupling occurs when module A changes data of module B or when control is passed from one module to the middle of another.

Which of the following is the best type of module coupling ?

Which of the following is the best type of module coupling ?

A. Control Coupling
B. Stamp Coupling
C. Data Coupling
D. Content Coupling

Explanation: The dependency between module A and B is said to be data coupled if their dependency is based on the fact they communicate by only passing of data.

Which of the property of software modularity is incorrect with respect to benefits software modularity ?

Which of the property of software modularity is incorrect with respect to benefits software modularity ?

A. Modules are robust
B. Module can use other modules
C. Modules Can be separately compiled and stored in a library
D. Modules are mostly dependent

Explanation: Modularity cannot bring benefits unless the modules are autonomous or independent

Debugging is_________________?

Debugging is_________________?

A. creating program code
B. finding and correcting errors in the program code
C. identifying the task to be computerized
D. creating the algorithm

Explanation: Debugging is a methodical process of finding and reducing the number of bugs, or defects, in a computer program or a piece of electronic hardware, thus making it behave as expected.