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.
Loading...
Related Quiz
- Which data type would be most appropriate for storing a boolean value?
- In a switch statement, what is the purpose of the default label?
- Alice has a configuration setting that can have five possible values. Instead of using a long if-else structure, what would be a more elegant and readable approach to process the configuration setting?
- What is the primary purpose of encapsulation in object-oriented programming in C++?
- To ensure portability of your C++ program across different platforms, you can use data types like ______ which have a fixed size.