About 38,600,000 results
Open links in new tab
  1. Parameter (computer programming) - Wikipedia

    In computer programming, a parameter, a.k.a. formal argument, is a variable that represents an argument, a.k.a. actual argument, a.k.a. actual parameter, to a function call. [1][2][3][4] A function's …

  2. What's the difference between an argument and a parameter?

    Oct 1, 2008 · In computer programming, two notions of parameter are commonly used, and are referred to as parameters and arguments —or more formally as a formal parameter and an actual parameter.

  3. What is a Parameter in Coding? Definition, Types & Examples Guide

    May 13, 2025 · What is a Parameter in Coding? A parameter is a variable declared in a function definition that acts as a placeholder for values that will be passed to the function when it is called.

  4. Difference Between Parameters and Arguments - GeeksforGeeks

    Jul 23, 2025 · In programming, a parameter is a variable in a function or method declaration. It serves as a placeholder for data that will be provided when the function or method is called.

  5. What is a parameter in programming - DEV Community

    May 21, 2024 · Delve into an in-depth understanding of parameters in coding, including what a parameter is, practical examples of parameters in programming, and the distinction between …

  6. Understanding Parameters in Computer Programming - w3resource

    Jan 15, 2025 · In computer programming, parameters are variables used in functions, methods, or procedures to accept inputs. They allow developers to write reusable, dynamic, and efficient code by …

  7. What are Parameters in Coding - California Learning Resource Network

    Jul 2, 2025 · At its core, a parameter is a variable declared within the function’s definition that receives a value from the calling code. Think of it as a placeholder, a named entity that anticipates a specific …

  8. What Is a Parameter in Programming? A Comprehensive Guide for …

    What Is a Parameter in Programming A parameter in programming refers to a variable used in a function or method to accept input values. Parameters allow functions to operate on different data without …

  9. What Is A Parameter In Programming - Interview Preparation

    May 20, 2024 · Simply put, a parameter is a variable used to pass information between functions or procedures. Think of it as a messenger that carries important data from one part of your code to …

  10. Parameters and Arguments – Programming Fundamentals

    A parameter is a special kind of variable used in a function to refer to one of the pieces of data provided as input to the function. These pieces of data are the values of the arguments with which the function …