Upload Button Icon Add office photos

Filter interviews by

Traveloka Software Engineer Interview Questions and Answers

Updated 19 Aug 2024

Traveloka Software Engineer Interview Experiences

2 interviews found

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Job Portal and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Coding Test 

1. Slowest Key
2. Junggle Box
3. Kind of Sum

Round 2 - HR 

(2 Questions)

  • Q1. Tell me about your experiences
  • Ans. 

    I have experience working on various software projects in different industries.

    • Developed web applications using Java, Spring Boot, and Angular for a finance company

    • Worked on mobile app development using React Native for a healthcare startup

    • Implemented machine learning algorithms in Python for a data analytics project

  • Answered by AI
  • Q2. Why you interested to this position
  • Ans. 

    I am interested in this position because of my passion for software development and the opportunity to work on innovative projects.

    • Passion for software development

    • Opportunity to work on innovative projects

    • Desire to contribute to a dynamic team

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Stay humble
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
-

I was interviewed before Mar 2023.

Round 1 - Assignment 

LC Medium+ easy questions

Round 2 - Technical 

(1 Question)

  • Q1. LC : easy medium questions
Round 3 - Technical 

(1 Question)

  • Q1. Design (LLD)+ DSA
Round 4 - Technical 

(1 Question)

  • Q1. Manager discussion

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in TCS
Q3. Find the Duplicate Number Problem Statement Given an integer arra ... read more
Q4. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q5. Puzzle : 100 people are standing in a circle .each one is allowed ... read more

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Company Website and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. What is polymorphism?
  • Ans. 

    Polymorphism is the ability of a function or method to behave differently based on the object it is acting upon.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • There are two types of polymorphism: compile-time (method overloading) and runtime (method overriding).

    • Example: Inheritance allows a child class to override a method from its parent class, exhibiting polymorphic b

  • Answered by AI
  • Q2. How abstraction is implemented?
  • Ans. 

    Abstraction is implemented in software engineering by hiding unnecessary details and exposing only relevant information.

    • Abstraction is achieved through the use of abstract classes and interfaces in object-oriented programming.

    • It allows developers to focus on the essential aspects of a concept without getting bogged down in implementation details.

    • For example, in a car simulation program, the Car class may have abstract ...

  • Answered by AI
  • Q3. What is the difference between abstraction and Interface?
  • Ans. 

    Abstraction is hiding the implementation details while Interface is a contract that defines the methods that a class must implement.

    • Abstraction focuses on hiding the internal implementation details of a class, allowing the user to only see the necessary details.

    • Interface defines a contract that specifies the methods a class must implement, without providing the implementation details.

    • Abstraction can be achieved through...

  • Answered by AI
Round 2 - Behavioral interview 

(1 Question)

  • Q1. What is your motivation when you are working on same project alone for long period?
  • Ans. 

    My motivation when working on a project alone for a long period is the satisfaction of seeing my hard work come to fruition.

    • Setting small achievable goals to keep myself motivated

    • Taking breaks to avoid burnout and maintain productivity

    • Seeking feedback from others to stay motivated and improve my work

    • Reminding myself of the end goal and the impact my project will have

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. What is your salary expectation?
  • Ans. 

    My salary expectation is based on my experience, skills, and the market rate for Software Engineers in this region.

    • Research the average salary range for Software Engineers in the specific region or industry

    • Consider your level of experience, skills, and qualifications when determining your salary expectation

    • Be prepared to negotiate based on the company's offer and benefits package

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well and give interview as many as possible
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Coding Test 

There were 3 coding questions totally based on dsa- hard

Round 2 - Technical 

(2 Questions)

  • Q1. Vertical Traversal
  • Q2. Find the node with shortest distance
  • Ans. 

    Use Dijkstra's algorithm to find the node with the shortest distance in a graph.

    • Implement Dijkstra's algorithm to calculate the shortest distance from a starting node to all other nodes in the graph.

    • Select the node with the smallest distance that has not been visited yet as the current node.

    • Update the distances of neighboring nodes from the current node if the new distance is smaller than the previously recorded distan...

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Question based on oops
  • Q2. Question based on OS

Interview Preparation Tips

Interview preparation tips for other job seekers - BE good in technical and DSA

Skills evaluated in this interview

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

I applied via campus placement at Dronacharya College of Engineering, Gurgaon and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Three coding question

Round 2 - Aptitude Test 

Two technical questions based on strings and linked lists.

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic data structure and algorithms, along with communication skills.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. What is the difference between normal and arrow functions
  • Ans. 

    Arrow functions are more concise and have a lexical 'this' binding compared to normal functions.

    • Arrow functions do not have their own 'this' keyword, they inherit it from the parent scope.

    • Arrow functions do not have their own 'arguments' object.

    • Arrow functions cannot be used as constructors with 'new'.

    • Arrow functions are more concise and have implicit return when no curly braces are used.

  • Answered by AI
  • Q2. All basic JS Questions to cover Hoisting closure
  • Q3. They asked to show me an example using the API call
  • Q4. Difference between forEach and Map
  • Ans. 

    forEach is used to iterate over an array and perform a function on each element, while map creates a new array by applying a function to each element.

    • forEach does not return a new array, while map does

    • forEach does not modify the original array, while map creates a new array

    • forEach is used for side effects, while map is used for transformation

    • Example: forEach - array.forEach(item => console.log(item)), map - const newAr

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Cover JS basics

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Basic Java related questions, OOPs concepts
  • Q2. Write code for encryption of the code
Round 2 - One-on-one 

(2 Questions)

  • Q1. Java Related questions, also some system design-related questions
  • Q2. Show the abstraction and write code for function overriding
Round 3 - Behavioral 

(1 Question)

  • Q1. Normal questions related to projects and work ethics
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Not Selected

I applied via campus placement at SRM university (SRMU) and was interviewed in Jul 2024. There were 5 interview rounds.

Round 1 - Aptitude Test 

Psuedocode and 10 aptitude codes ,pure maths.fill the blank type

Round 2 - Coding Test 

First 2 basic code-i.Pattern ii.Fibnocii ,after clearing two then three will be 3 coding question-Standard Leetcode and GFG questions

Round 3 - Design Test 

(1 Question)

  • Q1. You need to Design Sql table mapping based on scenerio
Round 4 - Technical 

(1 Question)

  • Q1. About DSA,SQL,BASED ON UR RESSUME
Round 5 - HR 

(1 Question)

  • Q1. ABOUT LOCATION AND PACKAGE

Interview Preparation Tips

Interview preparation tips for other job seekers - Have Basic knowledge on SQL and dsa
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

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

Round 1 - Coding Test 

Write code to return the maximum profit by buying and selling stocks using available money

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Core Java concepts, oops fundamental, cloud, stream api, java 8 features, hashmap how it works, equals override contract
Round 2 - One-on-one 

(1 Question)

  • Q1. Java 8, multi threading, why lazy evaluation in stream api, internal working of hash map, overloading, overriding
Round 3 - Behavioral 

(1 Question)

  • Q1. Java basics prepare well

Traveloka Interview FAQs

How many rounds are there in Traveloka Software Engineer interview?
Traveloka interview process usually has 3 rounds. The most common rounds in the Traveloka interview process are Technical, Assignment and Coding Test.
How to prepare for Traveloka 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 Traveloka. The most common topics and skills that interviewers at Traveloka expect are Silicon, Agile, Computer science, Data Structures and Application Development.
What are the top questions asked in Traveloka Software Engineer interview?

Some of the top questions asked at the Traveloka Software Engineer interview -

  1. LC : easy medium questi...read more
  2. Design (LLD)+ ...read more

Tell us how to improve this page.

Traveloka Software Engineer Interview Process

based on 2 interviews

Interview experience

4.5
  
Good
View more

Software Engineer Interview Questions from Similar Companies

View all
Traveloka Software Engineer Salary
based on 13 salaries
₹10 L/yr - ₹22 L/yr
68% more than the average Software Engineer Salary in India
View more details
Software Engineer
13 salaries
unlock blur

₹10 L/yr - ₹22 L/yr

Senior Software Engineer
7 salaries
unlock blur

₹17 L/yr - ₹31 L/yr

Software Developer
5 salaries
unlock blur

₹6.5 L/yr - ₹14 L/yr

Lead Engineer
4 salaries
unlock blur

₹35 L/yr - ₹44 L/yr

Security Engineer
4 salaries
unlock blur

₹12 L/yr - ₹25.6 L/yr

Explore more salaries
Compare Traveloka with

MakeMyTrip

3.7
Compare

Cleartrip

3.4
Compare

Yatra

3.4
Compare

Goibibo

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