Upload Button Icon Add office photos
Engaged Employer

i

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

Goibibo Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Goibibo Interview Questions, Process, and Tips

Updated 10 Oct 2024

Top Goibibo Interview Questions and Answers

View all 17 questions

Goibibo Interview Experiences

Popular Designations

6 interviews found

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

(2 Questions)

  • Q1. Sdlc life cycle
  • Q2. Vapt question va and pt

Senior Consultant Interview Questions asked at other Companies

Q1. 1. What's the use of update sets and how do you move update set from one instance to another? Once you imported the update set, what will you do? To check the customisations, You need to do open the update set and do something. What is that... read more
View answer (3)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 - Group Discussion 

Asked a topic on the importance of education vs experience

Round 3 - HR 

(2 Questions)

  • Q1. Resume pointers, questions from the resume
  • Q2. HR asked about the company profile

Interview Preparation Tips

Interview preparation tips for other job seekers - Read about the company before the HR round so that you will be prepared about the questions on company's profile

Customer Executive Interview Questions asked at other Companies

Q1. How to gain in Pepsi share growth
View answer (29)
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 - Case Study 

Customer related case study nothing very serious. Situation based

Round 3 - HR 

(2 Questions)

  • Q1. Asked questions About the company and how you are ideal person for the company
  • Q2. They have asked about your education and then about company

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident...improve your skills as much as you can.... communication skilla are important

Customer Service Executive Interview Questions asked at other Companies

Q1. How u deal to the customer if he get non veg food instead of veg food ?
View answer (35)

I applied via Naukri.com and was interviewed in Oct 2019. There were 5 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. To provide a business model to setup a Uber cab services from scratch where Ola has already been established and has a strong customer base.
  • Q2. How to penetrate the market? How to attract the drivers from Ola? What's the business model?
  • Ans. 

    To penetrate the market and attract drivers from Ola, a business model focused on competitive pricing, driver incentives, and superior customer experience can be implemented.

    • Offer competitive pricing to attract drivers from Ola

    • Provide attractive incentives and benefits for drivers to switch

    • Focus on delivering a superior customer experience

    • Leverage technology and data analytics to optimize operations and improve efficie...

  • Answered by AI
  • Q3. SQL and SAS

Interview Preparation Tips

Interview preparation tips for other job seekers - It was a good experience and they were looking for approach and confidence more than the exact code. There were 5 rounds in total.

Business Intelligence Analyst Interview Questions asked at other Companies

Q1. What features do I know about Tableau desktop, Tableau prep and Tableau Server?
View answer (1)

Goibibo interview questions for popular designations

 Business Intelligence Analyst

 (1)

 Customer Executive

 (1)

 Customer Service Executive

 (1)

 Revenue Analyst

 (1)

 Senior Consultant

 (1)

 Software Developer

 (1)

I applied via LinkedIn and was interviewed before Sep 2019. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Suppose there is a proposal to run a campaign on any one platform (amongst iOS, Android and Desktop). The offer runs for 8 hours on a particular user base. How will you calculate the impact of the offer
  • Ans. 

    To calculate the impact of an offer running on a platform for 8 hours on a user base, we need to analyze the revenue generated during and after the campaign.

    • Analyze revenue generated during the 8-hour campaign period

    • Compare revenue generated during the campaign period to revenue generated during a similar time period without the campaign

    • Analyze revenue generated after the campaign period to determine if there was a las...

  • Answered by AI
  • Q2. You see that the market share has gone down. How will you go about identify the root cause and what will be your sample solution
  • Ans. 

    To identify the root cause of market share decline, I will analyze market trends, customer behavior, and competitor strategies.

    • Conduct market research to identify trends and changes in customer preferences

    • Analyze sales data to identify patterns and potential causes of decline

    • Assess competitor strategies and market positioning

    • Consider external factors such as economic conditions and industry regulations

    • Develop a sample ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Maintain a calm and logical approach to the situations brought in front of you.

Revenue Analyst Interview Questions asked at other Companies

Q1. You see that the market share has gone down. How will you go about identify the root cause and what will be your sample solution
View answer (1)

Interview Questionnaire 

17 Questions

  • Q1. Find if a string is substring of other string
  • Ans. 

    The function checks if a string is a substring of another string.

    • Use the built-in string methods like 'indexOf' or 'includes' to check for substring.

    • If the language supports regular expressions, you can also use them to find substrings.

    • Consider the case sensitivity of the strings when comparing.

  • Answered by AI
  • Q2. Write a code to multiply two matrices of dimension M*N and N*K
  • Ans. 

    Code to multiply two matrices of dimension M*N and N*K.

    • Create a result matrix of dimension M*K.

    • Iterate through each row of the first matrix.

    • For each row, iterate through each column of the second matrix.

    • For each element in the row of the first matrix, multiply it with the corresponding element in the column of the second matrix.

    • Sum up the products and store the result in the corresponding position of the result matrix.

    • ...

  • Answered by AI
  • Q3. Write a Sql to perform Matrix Multiplication.Two tables has three columns row,col and value
  • Ans. 

    SQL query to perform matrix multiplication using two tables with row, col, and value columns.

    • Use JOIN operation to combine the two tables based on matching row and col values.

    • Use GROUP BY clause to group the result by row and col values.

    • Use SUM function to calculate the dot product of corresponding row and col values.

    • Use INSERT INTO statement to insert the result into a new table.

  • Answered by AI
  • Q4. What is prototype in javascript?
  • Ans. 

    Prototype in JavaScript is an object that is associated with every function and object by default.

    • Prototype is used to add properties and methods to an object.

    • It allows objects to inherit properties and methods from other objects.

    • Modifying the prototype of a function affects all instances of that function.

    • Prototypes can be used to create new objects based on existing objects.

    • The prototype chain allows for property and

  • Answered by AI
  • Q5. How do we write classes in javascript?
  • Ans. 

    Classes in JavaScript are written using the class keyword.

    • Use the class keyword followed by the class name to define a class.

    • Use the constructor method to initialize class properties.

    • Add methods to the class using the class prototype.

    • Use the new keyword to create an instance of the class.

  • Answered by AI
  • Q6. There is a ladder of N steps.We can either take 1 step or 2 steps.In how many different ways one can climb the ladder?
  • Ans. 

    The number of different ways to climb a ladder of N steps by taking 1 or 2 steps at a time.

    • This is a classic problem that can be solved using dynamic programming.

    • The number of ways to climb N steps is equal to the sum of the number of ways to climb N-1 steps and N-2 steps.

    • The base cases are when N is 0 or 1, where there is only 1 way to climb the ladder.

    • For example, for N=4, there are 5 different ways: [1, 1, 1, 1], [1

  • Answered by AI
  • Q7. Print a square matrix in spiral order
  • Ans. 

    Print a square matrix in spiral order

    • Start by defining the boundaries of the matrix

    • Iterate through the matrix in a spiral pattern, printing each element

    • Adjust the boundaries after each iteration to move inward

    • Repeat until all elements are printed

  • Answered by AI
  • Q8. Given a table with 3 columns StudentName,Subject and Marks.Write a sql to retrieve second highest Marks Obtained for each student
  • Ans. 

    Retrieve the second highest marks obtained by each student from a table with student name, subject, and marks.

    • Use the RANK() function to assign a rank to each row based on the marks in descending order.

    • Filter the result to only include rows with rank 2 for each student.

    • Group the result by student name to get the second highest marks for each student.

  • Answered by AI
  • Q9. Given a Website with header,footer,side ads(Google ads,Internal ads).How will you extract only useful data from the page
  • Q10. Difference between .live() and .delegate() in jquery
  • Ans. 

    The .live() method attaches an event handler to the current and future elements, while .delegate() attaches an event handler to a parent element.

    • The .live() method is deprecated in newer versions of jQuery.

    • The .delegate() method is preferred over .live() for performance reasons.

    • Both methods are used to handle events for dynamically added elements.

    • Example: $(document).live('click', 'button', function() { ... });

    • Example:...

  • Answered by AI
  • Q11. What is chaining in jquery?
  • Ans. 

    Chaining in jQuery allows multiple methods to be called on a single element in a single line of code.

    • Chaining simplifies code and improves readability.

    • Each method in the chain operates on the result of the previous method.

    • The chain ends with a method that does not return a jQuery object.

    • Example: $('div').addClass('highlight').fadeOut();

  • Answered by AI
  • Q12. What is callback function?
  • Ans. 

    A callback function is a function that is passed as an argument to another function and is executed later.

    • Callback functions are commonly used in event-driven programming.

    • They allow asynchronous execution of code.

    • Callback functions can be used to handle responses from APIs or user interactions.

    • They can be anonymous functions or named functions.

    • Example: setTimeout(function() { console.log('Hello!'); }, 1000);

  • Answered by AI
  • Q13. What is .bind() function in jquery?
  • Ans. 

    The .bind() function in jQuery is used to attach an event handler function to one or more elements.

    • It allows you to specify the event type and the function to be executed when the event occurs.

    • The .bind() function can be used to bind multiple events to the same element.

    • It can also be used to pass additional data to the event handler function.

    • The .bind() function is deprecated in jQuery version 3.0 and above. It is reco

  • Answered by AI
  • Q14. Find the angle between hour handle and minute handle in a clock
  • Ans. 

    The angle between the hour and minute hands of a clock can be calculated using a formula.

    • The hour hand moves 30 degrees per hour and 0.5 degrees per minute.

    • The minute hand moves 6 degrees per minute.

    • Calculate the angle between the two hands using the formula: |30H - 11M/2|, where H is the hour and M is the minute.

  • Answered by AI
  • Q15. Is it possible to create slideshow without using javascript
  • Ans. 

    Yes, it is possible to create a slideshow without using JavaScript.

    • Use CSS animations and transitions to create the slideshow.

    • Use HTML and CSS to structure and style the slideshow.

    • Utilize keyframe animations to create the slide transitions.

    • Use radio buttons or checkboxes to control the slideshow navigation.

    • Apply the :target pseudo-class to create a simple slideshow without JavaScript.

  • Answered by AI
  • Q16. Questions about my current project and academic project
  • Q17. Given two points A and B with distance between them lets say D.there are N men who want to go from point A to point B.All men walk with same speed.They also have one scooter with them which has speed grea...
  • Ans. 

    The men can take turns riding the scooter, allowing them to reach point B faster.

    • The men can form a queue and take turns riding the scooter.

    • The person riding the scooter can drop it off at a certain point and the next person can pick it up.

    • The scooter can be passed along the line of men until everyone reaches point B.

  • Answered by AI

Interview Preparation Tips

Skills: Algorithm, Javascript
College Name: na

Skills evaluated in this interview

Top Goibibo Software Developer Interview Questions and Answers

Q1. Given two points A and B with distance between them lets say D.there are N men who want to go from point A to point B.All men walk with same speed.They also have one scooter with them which has speed greater than their walking speed.How can... read more
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (38)

Jobs at Goibibo

View all

Interview questions from similar companies

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

I applied via Campus Placement and was interviewed in Nov 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

The aptitude test consisted of a combination of three types of subjects: Quantitative, English, and Logical Reasoning. The difficulty level was challenging, and it would be beneficial to review the basics of the CAT exam.

Round 2 - Technical 

(6 Questions)

  • Q1. What is the SUBSTITUTE function in Excel, and how can it be used?
  • Ans. 

    The SUBSTITUTE function in Excel replaces a specific occurrence of a text string with another text string.

    • Syntax: SUBSTITUTE(text, old_text, new_text, instance_num)

    • text: The original text string where replacement will occur

    • old_text: The text string to be replaced

    • new_text: The text string to replace old_text with

    • instance_num: Optional parameter to specify which occurrence of old_text to replace

    • Example: =SUBSTITUTE("appl...

  • Answered by AI
  • Q2. What is a pivot table in Excel, and how can it be accessed and utilized?
  • Ans. 

    A pivot table in Excel is a data summarization tool that allows you to reorganize and summarize selected columns and rows of data.

    • Accessed by selecting the data range you want to analyze, then going to the 'Insert' tab and clicking on 'PivotTable'.

    • Utilized by dragging and dropping fields into the 'Rows', 'Columns', 'Values', and 'Filters' areas to organize and summarize data.

    • Can be used to quickly analyze large dataset...

  • Answered by AI
  • Q3. What are the differences between Tableau and Power BI, and which one is considered superior?
  • Ans. 

    Tableau and Power BI are both powerful data visualization tools, with Tableau being more user-friendly and Power BI offering better integration with Microsoft products.

    • Tableau is known for its user-friendly interface and ease of use for creating visually appealing dashboards.

    • Power BI offers better integration with Microsoft products such as Excel, SharePoint, and SQL Server.

    • Tableau is considered superior for its ease o...

  • Answered by AI
  • Q4. What is the process to sort the top 10 rows in Excel?
  • Ans. 

    To sort the top 10 rows in Excel, select the range of data, go to the Data tab, click on Sort, choose the column to sort by, select Top 10 from the options, and specify whether to sort in ascending or descending order.

    • Select the range of data containing the top 10 rows you want to sort.

    • Go to the Data tab in Excel.

    • Click on the Sort button.

    • Choose the column you want to sort by.

    • Select 'Top 10' from the 'Sort On' dropdown ...

  • Answered by AI
  • Q5. What is adjusted R-squared in descriptive statistics, and what information can be derived from it?
  • Ans. 

    Adjusted R-squared is a statistical measure that adjusts the R-squared value for the number of predictors in a regression model.

    • Adjusted R-squared takes into account the number of predictors in a regression model, providing a more accurate measure of the model's goodness of fit.

    • It penalizes the addition of unnecessary predictors, helping to prevent overfitting.

    • A higher adjusted R-squared value indicates a better fit of...

  • Answered by AI
  • Q6. What is correlation, and what conclusions can be drawn from it?
  • Ans. 

    Correlation is a statistical measure that describes the relationship between two variables.

    • Correlation can range from -1 to 1, with 0 indicating no correlation, 1 indicating a perfect positive correlation, and -1 indicating a perfect negative correlation.

    • A positive correlation means that as one variable increases, the other variable also tends to increase. For example, there is a positive correlation between studying h...

  • Answered by AI
Round 3 - Role Based 

(4 Questions)

  • Q1. What are the five stages of project?
  • Ans. 

    The five stages of a project are initiation, planning, execution, monitoring and controlling, and closing.

    • Initiation: Defining the project, its scope, objectives, and stakeholders.

    • Planning: Creating a detailed project plan, including tasks, timelines, resources, and budget.

    • Execution: Carrying out the project plan and completing the work.

    • Monitoring and Controlling: Tracking project progress, managing changes, and ensuri...

  • Answered by AI
  • Q2. What is the difference between a project manager and a product manager?
  • Ans. 

    Project managers focus on overseeing the execution of a specific project, while product managers are responsible for the overall strategy and development of a product.

    • Project managers are focused on the successful completion of a project within scope, budget, and time constraints.

    • Product managers are responsible for the strategic direction, development, and success of a product throughout its lifecycle.

    • Project managers...

  • Answered by AI
  • Q3. What are two limitations of food delivery apps that you believe need improvement?
  • Ans. 

    Limitations of food delivery apps that need improvement

    • Inaccurate delivery times leading to customer dissatisfaction

    • Limited restaurant options available on the app

    • Difficulty in customizing orders or making special requests

    • Issues with order accuracy and missing items

    • Lack of transparency in pricing and additional fees

  • Answered by AI
  • Q4. Can you provide a real-life example of a project where you led a team to successful completion?
  • Ans. 

    Led a team to successfully launch a new software application for a client

    • Developed project timeline and milestones

    • Assigned tasks to team members based on their strengths

    • Held regular team meetings to track progress and address any issues

    • Collaborated with client to ensure project met their expectations

    • Conducted thorough testing and quality assurance before final launch

  • Answered by AI
Round 4 - HR 

(5 Questions)

  • Q1. What is your place of domicile?
  • Ans. 

    I currently reside in a cozy apartment in downtown Seattle.

    • My place of domicile is in Seattle, Washington.

    • I live in a cozy apartment in downtown Seattle.

    • I have been a resident of Seattle for the past five years.

  • Answered by AI
  • Q2. Can you describe your family background and the members who live in your household?
  • Ans. 

    I come from a close-knit family with my parents and two siblings living in our household.

    • Close-knit family

    • Parents and two siblings

    • Living together in the same household

  • Answered by AI
  • Q3. Is the family income derived from a business or from job holders?
  • Ans. 

    Family income can be derived from both a business and job holders.

    • Family income can come from a business owned by a family member.

    • Family income can also come from salaries earned by family members from their jobs.

    • In some cases, family income may be a combination of income from both business and job holders.

    • Examples: A family may own a small business like a bakery and also have family members working in corporate jobs.

    • A...

  • Answered by AI
  • Q4. What is your motivation for choosing to work in the insurance industry?
  • Ans. 

    I am motivated to work in the insurance industry because of its stability, growth opportunities, and the chance to help individuals and businesses protect themselves financially.

    • Stability: Insurance is a stable industry that is less affected by economic downturns.

    • Growth opportunities: There are various career paths and opportunities for advancement within the insurance industry.

    • Helping others: Working in insurance allo...

  • Answered by AI
  • Q5. Are you willing to relocate to Bengaluru?
  • Ans. 

    Yes, I am willing to relocate to Bengaluru for the Project Manager position.

    • I am open to relocating for the right opportunity

    • I have experience working in different locations

    • I am excited about the prospect of working in Bengaluru

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Digit Insurance Project Manager interview:
  • SQL
  • Statistics
  • Power Bi
Interview preparation tips for other job seekers - You should thoroughly review the job description, prepare by studying the basics and areas of depth where you feel comfortable, and be ready to answer questions confidently.

lead execution Interview Questions & Answers

Zetwerk user image Anonymous

posted on 28 Feb 2025

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

I was interviewed before Feb 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. What is railways?
  • Q2. How many kinds of weldings are done in Railways?
Round 2 - HR 

(2 Questions)

  • Q1. How you are going through with the current company?
  • Q2. How many days of notice periode you have to serve in current company?
Round 3 - One-on-one 

(2 Questions)

  • Q1. How many years you are working with your current industry?
  • Q2. How is your experience in your current industry and what you learned there?
Round 4 - HR 

(1 Question)

  • Q1. Asking and negotiation about CTC!

Assistant Manager growth marketing Interview Questions & Answers

Swiggy user image Anonymous

posted on 14 Feb 2025

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

I was interviewed in Jan 2025.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself and workex, One campaign you are proud of and what you did, The interview lasted for 30 mins.
  • Q2. Why are you leaving your current company and details on that.
  • Ans. 

    Seeking new challenges and opportunities for growth.

    • Desire for new challenges and opportunities for growth

    • Looking for a company with better work-life balance

    • Seeking a role with more responsibility and leadership opportunities

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself, 2 digital campaigns that you did and what you learn from them, Logical question on bulb : 3 bulbs are in a room and it's switches are outside the room, and you can only enter the ro...
  • Q2. How many times does whatsapp application gets open in your household?
  • Ans. 

    WhatsApp is opened multiple times daily in my household for communication and sharing updates.

    • WhatsApp is opened multiple times daily for communication with family and friends

    • Used for sharing updates, photos, and videos

    • Helps in coordinating plans and staying connected with loved ones

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Structure your answers well, they analyse your thought process, analysis skills and observation

SDE2 - Android Interview Questions & Answers

Porter user image Anonymous

posted on 22 Feb 2025

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

I was interviewed in Jan 2025.

Round 1 - Technical 

(2 Questions)

  • Q1. Write clean code for api call and DB update and ui update LLD
  • Ans. 

    Design a clean code structure for API call, DB update, and UI update.

    • Separate concerns by creating separate classes or modules for API call, DB update, and UI update.

    • Use interfaces or abstract classes to define contracts for each component.

    • Implement error handling and data validation at each step.

    • Consider using asynchronous programming to prevent blocking the UI thread.

    • Use dependency injection to manage dependencies be

  • Answered by AI
  • Q2. Questions on Kotlin
Round 2 - Technical 

(3 Questions)

  • Q1. Machine coding related to multiple view type recycler view
  • Q2. Further discussion on callback lifecycles of adapter methods when & how many times they will be called
  • Q3. How to sync which item is shown to backend in recycler view using api call . How to optimise it
  • Ans. 

    Use a unique identifier for each item in the recycler view and send it to the backend via API calls. Optimize by batching API calls and implementing pagination.

    • Assign a unique identifier to each item in the recycler view, such as an ID or position

    • Send the unique identifier of the currently shown item to the backend through API calls

    • Optimize by batching API calls to reduce network overhead

    • Implement pagination to load da

  • Answered by AI
Round 3 - Cultural Fit with EM 

(1 Question)

  • Q1. Journey so far what you learned . Reasons for switching company , Incidents of conflicts with. manager
  • Ans. 

    I have learned a lot in my journey so far, leading to my decision to switch companies. I have had conflicts with managers in the past.

    • Learned new technologies and tools in current role

    • Developed strong problem-solving and communication skills

    • Decided to switch companies for career growth opportunities

    • Had conflicts with a manager due to differing opinions on project direction

  • Answered by AI

Goibibo Interview FAQs

How many rounds are there in Goibibo interview?
Goibibo interview process usually has 2-3 rounds. The most common rounds in the Goibibo interview process are HR, Resume Shortlist and Case Study.
How to prepare for Goibibo 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 Goibibo. The most common topics and skills that interviewers at Goibibo expect are B2B Sales, Business Development, Business Development Management, Key Account Management and Relationship Management.
What are the top questions asked in Goibibo interview?

Some of the top questions asked at the Goibibo interview -

  1. Given two points A and B with distance between them lets say D.there are N men ...read more
  2. There is a ladder of N steps.We can either take 1 step or 2 steps.In how many d...read more
  3. You see that the market share has gone down. How will you go about identify the...read more

Tell us how to improve this page.

Goibibo Interview Process

based on 4 interviews

Interview experience

4.5
  
Good
View more

Interview Questions from Similar Companies

Oyo Rooms Interview Questions
3.3
 • 227 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
 • 26 Interviews
Ixigo.com Interview Questions
3.7
 • 22 Interviews
Treebo Hotels Interview Questions
3.3
 • 22 Interviews
Cleartrip Interview Questions
3.4
 • 18 Interviews
TravelTriangle Interview Questions
3.8
 • 13 Interviews
trivago Interview Questions
4.2
 • 2 Interviews
View all

Goibibo Reviews and Ratings

based on 169 reviews

4.3/5

Rating in categories

4.1

Skill development

4.2

Work-life balance

4.0

Salary

4.3

Job security

4.4

Company culture

3.8

Promotions

4.1

Work satisfaction

Explore 169 Reviews and Ratings
Product Analyst - Gurugram

Gurgaon / Gurugram

3-8 Yrs

Not Disclosed

Gift Cards - Corporate Channel

Gurgaon / Gurugram

5-8 Yrs

Not Disclosed

Explore more jobs
Assistant Manager
51 salaries
unlock blur

₹4.9 L/yr - ₹11.5 L/yr

Senior Business Development Manager
50 salaries
unlock blur

₹4.3 L/yr - ₹8 L/yr

Senior Executive
44 salaries
unlock blur

₹2 L/yr - ₹5.8 L/yr

Senior Software Engineer
44 salaries
unlock blur

₹9.1 L/yr - ₹35.2 L/yr

Software Engineer
35 salaries
unlock blur

₹6.3 L/yr - ₹21.3 L/yr

Explore more salaries
Compare Goibibo 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