The hiring process at Agoda takes an average of 60 days when considering 1 user submitted interviews across all job titles. Candidates applying for Account Manager had the quickest hiring process (on average 60 days), whereas Account Manager roles had the slowest hiring process (on average 60 days).
The interview process was well-structured and easy to follow. HR always kept me updated, answered my questions quickly, and explained the next steps clearly, which made the whole experience feel smooth, professional, and very encouraging.
Interview questions [1]
Question 1
How would you approach solving a business problem, such as adding a new search feature, when facing time constraints and limited data?
I applied through a recruiter. The process took 1 week. I interviewed at Agoda in Sep 2025
Interview
The overall process is fast, as this is an urgent hiring. Very impressed with the recruiter who takes care and supports me from the pre-screening until the offer.
For the interview session, the hiring team is very professional and well prepared, as they can walk me through this role, the team culture, and the company values, plus every question that they have asked me is accurate and useful for the interview.
Interview questions [1]
Question 1
Tell me about the experience you have been through, or the proudest project that you have contributed.
I applied online. I interviewed at Agoda in Jul 2025
Interview
They sent a link for an hacker rank test. It was having both react and algorithms questions. The test was not difficult but the time limit was tight.
The react test was consisting in displaying a list of elements
Interview questions [1]
Question 1
function main() {
const ws = fs.createWriteStream(process.env.OUTPUT_PATH);
const n = parseInt(readLine().trim(), 10);
const result = countSameBitNumbers(n);
ws.write(result + "\n");
ws.end();
}