adplus-dvertising

Welcome to the Software Design Concepts MCQs Page

Dive deep into the fascinating world of Software Design Concepts with our comprehensive set of Multiple-Choice Questions (MCQs). This page is dedicated to exploring the fundamental concepts and intricacies of Software Design Concepts, a crucial aspect of Software Engineering. In this section, you will encounter a diverse range of MCQs that cover various aspects of Software Design Concepts, from the basic principles to advanced topics. Each question is thoughtfully crafted to challenge your knowledge and deepen your understanding of this critical subcategory within Software Engineering.

frame-decoration

Check out the MCQs below to embark on an enriching journey through Software Design Concepts. Test your knowledge, expand your horizons, and solidify your grasp on this vital area of Software Engineering.

Note: Each MCQ comes with multiple answer choices. Select the most appropriate option and test your understanding of Software Design Concepts. You can click on an option to test your knowledge before viewing the solution for a MCQ. Happy learning!

Software Design Concepts MCQs | Page 48 of 79

Discuss
Answer: (b).Two modules have shared data Explanation:Common coupling occurs when two modules have shared data, such as the use of global variables or COMMON blocks in FORTRAN.
Discuss
Answer: (c).Modules communicate through an external medium Explanation:External coupling occurs when modules communicate through an external medium, such as a file.
Discuss
Answer: (d).One module directs the execution of another module Explanation:Control coupling occurs when one module directs the execution of another module by passing the necessary control information, usually through flags.
Discuss
Answer: (a).Complete data structures are passed from one module to another Explanation:Stamp coupling occurs when complete data structures are passed from one module to another, with the precise format of the data structures being a common property of the modules.
Discuss
Answer: (d).Only simple data is passed between modules Explanation:With data coupling, only simple data is passed between modules.
Q476.
What were the data types used in the programming languages in the 1970s?
Discuss
Answer: (a).Scalars and records Explanation:The programming languages in the 1970s had simple scalar data types such as real and integer, and they allowed arrays of scalar values. Records were used to store values of different types.
Discuss
Answer: (a).Passing scalars or arrays Explanation:Modules were considered data-coupled if they passed scalars or arrays.
Q478.
What is the relationship between A and B when A passes a scalar value to B and B returns a value which is used to control the further execution of A?
Discuss
Answer: (b).A is data-coupled to B, B is control-coupled to A Explanation:The coupling between modules need not be commutative, and when module A passes a scalar value to B and B returns a value which is used to control the further execution of A, then A is data-coupled to B, while B is control-coupled to A.
Discuss
Answer: (d).It increases the comprehensibility of modules. Explanation:Simple module interfaces allow for an understanding of a module independent of the context in which it is used, which increases the comprehensibility of modules.
Discuss
Answer: (b).Strong internal cohesion leads to low intermodule coupling. Explanation:Coupling and cohesion are dual characteristics, so if the various modules exhibit strong internal cohesion, the intermodule coupling tends to be minimal.

Suggested Topics

Are you eager to expand your knowledge beyond Software Engineering? We've curated a selection of related categories that you might find intriguing.

Click on the categories below to discover a wealth of MCQs and enrich your understanding of Computer Science. Happy exploring!