What are the advantanges of modularity
Answers were Sorted based on User's Feedback
Answer / kanthi
Actually, the main advantage of modularity is reusability.
By dividing a complex problem into modules and implementing
them differently, reusability can be achieved as these
modules can be used when need for same task arises in a
similar problem.
Also, ofcourse modularity increases code legibility and it
is an efficient way of handling difficult and lengthy tasks
by dividing each module responsibilty amongst various
developers.
| Is This Answer Correct ? | 29 Yes | 0 No |
Answer / narender vadhava
Modularity means to divide a program into smaller units
into modules as we do in c to make functions.
It help us to write a large program, easily to handle a
complex problem by dividing into modules.
it is also helpful to give a good and easy look to our
lengthy program
| Is This Answer Correct ? | 18 Yes | 3 No |
What is encapsulation example?
What is abstraction in oops?
What is this interview room ? Is it a class or an object.
When a private constructer is being inherited from one class to another class and when the object is instantiated is the space reserved for this private variable in the memory??
What is the highest level of cohesion?
why the argument is passed by reference to a copy constructor?example?
Child cObj = new Parent() Wahts the output ?
How oops is better than procedural?
What will happen when the following code is run: int x; while(x<100) { cout<<x; x++; } 1) The computer will output "0123...99" 2) The computer will output "0123...100" 3) The output is undefined
advantage and disadvantage in c++>>oops and what are the questions ask for interview in c++>>oops. could you tell me or reply me
What is destructor give example?
who is the founder of c++?