The action of executing a function within a program is called function ______.

  • Prototype
  • Declaration
  • Definition
  • Invocation
The action of executing a function within a program is called "Invocation." When you invoke a function, you are instructing the program to execute the code inside that function. The other options have different meanings: Prototype is a declaration of the function's signature, Declaration is a statement that tells the compiler about a function's name and signature, and Definition is the specification of a function's behavior.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *