STL (140)
OOPS (873)
C++ General (2409)
Show the declaration for a pointer to function returning long and taking an integer parameter.
what is COPY CONSTRUCTOR and what is it used for?
What is the difference between ++ count and count ++?
What are the advantages of c++ over c?
Discuss the effects occur, after an exception thrown by a member function is unspecified by an exception specification?
Why struct is used in c++?
Write a Program for dynamically intialize a 2 dimentional array. Eg:5x20, accept strings and check for vowels and display the no.finally free the space allocated .
Which function cannot be overloaded c++?
Why is c++ is better than c?
Would 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
How many standards of c++ are there?
How a new operator differs from the operator new?
What is interface? When and where is it used?
You have two pairs: new() and delete() and another pair : alloc() and free(). Explain differences between eg. New() and malloc()
Describe private, protected and public – the differences and give examples.