STL (140)
OOPS (873)
C++ General (2409)
Assume an array of structure is in order by studentID field of the record, where student IDs go from 101 to 500. Write the most efficient pseudocode algorithm you can to find the record with a specific studentID if every single student ID from 101 to 500 is used and the array has 400 elements. Write the most efficient pseudocode algorithm you can to find a record with a studentID near the end of the IDs, say in the range from 450 to 500, if not every single student ID in the range of 101 to 500 is used and the array size is only 300
What is the difference between interpreters and compilers?
What are multiple inheritances (virtual inheritance)?
How the virtual functions maintain the call up?
What are the extraction and insertion operators in c++?
Is c++ primer good for beginners?
What is a null object in c++?
Explain the difference between c++ and java.
Explain the difference between overloading and overriding?
Why is c++ still popular?
What is multilevel inheritance explain with example?
Difference between overloaded functions and overridden functions
What is abstraction with example?
How will you execute a stack using a priority queue? (Push and pop should be in O (1)).
How do you declare A pointer to function which receives an int pointer and returns a float pointer