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
Remitly Technical Screen Interview
Summary
I shared my experience of a technical screen interview at Remitly, which included introductions, behavioral questions, and several coding challenges related to designing a Deck of Cards class and implementing various shuffling methods.
Full Experience
Sharing my experience of Remitly Tech Screen Interview:
1. Started with Introductions.
2. Two Behavioral Questions.
3. Coding :
- Create a class for DECK of cards with SUITE and RANK like SUITE : "SPADES", RANK : "A"
Following were the questions asked for the above:
- Need to print all the cards
- Can be able to randomly shuffle all the cards and print the cards
Following that, asked but not expected to implement
- Unit tests you can think of
- Instead of random shuffle, can we shuffle like how a human does, For ex: take a set of cards in between and adding to the top/bottom.
Overall, it went good.
Interview Questions (5)
Create a class for DECK of cards with SUITE and RANK like SUITE : "SPADES", RANK : "A"
Need to print all the cards (from the previously designed Deck class).
Can be able to randomly shuffle all the cards and print the cards (from the previously designed Deck class).
Unit tests you can think of for the Deck of Cards class.
Instead of random shuffle, can we shuffle like how a human does, For ex: take a set of cards in between and adding to the top/bottom.