Upload Button Icon Add office photos

Filter interviews by

Clear (1)

Agoda Senior Software Engineer Interview Questions and Answers

Updated 8 Nov 2024

Agoda Senior Software Engineer Interview Experiences

6 interviews found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. Questions on Array and binary search
  • Q2. General frontend specific questions
  • Q3. HR related questions
Interview experience
4
Good
Difficulty level
Easy
Process Duration
4-6 weeks
Result
No response

I was interviewed in Sep 2024.

Round 1 - Coding Test 

Sliding window problem

Round 2 - Technical 

(1 Question)

  • Q1. Design leaderboard

Senior Software Engineer Interview Questions Asked at Other Companies

asked in DBS Bank
Q1. Tell me about yourself. What technology are you using? What is a ... read more
asked in GlobalLogic
Q2. MapSum Pair Implementation Create a data structure named 'MapSum' ... read more
asked in UST
Q3. Nth Prime Number Problem Statement Find the Nth prime number give ... read more
asked in Capgemini
Q4. Pascal's Triangle Construction You are provided with an integer ' ... read more
Q5. K Largest Elements Problem Statement You are given an integer k a ... read more
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I was interviewed in Aug 2024.

Round 1 - Coding Test 

Question was around - given a string - return the lexicographically smallest pallindrome after performing the following operations -
You can change minimum number of chars to form pallindrome
You can permuate the string

Senior Software Engineer Interview Questions & Answers

user image Ashish Kumar Gupta

posted on 3 Apr 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Design Hotel Reservation System
  • Ans. 

    Design a Hotel Reservation System to manage bookings and availability of rooms.

    • Create a database to store information about rooms, bookings, and availability.

    • Implement a user interface for customers to search for available rooms and make reservations.

    • Include features for managing room rates, room types, and customer preferences.

    • Develop a system for handling cancellations, modifications, and refunds.

    • Integrate payment pr

  • Answered by AI
Round 2 - Coding Test 

2 Leetcode questions asked.
1st - medium level: Max capacity of ship required, given the total load of packages
2nd - easy level: Max profit by buying and selling stocks

Interview Preparation Tips

Interview preparation tips for other job seekers - Decent practice of coding questions and good knowledge of system design is required.

Skills evaluated in this interview

Agoda interview questions for designations

 Software Engineer

 (3)

 Lead Software Engineer

 (2)

 Staff Software Engineer

 (1)

 Software Developer

 (1)

 Full Stack Software Developer

 (1)

 Software Development Staff Engineer

 (1)

 Staff Engineer

 (4)

 Lead Engineer

 (1)

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Design Inventory management system
  • Ans. 

    Design a system to track and manage inventory of products efficiently.

    • Utilize a database to store product information, quantities, and locations.

    • Implement barcode scanning for easy tracking and updating of inventory levels.

    • Include features for setting reorder points and generating purchase orders.

    • Create user roles and permissions for managing inventory.

    • Integrate with a point of sale system for real-time updates on prod

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. Past experiences

Interview questions from similar companies

Interview Preparation Tips

Round: Test
Experience: 1. Rotate a matrix by 90 degrees clockwise.( He asked me have you heard of question.I said Yes.Then he asked me to code)2. Find vertical sum of nodes present in same vertical line in binary tree. ( He again asked me have you heard of question. I have heard it but didn’t remember the approach. It took some time and then I started telling my approach.He aasked me to write code and question regarding get sums from left to right , for which I made use of linked hashmap)
Overall It was very cool for me
Total Questions: 2

Round: Test
Experience: 1.Reverse K blocks of nodes in linked list.There are two interviewers this time, probably, guy was senior he was asking me question.He was very particular in coding. Checked every edge case.and asked me evrything.Initially I told the approach and then started coding.2.Find min in stack in O(1)Pretty straightforward written code.Again he checked all edge cases with my code.3. Then asked about counting sort and its code.4. And a simple question on array sorting.

Round: HR Interview
Experience: I thought this was last round as they have said like.She asked me about my strengths and challenges I faced.How I overcame through it1.Basic question on oops concepts.(runtime polymorphism).
2.Design tables for getting all employees under manager. I screwed it little bit.But some how I got answer which I was not satisfied as well.I was expecting result either yes/no.But they called me for another round of interview may be because of my expected salary which was high compared to my previous.

Round: Technical Interview
Experience: 1.Given “aaabbbccc” it should return “a3b3c3″ in place. Initially I explained brute force approach then he said array has 2n space.I was able to remember approach for quicksort and started explaining after which I grew confident on it.He was satisfied.Questions on time complexity of algo and space complexity discussions.2.Again a question on OOPs.This time I was completely wrong in answering it.I thought interview with yatra was closing for me.He was not satisified much with this.Luckily, there was another round with manager.

Round: Other Interview
Experience: 1.He asked me to find words which are having particular pattern.Then I said it was KMP algo. Can I explain it ?? I started explaining approach, may be he was busy with something, he asked me to write pseudo code.He left the room for 15 mins then he came back I had almost completed the code, which he was satisified.Some basic questions on spring ( my previous work was related to it). Then my expected salary and my position If I got selected in yatra were discussed.

College Name: NA
Round 1 - Technical 

(1 Question)

  • Q1. Basics of android and java
Round 2 - Coding Test 

Ds related questions

Round 3 - Technical 

(1 Question)

  • Q1. All Android (Java and kotlin)
Round 4 - Behavioral 

(1 Question)

  • Q1. Past projects,android,kotlin
Round 5 - HR 

(1 Question)

  • Q1. About Salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared if you want to join in yatra

I was interviewed in Aug 2021.

Round 1 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

Timing was fine - It was in the afternoon
Interviewer was friendly and helpful

  • Q1. 

    Find Duplicates in an Array

    Given an array ARR of size 'N', where each integer is in the range from 0 to N - 1, identify all elements that appear more than once.

    Return the duplicate elements in any orde...

  • Ans. 

    Find duplicates in an array of integers within a specified range.

    • Iterate through the array and keep track of the count of each element using a hashmap.

    • Return elements with count greater than 1 as duplicates.

    • Handle edge cases like empty array or no duplicates found.

    • Example: For input [0, 3, 1, 2, 3], output should be [3].

  • Answered by AI
Round 2 - Coding Test 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

- Timing was fine - Afternoon
- Interviewer was friendly

  • Q1. How would you design a caching library?
  • Ans. 

    Designing a caching library involves considering data storage, retrieval, expiration policies, and cache invalidation strategies.

    • Define the caching requirements such as data size, access patterns, and expiration policies.

    • Choose a suitable data structure for caching like LRU, LFU, or a simple key-value store.

    • Implement cache eviction policies to handle memory constraints and optimize performance.

    • Consider thread safety an...

  • Answered by AI
Round 3 - Face to Face 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

- Timing was fine - Afternoon
- Interviewer was friendly

  • Q1. What is the number of edges in a 10x10 cube?
  • Ans. 

    A 10x10 cube has 600 edges.

    • A cube has 12 edges, so a 10x10 cube would have 12 edges on each of its 6 faces.

    • 12 edges x 6 faces = 72 edges for the entire cube.

    • However, each edge is shared by two faces, so we need to divide by 2 to get the total number of unique edges.

    • 72 edges / 2 = 36 unique edges on the outer surface of the cube.

    • Since the cube has 10x10x10 = 1000 unit cubes, each with 12 edges, we need to subtract the e...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Senior Software Engineer in GurgaonEligibility criteriaGood professional experienceixigo interview preparation:Topics to prepare for the interview - iOS Development, Software Architecture, Protocol Oriented programming, System Design, Data StructuresTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Be confident
Tip 2 : Be always ready for white board coding
Tip 3 : Brush up your basics

Application resume tips for other job seekers

Tip 1 : Resume should not be more than 1 page long
Tip 2 : Write down your technical skills, Frameworks

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. I interviewed for Qlikview Team, So most questions were regarding qlikview.
  • Q2. Some questions were regarding SQL also.
Contribute & help others!
anonymous
You can choose to be anonymous

Agoda Interview FAQs

How many rounds are there in Agoda Senior Software Engineer interview?
Agoda interview process usually has 1-2 rounds. The most common rounds in the Agoda interview process are Technical, Coding Test and HR.
How to prepare for Agoda Senior Software Engineer 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 Python, Agile, Analytics, Android and Automation.
What are the top questions asked in Agoda Senior Software Engineer interview?

Some of the top questions asked at the Agoda Senior Software Engineer interview -

  1. Design Hotel Reservation Sys...read more
  2. Design Inventory management sys...read more
  3. Questions on Array and binary sea...read more

Recently Viewed

SALARIES

Jabil Circuit India

INTERVIEWS

Jabil Circuit India

No Interviews

JOBS

Jabil Circuit India

No Jobs

JOBS

Jabil Circuit India

No Jobs

SALARIES

Welspun Enterprises

INTERVIEWS

Bosch Power Tools

No Interviews

SALARIES

Futures First info Services

No Salaries

SALARIES

Welspun Enterprises

SALARIES

Jabil Circuit India

SALARIES

Oracle

Tell us how to improve this page.

Agoda Senior Software Engineer Interview Process

based on 6 interviews

1 Interview rounds

  • Technical Round
View more
Agoda Senior Software Engineer Salary
based on 28 salaries
₹25 L/yr - ₹74 L/yr
225% more than the average Senior Software Engineer Salary in India
View more details

Agoda Senior Software Engineer Reviews and Ratings

based on 3 reviews

2.6/5

Rating in categories

2.5

Skill development

2.5

Work-life balance

3.9

Salary

2.5

Job security

3.5

Company culture

3.0

Promotions

2.2

Work satisfaction

Explore 3 Reviews and Ratings
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.6
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