What are advantages of C++ when comparing with C?
Answer Posted / reegan
data security,data encapsulation,reusability
Is This Answer Correct ? | 39 Yes | 9 No |
Post New Answer View All Answers
Differentiate between late binding and early binding.
What is enum c++?
Explain terminate() function?
What are the advantages of using friend classes?
Is it possible to get the source code back from binary file?
What is fflush c++?
Of 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
Evaluate !(1&&1||1&&0) a) Error b) False c) True
What is the use of 'this' pointer?
What are shallow and deep copy?
What is the basic concept of c++?
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 are separators in c++?
Write a function to find the nth item from the end of a linked list in a single pass.
Explain what happens when a pointer is deleted twice?