What does the following do: for(;;) ; a) Illegal b) Loops forever c) Ignored by compiler...not illegal
1179Of the numbers 12 23 9 28 which would be at the top of a properly implemented maxheap a) 28 b) 9 c) Any of them could be
1419What are pointers, when declared, intialized to a) NULL b) Newly allocated memory c) Nothing. Its random
1136Would you rather wait for quicksort, linear search, or bubble sort on a 200000 element array? (Or go to lunch...) a) Quicksort b) Linear Search c) Bubble Sort
1049Will a recursive function without an end condition every quit, in practice a) Compiler-Specific (Some can convert to an infinite loop) b) No c) Yes
1079an operation between an integer and real always yeilds a) integer result b) real result c) float result
1155Post New C++ General Questions
Is c++ fully object oriented?
Difference between pointer to constant and constant pointer to a constant. Give example.
Differentiate between the manipulator and setf( ) function?
What it is and how it might be called (2 methods).
Is it possible to provide special behavior for one instance of a template but not for other instances?
What is the difference between delegation and implemented-in-terms-of?
What are formatting flags in ios class?
What are put and get pointers?
Difference between a homogeneous and a heterogeneous container
the first character in the variable name must be an a) special symbol b) number c) alphabet
What is meant by the term name mangling in c++?
how to connect with oracle 9i with server in socket program in c/c++
What is the purpose of the "delete" operator?
How is c++ used in the real world?
How const int *ourpointer differs from int const *ourpointer?