What are the two shift operators and what are their functions?
No Answer is Posted For this Question
Be the First to Post Answer
Are iterators pointers?
How many ways are there to initialize an int with a constant?
Reverse the Linked List. Input: 1->2->3->4->5->NULL Output: 5->4->3->2->1->NULL
Differentiate between late binding and early binding. What are the advantages of early binding?
What is the difference between struct and class?
What are shallow and deep copy?
Describe friend function & its advantages.
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
Which is best ide for c++?
class Foo { const int x; protected: Foo(int f); ~Foo(); }; Foo f; Referring to the sample code above, why will the class declaration not compile? a) The variable x is const. b) The destructor is protected. c) The destructor is not public. d) The constructor is protected. e) There is no default constructor.
Do you know what are static and dynamic type checking?
What are the vectors in c++?