Sie sind auf Seite 1von 2

----- is a combination of An expression is;

operators and operands that


----- that expresses a value.

----- is a group of (zero or A compound statement (= a block).


more) statements delimited by
a set of braces, { }.

(Arguments/Parameters) Arguments;
appear in the function call parameters;
whereas the calling statement.
(arguments/parameters) are
the position-matched variables
in the function and appear in
the function's declaration and
function header. A function's
value parameters are used to
receive data supplied by -----
A ----- is a program statement function call.
or expression that transfers
control to a function so that it
will perform its subtask.
Arguments that are used for reference.
both input and output are
passed by -----
Array memory cells can called Components, elements, cells.
which 3 names?
Arrays can be depicted Both.
(horizontally / vertically).
Arrays cannot be passed by Right. They're either passed by reference
value. Right/wrong? or by const reference.
Assigning a float to an integer the output to be truncated.
causes -----
cout is (an object / a function). object.
Functional programming iteration.
languages rely heavily on
recursion where procedural
languages use ----
Modulus is executed (before / After.
after) division.
T/F? To make an array pass by F. Arrays are automatically reference
reference, all you have to do is parameters, even without the &.
add the &.
To ----- is to tell the compiler declare;
what datatype (or type of define.
parameter) this variable is.
To ----- is to cause the compiler
to set aside memory at
compile time.
To implement a decision step, if;
use ----- while.
to implement a conditional
loop, use -----
Why are arrays only passed by It would waste time and memory to copy
reference? big arrays when only some cells are to
be changed.

Das könnte Ihnen auch gefallen