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
SentinelOne | Senior Software Engineer | Bangalore
Summary
I had a fast-paced interview process with SentinelOne for a Senior Software Engineer role in Bangalore, consisting of a screening round, two technical rounds, and a culture fit round, which ultimately resulted in a hire.
Full Experience
Recruited reached out on LinkedIn, their process was very fast.
Screening Round Given a string and a pattern, find whether the pattern exists in the string and it should not exist in the same relative order as the pattern
s = abcde, p = abc -> false
s = bacde, p = abc -> true
Easy sliding window solution. Then asked about general software engineering principles
Round 1 General software engineering questions around performance tuning, design, deployment. Then asked me to implement a program that would merge two large files and run the code
Round 2 Again this was a general discussion. This interviewer asked two coding quesitons but the catch was optimisations Question 1: implement reverse string and optimise it Question 2: Find prime numbers and optimise it
Round 3 General culture fit round.
Verdict Hire
Interview Questions (4)
Given a string and a pattern, find whether the pattern exists in the string and it should not exist in the same relative order as the pattern
s = abcde, p = abc -> false
s = bacde, p = abc -> true
Implement a program that would merge two large files and run the code.
Implement reverse string and optimise it.
Find prime numbers and optimise it.