STL (140)
OOPS (873)
C++ General (2409) 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
1155
write a program to enter a string like"sunil is a good boy and seeking for a job" not more than 10 characters including space in one line,rest characters should b in other line.if the next line starts from in between the previous word,then print whole word to next line.
What is meant by exit controlled loop?
Is map ordered c++?
What is the role of C++ shorthand's?
Mention the default functions in C++, how would you detect that error has occurred inside the constructor and destructor.
What is the difference between equal to (==) and assignment operator (=)?
What is the important feature of inheritance?
Explain the difference between abstract class and interface in c++?
What is the difference between an external iterator and an internal iterator? Describe an advantage of the external iterator.
Why ctype h is used in c++?
How can you specify a class in C++?
Explain how would you handle a situation where you cannot call the destructor of a local explicitly?
Why use of template is better than a base class?
What is stl stand for?
How many types of comments are there in c++?