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

Clear (1)

Goibibo Business Intelligence Analyst Interview Questions and Answers

Updated 8 Nov 2019

Goibibo Business Intelligence Analyst Interview Experiences

1 interview found

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.

Interview questions from similar companies

Analyst Interview Questions & Answers

Oyo Rooms user image Shobhit Shrivas

posted on 1 Nov 2015

I applied via Campus Placement

Interview Questionnaire 

7 Questions

  • Q1. I was asked 2 questions from a course called principle of economics, such as what is elasticity etc
  • Q2. It was again from my course work they asked me how to solve linear programming problem graphically
  • Q3. Then they asked me to tell me about my self
  • Q4. They asked me to estimate number of microwaves manufactured in india per year
  • Q5. Then I was asked what is my biggest achivement till now
  • Q6. Then I was asked if I have any question for them
  • Q7. He gave me 15 min to convence him so that he hirs me for his company

Interview Preparation Tips

Round: Resume Shortlist
Experience: They were mainly looking for people who has or worked in Start ups or who has some good PORs. They also shortlisted students with CGPA of more than 7.5.
Tips: Try taking good PORs and maintain a healthy CGPA. Make a one page resume.

Round: Technical Interview
Experience: It was good. This was my first interview, I was bit nurvous for obvious reasons but controlled my emotions perfectly. As interview progressed things started becoming normal.
Tips: Be confidant of what ever you speak. Try hidding you nervousness, its okay if you are not able to answer any question but make strong comeback in next.

Round: HR Interview
Experience: I was very confidant of myself and told some 8-9 qualities that I have and gave examples of where I used them in past.
Tips: Again be very confidant. Its okay if you fumble in between but make strong comeback. look into the eyes of interviewer it shows you are confidant. Don't lie, be yourself.

General Tips: Keep working hard, there is no subsitute of hardwork, even in IITs. And don't forget sometimes you have to loose small battels to win Wars.
All the best:)
Skills:
Duration: 8-10weeks
College Name: IIT Madras
Motivation: Oyo is progressing very fast and I wanted to be the part of there amazing journey.
Funny Moments: I kept looking into the eyes of both of my interviewer just to show them I was very confidant but the reality is I was very nervous and I was bluffing them:). After interview I had a headache.

Analyst Interview Questions & Answers

Oyo Rooms user image Sushant Dogra

posted on 2 Nov 2015

I applied via Campus Placement

Interview Preparation Tips

Round: Puzzle Interview
Experience: basic Guesstimation questtions,
for eg. estimate the no of sleeping all over the world right now.

Tips: Walk the interviewer through your thinking process.
donot make vague guesses.

Round: HR Interview
Experience: 1 Tell us 5 reasons why we should hire you.
2 being an electrical engineering student, why have you applied for a analytic s/operations job profile.

Skills: Ability To Cope Up With Stress, Guesstimation Cases
Duration: 2
College Name: IIT Madras

I applied via Referral and was interviewed before Nov 2018. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Advanced sql queries related to dense rank, row num, self joins, pivoting, case studies, visualization questions, puzzles, questions on probability

Interview Preparation Tips

Interview preparation tips for other job seekers - Relax and go with open minds

I applied via LinkedIn and was interviewed in Sep 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. How your work will increase our revenue? By sharing the data we can improve our services.
  • Ans. 

    Sharing data insights can help improve services and identify revenue opportunities.

    • Analyzing customer behavior can help identify areas for improvement

    • Identifying trends in sales data can help optimize pricing strategies

    • Using data to personalize marketing efforts can increase customer engagement

    • Predictive modeling can help identify potential revenue opportunities

    • Tracking key performance indicators can help optimize busi

  • Answered by AI
  • Q2. Do you believe in the overtime if yes then why? I don believe in the rare cases we should help our team mates

Interview Preparation Tips

Interview preparation tips for other job seekers - Stay cool and be optimistic.
Interview experience
2
Poor
Difficulty level
Hard
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 - One-on-one 

(7 Questions)

  • Q1. Explain Moving Average
  • Ans. 

    Moving Average is a statistical technique used to analyze data points by creating a series of averages of different subsets of the full data set.

    • Moving Average helps in smoothing out fluctuations in data to identify trends over time.

    • It is calculated by taking the average of a specific number of data points within a defined window.

    • For example, a 3-day moving average for stock prices would be the average of the stock pri...

  • Answered by AI
  • Q2. Explain Decorators
  • Ans. 

    Decorators in Python are functions that modify the behavior of other functions.

    • Decorators are denoted by the @ symbol followed by the decorator function name.

    • They allow you to add functionality to an existing function without modifying its code.

    • Common use cases include logging, timing, and authentication.

    • Example: @decorator_function def function_to_decorate(): pass

  • Answered by AI
  • Q3. Explain Object Oriented Programming
  • Ans. 

    Object Oriented Programming is a programming paradigm based on the concept of objects, which can contain data and code.

    • OOP focuses on creating objects that interact with each other to solve complex problems.

    • Objects have attributes (data) and methods (functions) that can manipulate the data.

    • Encapsulation, inheritance, and polymorphism are key principles of OOP.

    • Example: In a car simulation program, a 'Car' object can hav...

  • Answered by AI
  • Q4. Explain classes objects
  • Ans. 

    Classes are blueprints for creating objects in object-oriented programming.

    • Classes define the properties and behaviors of objects

    • Objects are instances of classes

    • Classes can inherit properties and behaviors from other classes

    • Classes can have constructors to initialize objects

    • Classes can have methods to perform actions

  • Answered by AI
  • Q5. Explain Functions
  • Ans. 

    Functions are blocks of code that perform a specific task and can be reused multiple times in a program.

    • Functions help in organizing code and making it more modular.

    • They can take input parameters and return output values.

    • Functions can be called multiple times from different parts of the program.

    • Examples: summing two numbers, finding the maximum value in a list.

  • Answered by AI
  • Q6. Pandas and Numpy
  • Q7. Swap L1 and L5 in a list
  • Ans. 

    Swap L1 and L5 in a list

    • Create a temporary variable to store the value of L1

    • Assign the value of L5 to L1

    • Assign the value of the temporary variable to L5

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Cleartrip Data Analyst interview:
  • Advanced Python
  • Advanced SQL
  • Advanced Excel
Interview preparation tips for other job seekers - The Job Description Listed Excel, SQL Data Visualization as key skills and python would be an add on. But all questions were asked on advanced python which may not be relevant for data analysis.

Skills evaluated in this interview

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

(1 Question)

  • Q1. Sql, advance Excel formulas
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jul 2023. There were 3 interview rounds.

Round 1 - Coding Test 

I was asked with SQL querying questions.

Round 2 - Technical 

(2 Questions)

  • Q1. Set of questions related to excel.
  • Q2. Vlookup, sumifs, pivot tables
Round 3 - HR 

(2 Questions)

  • Q1. Related to past work experience.
  • Q2. Scenario based questions related to business industry.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Tell me about yourself
Round 2 - One-on-one 

(1 Question)

  • Q1. About the industry

Interview Preparation Tips

Interview preparation tips for other job seekers - Have an idea about the travel industry before you go for the interview.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Assignment 

SQL, excel, tableau , looker studio

Round 2 - HR 

(1 Question)

  • Q1. What is your notice period.
Contribute & help others!
anonymous
You can choose to be anonymous

Goibibo Interview FAQs

What are the top questions asked in Goibibo Business Intelligence Analyst interview?

Some of the top questions asked at the Goibibo Business Intelligence Analyst interview -

  1. How to penetrate the market? How to attract the drivers from Ola? What's the bu...read more
  2. To provide a business model to setup a Uber cab services from scratch where Ola...read more
  3. SQL and ...read more

Recently Viewed

PHOTOS

Medanta the Medicity

4 office photos

INTERVIEWS

FabHotels

No Interviews

REVIEWS

Goibibo

No Reviews

INTERVIEWS

FabHotels

No Interviews

INTERVIEWS

FabHotels

No Interviews

SALARIES

Pizza Hut

INTERVIEWS

FabHotels

No Interviews

INTERVIEWS

Pizza Hut

No Interviews

REVIEWS

Pizza Hut

No Reviews

SALARIES

Pizza Hut

Tell us how to improve this page.

Interview Questions from Similar Companies

Swiggy Interview Questions
3.8
 • 424 Interviews
Udaan Interview Questions
4.0
 • 333 Interviews
Meesho Interview Questions
3.7
 • 328 Interviews
Oyo Rooms Interview Questions
3.3
 • 217 Interviews
Myntra Interview Questions
4.0
 • 214 Interviews
Blinkit Interview Questions
3.7
 • 178 Interviews
BlackBuck Interview Questions
3.8
 • 175 Interviews
Spinny Interview Questions
3.7
 • 169 Interviews
FirstCry Interview Questions
3.7
 • 168 Interviews
Tata 1mg Interview Questions
3.6
 • 146 Interviews
View all
Assistant Manager
51 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Business Development Manager
50 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Executive
44 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
44 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
35 salaries
unlock blur

₹0 L/yr - ₹0 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