Microsoft SDE Intern Interview Experience
💼 LTIMindtree Interview Experience (On-Campus) | Fresher | 2026
Salesforce SMTS | Interview Experience | Rejected
JPMC | SDE2 (Associate) - Java Backend - Interview Experience + Compensation
Microsoft - SDE2 - Coding Round
Rakuten - Java Lead Developer (Springboot)
Summary
My first round virtual interview for a Java Lead Developer role at Rakuten was a rapid-fire session covering SOLID principles, multithreading, data structures, Java streams, and exception handling. I rated the difficulty as Easy to Medium. Despite my lack of Spring Boot knowledge, I found the experience positive and valuable.
Full Experience
It was the first round held virtually.
It started with a basic introduction and little about current project, understanding the tech stacks
The interview lasted for about an hour and felt like a rapid-fire session, with questions coming one after another. It served as a quick recap of everything I’ve studied so far. In terms of difficulty, I would rate it as Easy to Medium.
Although I wasn't familiar with Spring Boot, which might be a deciding factor for rejection, overall, it was still a positive and valuable experience.
Interview Questions (12)
Explain what the SOLID principles are.
Write a code snippet for a Singleton class and ensure it is thread-safe.
Explain what the volatile keyword is in multithreading.
How would you make a tightly coupled Monolithic application modular using SOLID principles?
Write the code to perform binary search in a sorted array.
Write code to show how the Single Responsibility Principle is violated and provide the corrected code.
Have you heard about CountDownLatch? Explain it.
Give the time complexity for insertion, deletion, and search in HashMap, Binary Search Tree, and Linked List.
Give the difference between Bubble sort, Insertion sort, Merge sort, and Quick sort.
Write a Java function to read a file where if the file is not read, you throw IOException, if you don't find the file while reading throw FileNotFoundException, and also try to add one custom Exception for any other issue you face.
If you have a class Person having age and name as data members, please write the code snippet to fetch all the persons with age > 25 and in a sorted manner using Java Stream API.
How would you handle exceptions in the Java Stream API?