General Programming Questions
Conceptual Questions:
1. What is a data structure?
2. What is an Array?
3. What is a Linked List?
4. What is a Stack?
5. What is LIFO?
6. What is a Queue?
7. What is FIFO?
8. What are binary trees?
9. What is Recursion?
10. What is the OOPs concept?
11. What are the concepts introduced in OOPs?
12. Explain Binary Search Tree?
13. Explain Doubly Linked Lists?
14. What is a Graph?
15. Differentiate between linear and non-linear data structure?
16. What is a deque?
17. What is the difference between Stack and Array?
18. What sorting algorithm is the best?
19. How does variable declaration affect memory?
20. What are dynamic data structures?
Programming Interview Questions:
1. How do you reserve a string in Java?
2. How do you determine if a string is palidrome?
3. Find the number of occurances of a character in a string?
4. Find if the given two strings are anagrams or not?
5. How do you calculate the number of vowels and consonants in a String?
6. How do you get the matching elements in an integer array?
7. Code the Bubble Sort algorithm?
8. Code the Insertion Sort algorithm?
9. How to reverse an array?
10. Swap two numbers without using a third variable
11. Print a Fibonacci series using recurison?
12. How do you find the factorial of a number?
13. Reverse a linked list?
14. How do you implement Binary Search?
15. Find the second largest number in an array?
16. How do you remove all occurances of a given character from the input string?
17. Showcase Inheritance with the help of a program?
18. Explain overloading and overriding with the help of a program?
19. Check if the given number is prime?
20. Sum up all elements in an array
Last updated