Upload Button Icon Add office photos

Filter interviews by

Agoda Software Developer Interview Questions and Answers

Updated 2 Mar 2024

Agoda Software Developer Interview Experiences

1 interview found

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

I applied via LinkedIn and was interviewed before Mar 2023. There were 2 interview rounds.

Round 1 - Coding Test 

LRU Cache and Basic String question.

Round 2 - Technical 

(1 Question)

  • Q1. System Design. and OS knowledge

Interview Preparation Tips

Interview preparation tips for other job seekers - Leetcode Medium & System Design style

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Aptitude Test 

General reasoning and Mathmatics Aptitude

Round 3 - Technical 

(1 Question)

  • Q1. Core Java and Coding questions

Interview Preparation Tips

Topics to prepare for Yatra Software Engineer interview:
  • Core Java
  • Advanced Java
  • SQL

I applied via Recruitment Consulltant and was interviewed in May 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 
Round 2 - Technical 

(1 Question)

  • Q1. What are the types of data.
  • Ans. 

    Types of data include numerical, categorical, ordinal, and binary.

    • Numerical data includes continuous and discrete values, such as height and age.

    • Categorical data includes non-numeric values, such as colors and types of fruit.

    • Ordinal data includes values with a specific order, such as rankings and ratings.

    • Binary data includes only two possible values, such as true/false and yes/no.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn the basic concepts of data structures. Data structures are must. And be true to your resume, don't mention the things you have no idea about.

Skills evaluated in this interview

I applied via Approached by Company and was interviewed in Mar 2022. There were 3 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 - One-on-one 

(1 Question)

  • Q1. Core : DBMS , oops in depth coding: basic DSA questions based on Arrays, String.
Round 3 - One-on-one 

(1 Question)

  • Q1. He asked me graph questions ( medium level ) based on a node to root, and min cost to target. note: if you really want to crack the yata.com interview practice graph question and they ask a leetcode questi...

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. focus on dsa (graph) for the yatra.com
2. clear your oops concept.
3. clear your DBMS concept.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

The assessment will include fundamental quantitative mathematics, a few output-based questions, query questions, and two coding questions.

Round 2 - One-on-one 

(1 Question)

  • Q1. How can you print the output when 1 is added to a given input number?
  • Ans. 

    You can print the output by adding 1 to the given input number and displaying the result.

    • Create a variable to store the input number.

    • Add 1 to the input number.

    • Print the result of the addition.

  • Answered by AI
Interview experience
1
Bad
Difficulty level
-
Process Duration
4-6 weeks
Result
-

I applied via Referral

Round 1 - Technical 

(1 Question)

  • Q1. Coding Question and resume based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - They keep rescheduling interviews, and the interviewers do not arrive on time. Occasionally, they do not even join the call. If you do not have the time to conduct interviews, then do not waste the candidate's time. Even the interviewer mentioned that they have a hectic work culture.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. To find the kth minimum element from BST
  • Ans. 

    To find the kth minimum element from a Binary Search Tree (BST)

    • Perform an in-order traversal of the BST to get elements in sorted order

    • Return the kth element from the sorted list

    • Time complexity: O(n) where n is the number of nodes in the BST

  • Answered by AI
  • Q2. Basic OOPs question like inheritance encapsulation
Round 2 - Technical 

(2 Questions)

  • Q1. In a BST two numbers are swapped find swapped nos.
  • Ans. 

    To find swapped numbers in a BST, perform inorder traversal and keep track of previous node.

    • Perform inorder traversal of the BST

    • Keep track of the previous node while traversing

    • If at any point, the current node's value is less than the previous node's value, those are the swapped numbers

  • Answered by AI
  • Q2. What you did in college projects
Round 3 - One-on-one 

(2 Questions)

  • Q1. Puzzles: find the fastest 3 horses in 25 horse race with a race and 5 horses can be run at a time
  • Q2. Weakness and strength. how a friend will describe you

Interview Preparation Tips

Topics to prepare for Ixigo.com Software Engineer interview:
  • java
  • dsa
  • puzzle
  • tree
Interview preparation tips for other job seekers - DSA and system design are needed

Skills evaluated in this interview

I applied via Other and was interviewed in Sep 2018. There were 3 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. As position was for UI developer. So first round was majorly based on HTML and CSS. They were checking the basic concepts.
  • Q2. Questions from JavaScript. Major JavaScript concepts and logical questions.
  • Q3. Main focus was on data structure, travel domain knowledge and optimisation techniques.
  • Q4. Main purpose of this round was to check how updated a person is with new technologies, his willingness to learn new things and attitude towards work.
  • Q5. General discussion and salary negotiation.

Interview Preparation Tips

General Tips: Focus on Data structures.
Skills: GIT, Css, HTML, JavaScript, Communication
Duration: <1 week

I applied via LinkedIn and was interviewed in Mar 2021. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Print right view of a tree.
  • Ans. 

    Print the rightmost nodes of a binary tree.

    • Traverse the tree in a depth-first manner, starting from the right child of each node.

    • Use a queue to keep track of the nodes to be visited.

    • Add the rightmost node of each level to the result array.

  • Answered by AI
  • Q2. Garbage Collector in c#
  • Ans. 

    Garbage Collector in C# manages memory allocation and deallocation automatically.

    • Garbage Collector is responsible for freeing up memory that is no longer in use.

    • It runs in the background and periodically checks for unused objects.

    • GC.SuppressFinalize() method can be used to prevent the finalizer from running.

    • GC.Collect() method can be used to force garbage collection.

    • GC.GetTotalMemory() method can be used to get the tot

  • Answered by AI
  • Q3. Find who all are mutual connections.

Interview Preparation Tips

Interview preparation tips for other job seekers - There were 4 rounds in total, 3 technical and one culture fit round
Round 1:
CS Basics, few graph and linked list questions
Was asked to design a url shortner which would be working on scale and few modifications on that as well.
Round 2:
Got questions on HLD & LLD. This round was more about my understanding of how compiler and languages work
Round 3:
Managerial Round, This was taken by Engineering Manager who was checking my knowledge with different systems and at what level I have worked with distributed systems and microsevices.
Round 4:
Normal HR round, and I was asked on how will much I'll rate myself on each of the interviews and what went wrong and what went well.

Selected.

Skills evaluated in this interview

Round 1 - Coding Test 

Questions on graph, arrays, strings.

Round 2 - Technical 

(1 Question)

  • Q1. Quick sort, pair sum, web page design, oops , DBMS, sql
Round 3 - Technical 

(1 Question)

  • Q1. SQL, DBMS ,project explaination , stock buy and sell question , string operation question, oops
Round 4 - HR 

(1 Question)

  • Q1. Puzzle- binary search related, left view of binary tree, web page design , hr questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on oops, SQL, DBMS and data structures and algorithms.

Agoda Interview FAQs

How many rounds are there in Agoda Software Developer interview?
Agoda interview process usually has 2 rounds. The most common rounds in the Agoda interview process are Coding Test and Technical.

Tell us how to improve this page.

Agoda Software Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Agoda Software Developer Salary
based on 6 salaries
₹15 L/yr - ₹31.8 L/yr
205% more than the average Software Developer Salary in India
View more details
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