When.com Web Search

Search results

  1. Results From The WOW.Com Content Network
  2. Declarative programming - Wikipedia

    en.wikipedia.org/wiki/Declarative_programming

    Declarative programming is a non-imperative style of programming in which programs describe their desired results without explicitly listing commands or steps that must be performed. Functional and logic programming languages are characterized by a declarative programming style.

  3. Imperative programming - Wikipedia

    en.wikipedia.org/wiki/Imperative_programming

    Since the 1960s, structured programming and modular programming in general have been promoted as techniques to improve the maintainability and overall quality of imperative programs. The concepts behind object-oriented programming attempt to extend this approach. Procedural programming could be considered a step toward declarative programming.

  4. List of programming languages by type - Wikipedia

    en.wikipedia.org/wiki/List_of_programming...

    Declarative programming stands in contrast to imperative programming via imperative programming languages, where control flow is specified by serial orders (imperatives). (Pure) functional and logic-based programming languages are also declarative, and constitute the major subcategories of the declarative category. This section lists additional ...

  5. Procedural programming - Wikipedia

    en.wikipedia.org/wiki/Procedural_programming

    Procedural programming is a programming paradigm, classified as imperative programming, [1] that involves implementing the behavior of a computer program as procedures (a.k.a. functions, subroutines) that call each other. The resulting program is a series of steps that forms a hierarchy of calls to its constituent procedures.

  6. Comparison of multi-paradigm programming languages - Wikipedia

    en.wikipedia.org/wiki/Comparison_of_multi...

    Declarative programming – describes what computation should perform, without specifying detailed state changes c.f. imperative programming (functional and logic programming are major subgroups of declarative programming) Distributed programming – have support for multiple autonomous computers that communicate via computer networks

  7. Functional programming - Wikipedia

    en.wikipedia.org/wiki/Functional_programming

    Functional programming is very different from imperative programming. The most significant differences stem from the fact that functional programming avoids side effects, which are used in imperative programming to implement state and I/O. Pure functional programming completely prevents side-effects and provides referential transparency.

  8. Infrastructure as code - Wikipedia

    en.wikipedia.org/wiki/Infrastructure_as_code

    The declarative approach focuses on what the eventual target configuration should be; the imperative focuses on how the infrastructure is to be changed to meet this. [6] The declarative approach defines the desired state and the system executes what needs to happen to achieve that desired state.

  9. Side effect (computer science) - Wikipedia

    en.wikipedia.org/wiki/Side_effect_(computer_science)

    For example, imperative programming is commonly used to produce side effects, to update a system's state. By contrast, declarative programming is commonly used to report on the state of system, without side effects. Functional programming aims to minimize or eliminate side effects.