What is the correct value to return to the operating system upon the successful completion of a program?@-1@1@0@Programs do not return a value@C@
What is the only function all C++ programs must contain?@start()@system()@main()@ program()@C@
What punctuation is used to signal the beginning and end of code blocks?@{ }@ -> and <-@ BEGIN and END@( and )@A@
What punctuation ends most lines of C++ code?@. (dot)@ ; (semi-colon)@ :(colon)@ ' (single quote)@B@
Which of the following is a correct comment?@ */ Comments */@ ** Comment**@ /* Comment */@ { Comment }@C@
Which of the following is not a correct variable type?@float@ real@ int@double@B@
Which of the following is the correct operator to compare two variables?@:=@ =@ equal@ ==@D@
Which of the following is the boolean operator for logical-and?@ &@&&@|@|&@B@
There is a unique function in C++ program by where all C++ programs start their execution@Start()@Begin()@Main()@Output()@C@
Every function in C++ are followed by@Parameters@Parenthesis@Curly braces@None of these@B@
Every statement in C++ program should end with@A full stop (.)@Comma (,)@Semicolon (;)@A colon (:)@C@
Which of the following can not be used as identifiers?@Letters@Digits@Underscores@Spaces@D@
Which of the following identifiers is invalid?@papernam@writername@typename@printname@C@
Which of the following can not be used as valid identifier?@bitand@bittand@biand@band@A@
Which of the following is not a valid escape code?@\t@\v@\f@\w@D@
Which of the following is known as insertion operator@^@v@<<@ >>@C@ 
Which of the following is output statement in C++?@print@write@cout@cin@C@
Which of the following is input statement in C++?@cin@input@get@none of above@A@ 
By default, the standard output device for C++ programs is@Printer@Monitor@Modem@Disk@B@
By default, the standard input device for C++ program is@Keyboard@Mouse@Scanner@None of these@A@
Which of the following is extraction operator in C++?@^@v@<< @>>@D@ 
When requesting multiple datum, user must separate each by using@a space@a tab character@a new line character@all of above@D@
Looping in a program means@Jumping to the specified branch of program@Repeat the specified lines of code@Both of above@None of above@B@
Which of the following is not a looping statement in C?@while@until@do@for@B@
Which of the following is not a jump statement in C++@ break@goto@exit@switch@D@
Which of the following is selection statement in C++?@break@goto@exit@switch@D@
Which of the following is true?@1@66@1@All of the above@D@
Which of the following is the boolean operator for logical-and?@&@&&@|@|&@B@
Which of the following shows the correct syntax for an if statement?@if expression@if { expression@if ( expression )@expression if@C@
What is the final value of x when the code int x; for(x=0; x<10; x++) {} is run?@10@9@0@1@A@
Which is not a loop structure?@for@do while@while@repeat until@D@
How many times is a do while loop guaranteed to loop?@0@Infinitely@1@Variable@C@
Which is not a proper prototype?@int funct(char x, char y);@double funct(char x);@void funct();@char x();@B@
What is the return type of the function with prototype: "int func(char x, float v, double t);"@char@int@float@double@B@
Which of the following is a valid function call (assuming the function exists)?@funct;@funct x, y;@funct();@int funct();@C@
Which follows the case statement?@:@;@-@A newline@A@
