Which of the following is a complete function?@int funct();@int funct(int x) {return x=x+1;}@void funct(int) {cout<<"Hello"}@void funct(x) {cout<<"Hello"}@B@
Which of the following is a valid function call (assuming the function exists)?@funct;@funct(x,y);@funct();@int funct();@C@
What is the return type of the function with prototype: "int func(char x, float v, double t);"@char@int@float@double@B@
Which is not a proper prototype?@int funct(char x, char y);@double funct(char x)@void funct();@char x();@D@
Which functions will every class contain?@None@Constructor@Destructor@Both a constructor and a destructor@D@
STL is based on which of the following programming paradigms?@Structured Programming@Object Oriented Programming (OOP)@Functional Programming@Aspect Oriented Programming (AOP)@C@
What type is argv?@char * @int@char **@It's not a variable@C@
What variables stores the number of arguments to a program?@argc@argv@count@arglen@C@
What header file contains C++ file I/O instructions?@iostream.h@fstream.h@infstream.h@outstream.h@A@
Which of the following is not a valid ofstream argument?@ios::app@ios::trunc@ios::noreplace@ios::create
Which of the following is the proper keyword to deallocate memory?@free@delete@clear@remove@C@
Which of the following is the proper keyword to allocate memory?@new@malloc@create@value@B@
What keyword covers unhandled possibilities?@all@contingency@default@other@C@
What is required to avoid falling through from one case to the next?@end;@break;@Stop;@A semicolon.@B@
The directives for the preprocessors begin with@Ampersand symbol (&Wink@Two Slashes (//)@Number Sign (#)@Less than symbol (<Wink@C@
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 arefollowedby@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@@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@
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@
