About 1,160,000 results
Open links in new tab
  1. What is Imperative Programming? - GeeksforGeeks

    Apr 25, 2024 · Imperative programming deals with performance of the program by specifying the sequence of commands where commands are executed sequentially and change the state of the program until the end result is achieved. In imperative programming, computer receives the series of commands in steps from program to achieve the result.

  2. Difference Between Imperative and Declarative Programming

    Mar 22, 2023 · Imperative Programming as the name suggests is a type of programming paradigm that describes how the program executes. Developers are more concerned with how to get an answer step by step. It comprises the sequence of command imperatives.

  3. Imperative programming - Wikipedia

    In computer science, imperative programming is a programming paradigm of software that uses statements that change a program's state. In much the same way that the imperative mood in natural languages expresses commands, an imperative program consists of commands for the computer to perform.

  4. What is the difference between declarative and imperative

    Declarative programming is when you say what you want, and imperative language is when you say how to get what you want. A simple example in Python: # Declarative small_nums = [x for x in range(20) if x < 5] # Imperative small_nums = [] for i in range(20): if i < 5: small_nums.append(i)

  5. Imperative Programming Languages (IPL) ' Definitions: • The imperative (or procedural) paradigm is the closest to the structure of actual computers. • It is a model that is based on moving bits around and changing machine state • Programming languages based on the imperative paradigm have the following characteristics:

  6. What is Imperative Programming? (Definition, Example) - Built In

    Feb 19, 2025 · Imperative programming provides fine-grained control over program execution, allowing direct memory management and precise control flow for performance-critical applications. It is often used to teach fundamental programming concepts because it mirrors step-by-step problem solving.

  7. What is Imperative Programming? - Computer Hope

    Sep 15, 2024 · Imperative programming is a paradigm of computer programming where the program describes steps that change the state of the computer. Unlike declarative programming, which describes "what" a program should accomplish, imperative programming explicitly tells the computer "how" to accomplish it.

  8. Understanding Imperative Programming - 101.school

    Imperative programming is a style of programming where the programmer instructs the machine how to change its state. The instructions are commands for the computer to perform. It's called "imperative" because the commands issued are orders, or imperatives. The characteristics of imperative programming include:

  9. Imperative Programming - CIO Wiki

    Apr 7, 2024 · Imperative programming is a programming paradigm that emphasizes explicitly detailing the steps needed to achieve a desired outcome. In this paradigm, programs are constructed from sequences of statements that change a program's state through assignment, conditionals, loops, and function calls.

  10. The Imperative Programming Paradigm

    Imperative Programming 4.0: Modular Programming. Modularity principle: programs should be constructed from loosely coupled, coherent modules. IP 4.0 adds module declarations. A module is a named collection of procedure, variable, and sub-module declarations. Module members can be public or private,

  11. Some results have been removed
Refresh