Envié una solicitud electrónica. El proceso duró 3 meses. Acudí a una entrevista en Agoda (Bangkok) en ago 2019
Entrevista
It was lengthy and rigorous. We took a deep dive into threading. Upto OS level. Yes you read that right.
So the process started in the month of September when I was given a hackerrank test. I cleared that and Agoda scheduled 2 tech interview rounds in a single day on bluejeans. These were moderate level rounds.
I was, after 10 days, told that the position has been closed and they will contact me back in a few months once they have a position open. But the contacted me again after 20 days. They scheduled one final round of bluejeans interview which was also of moderate difficulty.
I cleared this round and was called to Bangkok for face-to-face interviews with development managers. I faced 5 technical interview rounds from morning 10 to evening 5 with a 2 hour lunch break. The interviews were difficult. They focused on my technical knowledge and design skills.
The interview didn't have general problem solving like those at Amazon or Google. They had problem solving of their own kind which expected less code and more tech skills and design skills.
The tech discussions went as deep as how are threads created and managed by the OS. We also discussed a lot about projects on my resume. Went too much in depth of those projects too.
Finally after 4 days of the interview, I was called again on bluejeans and was extended the offer of a Senior Software Engineer at Bangkok.
Preguntas de entrevista [1]
Pregunta 1
1. How can you manage thousands of requests at the same time? All the requests cannot be processed at the same time. How are you gonna keep them waiting? Explain the architecture.
2. A global variable `x` is initialized to `0`. A function `f()` has a loop which runs from i=0 to 5 and increments value of `x` at each iteration. If `f()` is called once, when `f()` completes, the value of `x` will be 5. Now in our `main()` function, we create another loop which runs from j=0 to 5 and create a new thread in each iteration, and each thread calls `f()`, what is the maximum and minimum possible value of `x` after this loop ends?
3. I had a project on my resume in which I had implemented traffic distribution to different servers using percentages. For ex. if I have 3 servers A,B and C and I need to distribute 20,50 and 30% of traffic to each respectively, I could configure my system to do that distribution approximately. It is possible that there may be fluctuation of 3-4% at the end of the day in the distribution. So instead of A getting 20%, it gets only 18% while C gets 32% of the traffic.
So the interviewer asked me to implement a system that distributes traffic to my servers strictly as configured and not approximately. Then also added a use case that what happens if I introduce a server D and want to divert exactly 1000 requests to it per hour? Not percentage wise but request count wise this time.
4. A new user signs up and a new integer id is to be assigned to a newly created user. And this needs to happen in parallel. And needs to be replicated across 5 data centers. Design a system to do the same.
5. Design an elevator system. Draw class diagram for same. The elevator system of the office building was very high-tech. If you are at elevator labelled `G` and you press the up button, you won't necessarily get elevator `G` but you might end up getting elevator labelled `F` if `F` is nearer.
Solicité el puesto a través de la recomendación de un empleado. Acudí a una entrevista en Agoda (Gurgaon, Haryana)
Entrevista
The interview process was very smooth.
I was asked the question to find the minimum sum pairs in the array, and return all of them. The interviewer was very helpful and supportive.
Envié una solicitud electrónica. Acudí a una entrevista en Agoda (Bangkok) en nov 2025
Entrevista
Totally the worst experience. If you don't consider me as a candidate, please DONT ask me to do an online assessment.
I submitted the application on Nov 3, 2025, and completed the OA on Nov,10 2025 with 70% required time and over 90% test cases. Two days later, I received the rejected letter.
I'm never treated in this way, completed the OA but the interview is no show-up and waste both-side time
Preguntas de entrevista [1]
Pregunta 1
Two algorithms: dfs and another third REST API request
Solicité el puesto a través de un captador. El proceso duró 4 semanas. Acudí a una entrevista en Agoda (Bangkok)
Entrevista
Interview process:
They will provide the interview process details before processing for the interviews.
There will be 2 Technical rounds
Technical 1: DSA medium to hard level leetcode problem.
I was ask to find the minimum path weight to reach at point y from a arbitrary point x in a 2d grid. (Graph problem BFS traversal).
Technical 2: HLD round there is no pattern in HLD round they can ask any random. I was ask to design a vendor specific functionality in agoda. So vendors can hit agoda API to get there respective bookings.
I was able to clear both the rounds and got the mail for proceeding for the HM and Talent Acquisition round but after a week they drop my profile all of the sudden without any discussion
Preguntas de entrevista [1]
Pregunta 1
I was ask to find the minimum path weight to reach at point y from a arbitrary point x in a 2d grid. (Graph problem BFS traversal).