Home Company Questions Nokia Interview Questions Nokia Interview Questions - 1

Login Form




Nokia Interview Questions - 1 Print E-mail

1. What is placement syntax?

 

2. What are the differences between C++ and Java?

 

3. Describe file system in unix

 

4. How do you prevent developer from allocating memory for a class in Stack?

 

5. What all debugging techniques have you learnt so far to debug mobile phone application?

 

6. Design a system which has UI which takes either an array of char's of integers , and a sorting algorithm(e.g. quick sort,merge sort) it sorts the array passed based on the algorithm passed. Answer Hint: Use Template Function and Algorithm Factory

 

7. How do you prevent developer allocating memory for a class in heap (that is using new)

 

8. How will you implement a memory leak detector for your mobile application, so that when you come out of a scope, you can alert developer that there is a memory ?

 

9. How can you detect memory corruption?

 

10. Can a constructor be virtual?

 

11. Given a set of numbers find a consecutive subset of numbers whose sum is maximum. What is the complexity of your algorithm?

 

12. How does a unix machine boot, what is the process id of init?

 

13. What is the most challenging bug that you have fixed for a mobile application?

 

14. Explain how a mobile browser application works

 

15. How can a process communicate with another process in most efficient way?

 

16. Declare = operator for a class. 2. Why = operator has to return a reference why cannot it be void.