About 47,400,000 results
Open links in new tab
  1. Functions in Programming - GeeksforGeeks

    Jul 23, 2025 · What are Functions in Programming? Functions in Programming is a block of code that encapsulates a specific task or related group of tasks. Functions are defined by a name, may have …

  2. What is a Function? - W3Schools

    If a part of your program does a specific task, you should create a function for it. It is especially useful to create a function if you need to run that code more than once, and from different parts of your program.

  3. Functional programming - Wikipedia

    In computer science, functional programming is a programming paradigm where programs are constructed by applying and composing functions.

  4. Computer Programming - Functions - Online Tutorials Library

    A function is a block of organized, reusable code that is used to perform a single, related action. Functions provide better modularity for your application and a high degree of code reusing.

  5. What is a Function in Programming? We explain - The Windows Club

    Dec 18, 2024 · What is a Function in Programming? In basic terms, a function is a block of code that performs various tasks. Should you need to, a function can be called and reused numerous times.

  6. What is Functional Programming? Tutorial with Example - Guru99

    Aug 13, 2024 · Functional programming (also called FP) is a way of thinking about software construction by creating pure functions. It avoid concepts of shared state, mutable data observed in Object …

  7. What is a function in coding? - California Learning Resource Network

    Jul 2, 2025 · In the realm of software development, a function represents a self-contained, reusable block of code designed to perform a specific operation.

  8. What Is a Function in Programming? - The Tech Edvocate

    In programming, a function is a set of instructions that perform a specific task. It is a block of code that can be easily reused, making programming more efficient and modular.

  9. What is a function? — Programming | by Ezinne Anne Emilia - Medium

    Dec 9, 2022 · Functions make programming more fun because of the benefits they provide. In this article, you will learn what a function is, the types of functions, and the importance of functions.

  10. Programming - Functions - University of Utah

    Functions are "self contained" modules of code that accomplish a specific task. Functions usually "take in" data, process it, and "return" a result. Once a function is written, it can be used over and over and …