answersLogoWhite

0


Best Answer

The strength of modular programming lies in the modular approach. Each module holds logically grouped code (functions, procedures, variables, constant data), typically grouped by functionality.

For instance, one module might provide tools to retrieve application-specific data from and store such data in a database, another module might provide visualization primitives, a third might provide an application-specific data structure and related management functions, etc.

As each module is developed, it is tested as a single unit. The idea is to perfect this module, and never to touch it again while the remaining modules are being developed and tested in a similar manner, then put together ("integrated") to form the application.

While the goal of never touching a module, once initially tested, is rarely met in real life terms, modular programming provides a structured approach to application design and helps in producing quality software. A modular design also helps when working in a team, as the modules' boundaries often are natural dividing lines along which the work can be divided between different members of the team.

User Avatar

Wiki User

11y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

13y ago

Absolutely nothing.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the difference of modular programming and modular programming?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

What is modular programing mention any 2 charecteristic?

Modular programming is a design technique which separates a program into small, self-contained units or modules, each focusing upon a particular aspect of the program. Modular programming typically combines structured programming, object oriented programming and generic programming techniques.


Difference between procedural programming and modular programming?

Procedural programming is a computer programming technique in which the program is divided into modules like function or subroutine or procedure or subprograms, where as ... "Modular Programming" is the act of designing and writing programs as interactions among functions that each perform a single well-defined function, and which have minimal side-effect interaction between them. Put differently, the content of each function is cohesive, and there is low coupling between functions as happens in procedural programming.


What is the difference structured programming language and java?

There is no difference between procedural programing language & structure programing language


What is the difference between modular programming and structured programming.?

Modular programming:It is the act of designing and writing programs as interactions among functions that each perform a single well defined function,& which have minimal side effect interaction between them.It is heavily procedural.The focus is entirely on writing code(functions). Data is passive.Any code may access the contents of any data structured passed to it. Object Oriented programming:it is a programming paradigm using "objects"-data structures consisting of data fields & methods together with their interactions-to design applications and computer programs.programming techniques may include features such as data abstraction,encapsulation,messaging,modularity,polymorphism and inheritance.


What is the effect of OOP in system development?

The use of Object Oriented Programming is used primarily to: * Make programs easier to read * Modify programs faster * Create modular programs

Related questions

Is c plus plus a modular programming?

No, but it does support modular programming through namespaces.


What is modular programing mention any 2 charecteristic?

Modular programming is a design technique which separates a program into small, self-contained units or modules, each focusing upon a particular aspect of the program. Modular programming typically combines structured programming, object oriented programming and generic programming techniques.


What is modular structured programming?

when you divide a long program or problem into small small understandable parts that means modular structured programming. In the consequences of c programming modular structured programming called to divide a long program into small small, and easy to understand functions. Garcha UFV, Canada


Does C support modular programming?

Yes.


Is VB modular programming language?

Yes.


Several advantages to using a modular approach in programming?

It is easy to understand small sections of code in the modular programming.You can store the code across multiple files.Modular programming allows collaborative programming. Collaborative programming means more than one program work in one application at the same time.Duplication of code is not possible in modular programming. The programmers create a single procedure for code.The errors are localized to a subroutine or function and it is easy to find the errors.The code should be used in multiple applications in modular programming.The code should be simple and short in modular programming and it is less need to be written.


What is non modular bricks?

Difference between modular and non-modular bricks


What is difference between modular or non modular router?

additional ports can be added in modular routers.


Difference between procedural programming and modular programming?

Procedural programming is a computer programming technique in which the program is divided into modules like function or subroutine or procedure or subprograms, where as ... "Modular Programming" is the act of designing and writing programs as interactions among functions that each perform a single well-defined function, and which have minimal side-effect interaction between them. Put differently, the content of each function is cohesive, and there is low coupling between functions as happens in procedural programming.


What is the difference structured programming language and java?

There is no difference between procedural programing language & structure programing language


What is the difference between modular programming and structured programming.?

Modular programming:It is the act of designing and writing programs as interactions among functions that each perform a single well defined function,& which have minimal side effect interaction between them.It is heavily procedural.The focus is entirely on writing code(functions). Data is passive.Any code may access the contents of any data structured passed to it. Object Oriented programming:it is a programming paradigm using "objects"-data structures consisting of data fields & methods together with their interactions-to design applications and computer programs.programming techniques may include features such as data abstraction,encapsulation,messaging,modularity,polymorphism and inheritance.


What are the Structured programming languages?

In Structured Programming also known as Modular Programming Each Method(function) is structured itself. Such logical structure make programming more efficient and easy to understand. it employs Top-Down design model.