| |
GeekInterview.com > Placement Papers > Adobe > Interview Procedure
| Print | |
Question: Telephonic Interview Questions
Answer: Here are some questions I was asked.
1) program to find height of a binary tree? Complexity of above program 2) How do you know where the memory leaks when you have multiple files? 3) What are virtual destructors? 4) What should be done when an exception occurs in the constructor? 5) What can be maximum memory that a process can have in 32-bit machine? What assigns a process this memory? 6)Program to find the middle element of a linked list 7)algorithm of O(n) to find first unique element in a string Ex: input: abcabd output:c I couldnt answer theoretical questions so I wasnt shortlisted for the next round These might help you |
| August 08, 2009 19:59:56 |
#1 |
| mishmani |
Member Since: August 2009 Total Comments: 1 |
RE: Telephonic Interview Questions |
I have tried answering theoretical ones only
2) May be when destructor is not doing clean up
4) we cannot handle this because constructor cannot return any thing. Destructor will not be called for this constructor. So best thing to do is to clean up memory
5) 2^32(4GB)-(memory used by the machine itself).. PCB routines.. hopefully |
| |
Back To Question | |