Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Question text Match the definition with the vocabulary word that best fits the definition. A module or collection of statements that perform a specific task

Question text

Match the definition with the vocabulary word that best fits the definition.

A module or collection of statements that perform a specific task within a program.

The statements that describe exactly how a function operates.

A statement that executes a function.

Special variables that hold copies of function arguments.

A piece of data that is passed back to the calling function.

functions that don't return a value have this return type.

This "part" of the function is generally placed before main. It looks like the header of the function definition and describes the signature of the function for the compiler.

The default parameter passing mechanism in C++. Changes made to the parameter value inside the function are not reflected in main because a copy of the parameter is passed into the function in the call.

Use this parameter passing mechanism when you want to alter the value of the parameter in the function and have that new value reflected in main.

The symbol in C++ that is used to denote a reference parameter.

The area of a program in which a variable is known and can be used.

A variable that is defined and used inside a function definition.

A constant that is defined outside all functions, including main, and can be used throughout a program.

A simple program used to test functions. It simply calls the functions to make sure that they work.

Values that are sent into a function.

The statement that causes a function to end immediately.

A dummy function that is called instead of the function it represents so that you can focus on testing the parts of the program that call the function.

A local variable that retains it's value even after the function where it is defined has returned.

A file that is used to communicate information about a function or set of functions and the main program

Answer 19Choose...arguments, pass by reference ,header file,driver, stub, void, function, return,static value,function call,Scope,parameters,main,local variable,function prototype,function definition, global constant

The one function that every program must have

.arguments, pass by reference ,header file,driver, stub, void, function, return,static value,function call,Scope,parameters,main,local variable,function prototype,function definition, global constant

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Pro SQL Server Administration

Authors: Peter Carter

1st Edition

1484207106, 9781484207109

More Books

Students also viewed these Databases questions

Question

Find dy/dx if x = te, y = 2t2 +1

Answered: 1 week ago

Question

LO4 Specify how to design a training program for adult learners.

Answered: 1 week ago