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 |
Can an interface inherit a class?
What are the advantanges of modularity
What is polymorphism and example?
Given two strings like x=?hello? and y=?open?, remove any character from string x which is also used in string y, thus making the result x=?hll?.
What are the 3 pillars of oop?
what is single inheritance?
what is multi level inheritance give n example ?
13 Answers HDFC, Hulas Steel, Ness Technologies,
Program to check whether a word starts with a capital letter or not.
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
inheritence with example
How to deploy web appliction in web logic ?
What is oops and its features?