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
Omnissa - MTS2/MTS3 2025 Interview
Summary
I recently interviewed at Omnissa for MTS2/MTS3 roles, facing LLD, DSA rounds, and system design questions. Despite implementing my solutions, I was rejected, particularly struggling with a regex matching question.
Full Experience
I recently interviewed at Omnissa for the MTS2/MTS3 roles.
OA: LLD question on hackerrank. Given a class design, we need to implement certain methods. Difficulty - Medium
Round1 : DSA Round
- Find the sum of all digits in a string.
- Implement a stack using vector. Follow up - Using queue
- Implement a queue using stack.
Round2: DSA Round
- Implement a method that will tell whether the API is fast or slow. API is considered fast if its average response time is less than 500ms.
- Balanced Paranthesis
- Question based on Regex Matching
Verdict: Reject Was stuck with Question 3. I implemented using vary granular approach, interviewer was looking for inbuilt regex methods.
Interview Questions (6)
Given a class design, implement certain methods based on the design.
Given a string, find the sum of all digit characters present in it.
Implement a stack data structure using a vector. Follow up: Implement a stack using a queue.
Implement a queue data structure using a stack.
Implement a method that determines if an API is 'fast' or 'slow'. An API is considered fast if its average response time is less than 500ms.
Determine if a given string of parentheses is balanced.