CloudKaptan Interview Experience
Non Coding Questions
- What is Object Oriented Programming?
- Can you explain in brief?
- What is static and throws in main?
- What is inheritance? Write a code and explain.
- What is interface? Write a code and explain.
- What is constractor? Write a code and explain.
- What is polymorphism? Write a code and explain.
- What is exceptions? Write a code and explain.
- What if we first catch an Exception and then catch Arithmetic Exception? Which one will get executed first?
Coding Questions
- Write a program to reverse a string word by word.
- Why have you used StringBuilder? Write the code without StringBuilder. What is the time and space complexity?
- Write a program to find Kth smallest element in an unsorted array.
- Can you do it without sorting i.e. can you optimize the time complexity?
- Please explain the solution and why use priority queue? What is the time and space complexity?
No comments