Practice Programming Questions

Check out: Microsoft InterviewGoogle Interview, Interview Questions
 

Recommended Book

 

 

Preparing for an Interview

 
These questions should get your brain moving, especially when preparing for an interview. I am not posting solutions. Many of the answers can be found online, but…I challenge you to read books and study programming material to complete the solutions yourself. Understanding how a solution is formulated is far more important than just knowing the answer. If you get stuck on one of the questions, feel free to email me. I’ll send you the solution.
 

Questions

 
1. How do you find the missing number in a given integer array of 1 to 100?

2. How do you find the duplicate number on a given integer array?

3. How do you find the largest and smallest number in an unsorted integer array?

4. How do you find all pairs of an integer array whose sum is equal to a given number?

5. How do you find duplicate numbers in an array if it contains multiple duplicates?

6. How are duplicates removed from a given array?

7. How is an integer array sorted in place using the quicksort algorithm?

8. How do you remove duplicates from an array in place?

9. How do you reverse an array in place?

10. How are duplicates removed from an array without using any library?

11. How do you find the middle element of a singly linked list in one pass?

12. How do you check if a given linked list contains a cycle? How do you find the starting node of the cycle?

13. How do you reverse a linked list?

14. How do you reverse a singly linked list without recursion?

15. How are duplicate nodes removed in an unsorted linked list?

16. How do you find the length of a singly linked list?

17. How do you find the third node from the end in a singly linked list?

18. How do you find the sum of two linked lists using Stack?

19. How do you print duplicate characters from a string?

20. How do you check if two strings are anagrams of each other?

21. How do you print the first non-repeated character from a string?

22. How can a given string be reversed using recursion?

23. How do you check if a string contains only digits?

24. How are duplicate characters found in a string?

25. How do you count a number of vowels and consonants in a given string?

26. How do you count the occurrence of a given character in a string?

27. How do you find all permutations of a string?

28. How do you reverse words in a given sentence without using any library method?

29. How do you check if two strings are a rotation of each other?

30. How do you check if a given string is a palindrome?

31. How is a binary search tree implemented?

32. How do you perform preorder traversal in a given binary tree?

33. How do you traverse a given binary tree in preorder without recursion?

34. How do you perform an inorder traversal in a given binary tree?

35. How do you print all nodes of a given binary tree using inorder traversal without recursion?

36. How do you implement a postorder traversal algorithm?

37. How do you traverse a binary tree in postorder traversal without recursion?

38. How are all leaves of a binary search tree printed?

39. How do you count a number of leaf nodes in a given binary tree?

40. How do you perform a binary search in a given array?

41. How is a bubble sort algorithm implemented?

42. How is an iterative quicksort algorithm implemented?

43. How do you implement an insertion sort algorithm?

44. How is a merge sort algorithm implemented?

45. How do you implement a bucket sort algorithm?

46. How do you implement a counting sort algorithm?

47. How is a radix sort algorithm implemented?

48. How do you swap two numbers without using the third variable?

49. How do you check if two rectangles overlap with each other?

50. How do you design a vending machine?
 

< site index

 
tags: Programming Interviews, Coding Interviews, MrNetTek