STL (140)
OOPS (873)
C++ General (2409)
What is implicit pointer in c++?
Which software is used for c++ programming?
Why can't we have instance(stack) of a class as a member of the same class like eg.Class A{A obj;} as we can have self refential pointer
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
Factory Method C++ – How to delete pointers returned by it
what are the decision making statements in C++? Explain if statement with an example?
Why do we use constructor?
Why do we use polymorphism?
What are constructors in oop?
What is an incomplete type in c++?
What is unary operator? List out the different operators involved in the unary operator.
write a corrected statement so that the instruction will work properly. if (4 < x < 11) y = 2 * x;
What is a multiset c++?
Can member data be public?
What does new return if there is insufficient memory to make your new object?