Contents

What does conio stand for?
a) character input/output  
b) console input/output
c) common input/output   
d) complex input/output

b

What does main () in C++?
a) compiler directive 
b) comment
c) function                           
d) expression

c

…….will signal an error message if there is no main function is a program.
a) editor                                
b) compiler
c) linker                                 
d) preprocessor

b

Which of the following is rue about void function?
a) any value is return 
b) 0 is returned
c) 1 is returned   
d) no value is returned

d

For every opening brace in C++ program, there must be a………
a) closing brace 
b) comma
c) colon                                 
d) dot

a

Which of the following function must be included in all C++ programs?
a) start ()                                               
b) system ()
c) main ()                             
d) program ()

c