Upload Button Icon Add office photos

Filter interviews by

Agoda Interview Questions, Process, and Tips

Updated 21 Jan 2025

Top Agoda Interview Questions and Answers

View all 32 questions

Agoda Interview Experiences

Popular Designations

62 interviews found

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 17 Jun 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in May 2024. There was 1 interview round.

Round 1 - Assignment 

Assignment contained multiple set of questions - python, data science, sql, statistics, data literacy , visualization . Test went on for 1 hour and results were given immediately.

It was a good test. Although I scored 65% , and did not make it, but still had a good experience.

Suggestion - prepare for timebound , basic problem solving.

Data Analyst Interview Questions asked at other Companies

Q1. Suppose there is a room in the office and X people enter room throughout the day, Y people leave throughout the day [continuously people are entering the room, some are staying there, and rest are going out] .. so tell me the code to calcul... read more
View answer (11)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

30 min
Aptitude test comprising of Logical reasoning and math questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Read about the company and the role being offered

Senior Product Manager Interview Questions asked at other Companies

Q1. What are the growth hacks you would use to grow traffic?
View answer (1)

Specialist Interview Questions & Answers

user image Anonymous

posted on 23 May 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Interview Checking basic Communication skills

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview checking my logical reasoning and management skills

Specialist Interview Questions asked at other Companies

Q1. 1. Solid principles implementation in a given scenario, how can we apply and improve the problem shared by interviewer. 2. C# coding questions on strings and arrays. 3. Rest API methods and it's implementation. 4. Basic questions on Jquery,... read more
View answer (1)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I applied via Referral and was interviewed in Feb 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

Quantitative test on percentages and data interpretation

Round 2 - HR 

(1 Question)

  • Q1. Round 2 with HR on work experience for a fit check
Round 3 - Case Study 

Work experience + case study on agoda homes . How would you go about selecting 500 hotels for parents for the supply team. How do you measure the effect of discounts

Round 4 - Case Study 

Work experience + case study on agoda hotels. If you were conducting an A/B testing to check how discounts affects your margins, how would you go about it?

Senior Product Manager Interview Questions asked at other Companies

Q1. What are the growth hacks you would use to grow traffic?
View answer (1)

Agoda interview questions for popular designations

 Senior Software Engineer

 (6)

 Senior Product Manager

 (5)

 Analyst

 (4)

 Staff Engineer

 (4)

 Software Engineer

 (3)

 Market Analyst

 (3)

 Senior Analyst

 (2)

 Lead Software Engineer

 (2)

Analyst Interview Questions & Answers

user image Sharvaani Singh

posted on 9 Oct 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed before Oct 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

The test had 2 sql questions that you needed to solve and other general aptitude questions

Round 2 - HR 

(1 Question)

  • Q1. Case Study round : How will you solve an issue with low number of likes received on a tech platform
  • Ans. 

    To increase likes on a tech platform, I would focus on improving content quality, engaging with users, and utilizing data analytics.

    • Analyze user engagement data to understand preferences and trends

    • Create high-quality and relevant content to attract users

    • Engage with users through interactive posts, contests, and polls

    • Collaborate with influencers or partners to reach a wider audience

    • Utilize targeted advertising to promot

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Case study round to understand how email marketing works

Analyst Interview Questions asked at other Companies

Q1. N-th Fibonacci Number Problem Statement Given an integer ‘N’, your task is to find and return the N’th Fibonacci number using matrix exponentiation. Since the answer can be very large, return the answer modulo 10^9 + 7. Formula: F(n) = F(n-... read more
View answer (1)

Get interview-ready with Top Agoda Interview Questions

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Aug 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Code signal, DSA :Dp,Trees, Matrix.

Round 2 - Coding Test 

Dp, Arrays, Graph, Java Concepts. LLD

Round 3 - Technical 

(3 Questions)

  • Q1. LLD , Api Design, HLD, (Messaging system), OOPS
  • Q2. Conecpts of function Programming
  • Ans. 

    Functional programming is a programming paradigm that treats computation as the evaluation of mathematical functions.

    • Functions are first-class citizens

    • Immutable data

    • No side effects

    • Higher-order functions

    • Recursion

    • Pure functions

    • Referential transparency

  • Answered by AI
  • Q3. Java Memory Management

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well the basic conce[ts of programming and the ds algo.

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (196)

Jobs at Agoda

View all
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Past experiences

Senior Software Engineer Interview Questions asked at other Companies

Q1. K Largest Elements Problem Statement You are given an integer k and an array of integers that contain numbers in random order. Write a program to find the k largest numbers from the given array. You need to save them in an array and return ... read more
View answer (1)

Lead Engineer Interview Questions & Answers

user image Anonymous

posted on 10 Mar 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Write program for merge sort
  • Ans. 

    Merge sort is a divide and conquer algorithm that divides the input array into two halves, sorts each half, and then merges the sorted halves.

    • Divide the array into two halves

    • Recursively sort each half

    • Merge the sorted halves back together

  • Answered by AI
  • Q2. Quick sort using o(1) space complexity
  • Ans. 

    Quick sort can be implemented with O(1) space complexity by using an iterative approach and avoiding recursion.

    • Use a stack to keep track of the partition indices instead of using recursion

    • Iterate through the stack to perform partitioning and sorting steps

    • Example: ['apple', 'banana', 'cherry', 'date', 'fig']

  • Answered by AI

Skills evaluated in this interview

Lead Engineer Interview Questions asked at other Companies

Q1. What is the resistance value of tripping & closing coil of vcb?
View answer (8)

Interview Questions & Answers

user image Anonymous

posted on 12 Dec 2024

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Two questions from LeetCode.

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Mar 2023. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Aptitude Test 

Prepare well for SQL. Rest all are basic DILR and Quant

Round 3 - Assignment 

Case study based on global tourism

Round 4 - One-on-one 

(3 Questions)

  • Q1. General questions about workex, ambition etc
  • Q2. Tell me something about yourself
  • Q3. Why do you want to work in this industry

Interview Preparation Tips

Interview preparation tips for other job seekers - Be thorough with whatever you have mentioned in CV

Digital Marketing Executive Interview Questions asked at other Companies

Q1. What is the difference between do follow and no follow links?
View answer (5)

Agoda Interview FAQs

How many rounds are there in Agoda interview?
Agoda interview process usually has 1-2 rounds. The most common rounds in the Agoda interview process are Technical, Coding Test and One-on-one Round.
How to prepare for Agoda interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Agoda. The most common topics and skills that interviewers at Agoda expect are Recruitment, Strategic Partnerships, SQL, Travel Booking and Coding.
What are the top questions asked in Agoda interview?

Some of the top questions asked at the Agoda interview -

  1. A/B testing: given two test cases each with 50% customers, A: 1000 bookings and...read more
  2. How will you deal when a customer is asking you about a specific concern and yo...read more
  3. What datasets or criteria will you consider to identify the 1,000 individuals t...read more
How long is the Agoda interview process?

The duration of Agoda interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Agoda Interview Process

based on 58 interviews

Interview experience

3.9
  
Good
View more

Interview Questions from Similar Companies

Swiggy Interview Questions
3.8
 • 425 Interviews
Oyo Rooms Interview Questions
3.3
 • 218 Interviews
MakeMyTrip Interview Questions
3.7
 • 122 Interviews
FabHotels Interview Questions
3.0
 • 33 Interviews
Yatra Interview Questions
3.4
 • 31 Interviews
RedBus Interview Questions
4.2
 • 31 Interviews
Treebo Hotels Interview Questions
3.3
 • 22 Interviews
Ixigo.com Interview Questions
3.6
 • 21 Interviews
Cleartrip Interview Questions
3.4
 • 18 Interviews
Goibibo Interview Questions
4.3
 • 6 Interviews
View all

Agoda Reviews and Ratings

based on 37 reviews

3.6/5

Rating in categories

3.4

Skill development

3.5

Work-life balance

3.9

Salary

3.4

Job security

3.6

Company culture

3.1

Promotions

3.4

Work satisfaction

Explore 37 Reviews and Ratings
Associate/Engineering Manager Fullstack

Gurgaon / Gurugram

5-7 Yrs

Not Disclosed

Customer Service Specialist - English (Gurugram)

Gurgaon / Gurugram

1-5 Yrs

Not Disclosed

Customer Experience Specialist - English (Gurugram)

Gurgaon / Gurugram

1-5 Yrs

Not Disclosed

Explore more jobs
Software Engineer
31 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
28 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Product Manager
10 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Engineering Manager
9 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Strategic Account Manager
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Agoda with

MakeMyTrip

3.7
Compare

Yatra

3.4
Compare

Cleartrip

3.4
Compare

Oyo Rooms

3.3
Compare
Did you find this page helpful?
Yes No
write
Share an Interview