What does Parameter refer to?
- A. A variable listed in a function's definition that receives a value when the function is called. ✓
- B. A software design technique that breaks a program into separate, interchangeable modules.
- C. A line of text in source code that is ignored by the compiler or interpreter and used to explain the code.
- D. A type system where variable types are checked at runtime rather than at compile time.
Correct answer
A. A variable listed in a function's definition that receives a value when the function is called.
Explanation
Parameter refers to a variable listed in a function's definition that receives a value when the function is called.