What are the differences between the function prototype and the function defi-nition?
What is difference between shallow copy and deep copy? Which is default?
Write about the various sections of the executable image?
What are virtual functions and what is its use?
Adobe Interview & Adobe Placement Paper
Can we remove an element in a single linked list without traversing? Lets suppose the link list is like this 1 2 3 4 5 6 We need to remove 4 from this list (without traversing from beginning) and the final link list shud be 1 2 3 5 6 only thing we know is the pointer to element "4". How can we remove "4" and link "3" to "5"?
What are different types of typecasting supported by C++
what are the events occur in intr activated on interrupt vector table
What is a "RTTI"?
What is the maximum value of a unsigned char a) 255 b) 256 c) 128
Can inline functions have a recursion? Give the reason?
What is jump statement in C++?
What do you mean by pure virtual functions in C++? Give an example?