What is the only function all C++ programs must contain?
What punctuation is used to signal the beginning and end of code blocks?
Which of the following is not a correct variable type?
Which of the following is the correct operator to compare two variables?
Which of the following is the boolen operator for logical-and?
Consider that 1 is true and 0 is false. Evaluate !(1 && !( 0 || 1 )).
What is the final value of x when the code int x; for (x=0; x<10; x++) { } is run?
How many times is a do while loop guaranteed to loop?
Which is not a proper prototype?
What is the type of the function with prototype "int func(char x, float v, double t);"
Which of the following is a valid function call (assuming the function exists)?
Which of the following is a complete function?