Give this one a try later!
%
A character literal is enclosed in ________ quotation marks, whereas a string literal is
enclosed in ________ quotation marks.
,Give this one a try later!
single, double
Given the following function definition
void calc (int a, int& b)
{
int c;
c = a + 2;
a = a * 3;
b = c + a;
}
What is the output of the following code fragment that invokes calc?
(All variables are of type <i>int</i>)
x = 1;
y = 2;
z = 3;
calc(x, y);
cout << x << " " << y << " " << z << endl;
Give this one a try later!
163
If you attempt to store data past an array's boundaries, it is guaranteed that the
compiler will issue an error.
Give this one a try later!
, False
In C++ the = operator indicates:
Give this one a try later!
assignment
To pass an array as an argument to a function, pass the ________ of the array.
Give this one a try later!
name
This loop is a good choice when you know how many times you want the loop to
iterate in advance of entering the loop.
Give this one a try later!
for
When a relational expression is false, it has the value ________.
Give this one a try later!