Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Ixigo.com Team. If you also belong to the team, you can get access from here

Ixigo.com Verified Tick

Compare button icon Compare button icon Compare
3.7

based on 58 Reviews

Filter interviews by

Ixigo.com Interview Questions, Process, and Tips

Updated 4 Dec 2024

Top Ixigo.com Interview Questions and Answers

View all 17 questions

Ixigo.com Interview Experiences

Popular Designations

21 interviews found

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

I applied via AmbitionBox

Round 1 - One-on-one 

(5 Questions)

  • Q1. TELL ME ABOUT OF YOURSELF
  • Ans. 

    Experienced customer executive with a passion for delivering exceptional service and building strong relationships.

    • Over 5 years of experience in customer service roles

    • Skilled in resolving customer complaints and issues effectively

    • Strong communication and interpersonal skills

    • Proven track record of exceeding customer satisfaction goals

    • Passionate about providing personalized service to each customer

  • Answered by AI
  • Q2. WHY DO YOU WANT THIS JOB
  • Ans. 

    I am passionate about providing excellent customer service and believe this job aligns with my skills and values.

    • I have a strong background in customer service and enjoy helping others

    • I am excited about the opportunity to work with a reputable company like yours

    • I am confident that my communication and problem-solving skills will make me an asset to your team

  • Answered by AI
  • Q3. WHAT ARE YOUR STRENGTHS
  • Ans. 

    My strengths include excellent communication skills, problem-solving abilities, and a strong customer focus.

    • Excellent communication skills - able to effectively communicate with customers and colleagues

    • Strong problem-solving abilities - can quickly identify and resolve issues to ensure customer satisfaction

    • Customer focus - always prioritize the needs and satisfaction of customers

    • Adaptability - able to quickly adjust to

  • Answered by AI
  • Q4. WHAT ARE YOUR WEAKNESSES
  • Ans. 

    I tend to be overly critical of my own work, which can sometimes lead to perfectionism.

    • I have a tendency to overthink and second-guess my decisions

    • I can be too self-critical and have high expectations for myself

    • I sometimes struggle with delegating tasks to others out of fear that they won't meet my standards

  • Answered by AI
  • Q5. WHAT IS YOUR SALARYEXPECTATIONS
  • Ans. 

    I am looking for a competitive salary based on my experience and skills.

    • Research industry standards for similar roles

    • Consider cost of living in the area

    • Factor in benefits and perks offered by the company

    • Be prepared to negotiate based on your value to the company

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Having a clear idea of your brand image can help you find the right opportunities for personal and professional development growth.
Job search platform can help you streamline your job search processes

Customer Executive Interview Questions asked at other Companies

Q1. How to gain in Pepsi share growth
View answer (29)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Jul 2024. There were 4 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Questions about past experience
  • Q2. Questions about ML Basics, DL basics
Round 2 - Technical 

(2 Questions)

  • Q1. Questions about past research, I had published papers, the interviewer asked me how I can improve/build on that research
  • Q2. Open ended questions on Machine Learning, Deep Learning core concepts like gradient descents and momentum etc.
Round 3 - Technical 

(2 Questions)

  • Q1. Coding proficiency, data manipulation, statistics
  • Q2. Questions about how to improve on past problem statements
Round 4 - Technical 

(2 Questions)

  • Q1. Open ended case studies and ML system design
  • Q2. Behavioural questions, scenario based

Research Engineer Interview Questions asked at other Companies

Q1. Why did you use such a high degree polynomial fit?
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(5 Questions)

  • Q1. Types of primitives in JS
  • Ans. 

    Primitives in JS are data types that are not objects and are immutable.

    • Types of primitives in JS include string, number, boolean, null, undefined, and symbol.

    • Primitives are passed by value, not by reference.

    • Examples: 'hello' (string), 42 (number), true (boolean), null, undefined, Symbol('foo')

  • Answered by AI
  • Q2. Difference between inline and block elements
  • Ans. 

    Inline elements do not start on a new line and only take up as much width as necessary, while block elements start on a new line and take up the full width available.

    • Inline elements do not start on a new line

    • Block elements start on a new line

    • Inline elements only take up as much width as necessary

    • Block elements take up the full width available

  • Answered by AI
  • Q3. Techniques to optimise list rendering? List virtualisation
  • Ans. 

    List virtualisation optimises rendering by only rendering items that are currently visible on the screen.

    • Use virtual scrolling to render only the visible items in a list

    • Implement windowing techniques to dynamically load and unload items as the user scrolls

    • Utilize libraries like React Virtualized or Angular CDK Virtual Scroll for efficient list rendering

  • Answered by AI
  • Q4. Output question: typeof Symbol
  • Q5. Difference between pseudo elements and pseudo classes
  • Ans. 

    Pseudo elements are used to style specific parts of an element, while pseudo classes are used to style an element based on its state or position.

    • Pseudo elements are denoted by :: before the element name, like ::before or ::after

    • Pseudo classes are denoted by a single colon before the class name, like :hover or :active

    • Pseudo elements are used to style parts of an element that do not exist in the DOM, like adding content ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep basics clear

Skills evaluated in this interview

Senior UI Engineer Interview Questions asked at other Companies

Q1. Techniques to optimise list rendering? List virtualisation
View answer (1)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Around asynchronous programming specifically in ios, design patterns, memory management?

IOS Developer Interview Questions asked at other Companies

Q1. 1 - MVC PATTERN 2- CLOUSERS & it's type 3- Google SDK like Google maps 3- How u manage the constraints of any label , stick at every corner & center of view controller, when getting data from json.
View answer (1)

Ixigo.com interview questions for popular designations

 Business Analyst

 (1)

 Calling Agent

 (1)

 Customer Executive

 (1)

 Front end Engineer

 (1)

 Full Stack Developer

 (1)

 IOS Developer

 (1)

 Java Developer

 (1)

 React Js Frontend Developer

 (1)

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

(2 Questions)

  • Q1. Create a counter component with button to start and stop timer every second and reset button.
  • Ans. 

    Create a counter component with start, stop, and reset buttons for a timer.

    • Create a state variable to store the current count

    • Use setInterval to increment the count every second when the timer is started

    • Add buttons to start, stop, and reset the timer

    • Implement functions for starting, stopping, and resetting the timer

  • Answered by AI
  • Q2. Javascript questions on promises and async await

React Js Frontend Developer Interview Questions asked at other Companies

Q1. 1. What is difference between abstract class and interface ?
View answer (1)

Get interview-ready with Top Ixigo.com Interview Questions

Team Lead Interview Questions & Answers

user image Anonymous

posted on 29 Nov 2024

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

(2 Questions)

  • Q1. Array vs Linkelist
  • Q2. Linklist vs Array

Team Lead Interview Questions asked at other Companies

Q1. write a java program to get maxing profit by buying and selling a share from a given set of values (they will change the question after you give solution, like if consider buying only once and selling once they will say to buying multiple t... read more
View answer (3)

Jobs at Ixigo.com

View all

MLOps Interview Questions & Answers

user image Muzeeb ur Rehman

posted on 1 Aug 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Categorical enconding types
  • Q2. Assumptions of Linear regression? Randonforesrt? information gain?
  • Ans. 

    Assumptions and characteristics of linear regression, random forest, and information gain.

    • Assumptions of linear regression include linearity, independence, homoscedasticity, and normality of residuals.

    • Random forest is an ensemble learning method that builds multiple decision trees and merges them together to improve performance.

    • Information gain is a measure used in decision trees to determine the relevance of a feature...

  • Answered by AI

Skills evaluated in this interview

Front end Engineer interview

user image Coding Blocks

posted on 2 Dec 2021

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

Guestimates, sql questions

Round 2 - Coding Test 

Sql questions geeks for geeks

Interview Preparation Tips

Interview preparation tips for other job seekers - Not very tough on skillset but grilled on business cases

Business Analyst Interview Questions asked at other Companies

Q1. You have 10 boxes of balls (each ball weighing exactly10 gm) with one box with defective balls (each one of the defective balls weigh 9 gm). You are given an electronic weighing machine and only one chance at it. How will you find out which... read more
View answer (8)
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Cancelation code
  • Q2. Check commission

Interview Preparation Tips

Interview preparation tips for other job seekers - Make sure you have knowledge of Galileo

Travel Executive Interview Questions asked at other Companies

Q1. How will you convince your customer to buy from you while he/she is getting better deal from other company?
View answer (1)

Ixigo.com Interview FAQs

How many rounds are there in Ixigo.com interview?
Ixigo.com interview process usually has 2-3 rounds. The most common rounds in the Ixigo.com interview process are Technical, One-on-one Round and Resume Shortlist.
How to prepare for Ixigo.com 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 Ixigo.com. The most common topics and skills that interviewers at Ixigo.com expect are Javascript, Social Media, Python, Android and Management.
What are the top questions asked in Ixigo.com interview?

Some of the top questions asked at the Ixigo.com interview -

  1. Life cycle methods in react js, explain context API, advantages and disadvantag...read more
  2. puzzles: find the fastest 3 horses in 25 horse race with a race and 5 horses ca...read more
  3. Tell us about the Technical Knowledge you have about Linux and Networki...read more
How long is the Ixigo.com interview process?

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

Tell us how to improve this page.

Ixigo.com Interview Process

based on 12 interviews in last 1 year

Interview experience

3.8
  
Good
View more

People are getting interviews through

based on 11 Ixigo.com interviews
Company Website
Job Portal
Campus Placement
Referral
WalkIn
27%
27%
18%
18%
9%
1% candidates got the interview through other sources.
High Confidence
?
High Confidence means the data is based on a large number of responses received from the candidates.

Interview Questions from Similar Companies

Oyo Rooms Interview Questions
3.3
 • 224 Interviews
MakeMyTrip Interview Questions
3.7
 • 121 Interviews
Yatra Interview Questions
3.4
 • 31 Interviews
RedBus Interview Questions
4.2
 • 31 Interviews
EaseMyTrip.com Interview Questions
4.5
 • 23 Interviews
Cleartrip Interview Questions
3.4
 • 15 Interviews
TravelTriangle Interview Questions
3.8
 • 13 Interviews
Goibibo Interview Questions
4.3
 • 6 Interviews
trivago Interview Questions
4.2
 • 2 Interviews
View all

Ixigo.com Reviews and Ratings

based on 58 reviews

3.7/5

Rating in categories

3.3

Skill development

3.2

Work-Life balance

3.6

Salary & Benefits

3.2

Job Security

3.4

Company culture

3.2

Promotions/Appraisal

3.4

Work Satisfaction

Explore 58 Reviews and Ratings
Senior Team Lead/ Assistant Manager - Customer Experience

Bangalore / Bengaluru

2-7 Yrs

Not Disclosed

Assistant Manager: Media Sales

Kanpur,

Lucknow

4-6 Yrs

Not Disclosed

Explore more jobs
Software Engineer
36 salaries
unlock blur

₹7 L/yr - ₹20 L/yr

Software Developer
15 salaries
unlock blur

₹12 L/yr - ₹33 L/yr

Senior Software Engineer
15 salaries
unlock blur

₹13.2 L/yr - ₹38 L/yr

Software Engineer2
14 salaries
unlock blur

₹13.4 L/yr - ₹21 L/yr

Product Manager
14 salaries
unlock blur

₹11 L/yr - ₹36 L/yr

Explore more salaries
Compare Ixigo.com with

MakeMyTrip

3.7
Compare

Yatra

3.4
Compare

Cleartrip

3.4
Compare

Goibibo

4.3
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview