Skip to content
EntityQ6453666· pop 30· linked from 482 articles

modular programming

Sign in to save

structured programming technique where a program is divided into modules with specific functions

Wikidata facts

Show 1 more fact
Sources (2)

via Wikidata · CC0

~11 min read

Article

Modular programming is a programming paradigm that emphasizes organizing the functions of a codebase into independent modules, each providing an aspect of a computer program in its entirety without providing other aspects.

A module interface expresses the elements that are provided and required by the module. The elements defined in the interface are detectable by other modules. The implementation contains the working code that corresponds to the elements declared in the interface.

Connections

Categories