How can you find the nodes with repetetive data in a linked
list?
Answer / murali
By parsing/processing the nodes
we attain O(n) to O(log(n)) depending on the type of data-
structure
| Is This Answer Correct ? | 2 Yes | 9 No |
How are pointers type-cast?
Where the memory to the static variables is allocated?
catch(exception &e) { . . . } Referring to the sample code above, which one of the following lines of code produces a written description of the type of exception that "e" refers to? a) cout << e.type(); b) cout << e.name(); c) cout << typeid(e).name(); d) cout << e.what(); e) cout << e;
what are the decision making statements in C++? Explain if statement with an example?
When one must use recursion function? Mention what happens when recursion functions are declared inline?
What is code reusability in c++?
What is the error in the code below and how should it be corrected?
What does catch(…) mean?
Explain some examples of operator overloading?
How do you show the declaration of a virtual constructor?
What is the purpose of templates in c++?
What is a hash function c++?