Multiple choice technology testing

Which of the following is NOT true?

  1. a function has a single return value

  2. an action can have more than one output parameters

  3. Function and action are one and the same

  4. many functions can be used within an action

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

Functions and actions are distinct concepts in modular programming. A function is designed to return a single value and can be used inline within expressions, whereas an action can have multiple output parameters and handles side effects.