match the definition with the vocabulary word that best fits the definition. a constant that is defined outside the main and all function definitions. the scope of the variable is the entire program. answer 1 choose... when an argument is passed to a function this way, a copy of the argument (or of the value stored in the argument variable) is copied into a function parameter variable. answer 2 choose... this loop checks its condition after running one time answer 3 choose... a statement that invokes a function. answer 4 choose... this logical operator is used when you want to change true to false or vice versa answer 5 choose... the library that you use when reading and writing to the console answer 6 choose... the library used to read and write to files answer 7 choose... the library used for formatting output. answer 8 choose... the region of source code for a program in which a variable is defined and can be used. answer 9 choose... this selection construct is used when you are choosing between multiple integer or character options answer 10 choose... the location of a variable in memory answer 11 choose... this logical operator is used when you want to join two boolean arguments and want to require that both of them are true for the overall result to be true answer 12 choose... a named sequence of statements that can be invoked/called and given arguments and that might return a value. answer 13 choose... this looping construct is typically used when you want to repeat a loop a given number of times answer 14 choose... a variable that is defined within a function body. the scope of the variable is just that function. answer 15 choose... a variable defined inside a function that retains its value between function calls. answer 16 choose... this is composed of the function header and the function body. answer 17 choose... data that is passed back to the calling function as the function ends. answer 18 choose... this operator is used to calculate the remainder of two integers answer 19 choose... two functions that have the same name but different parameters are said to be...