Upload Button Icon Add office photos

Swiggy

Compare button icon Compare button icon Compare

Filter interviews by

Swiggy Associate Business Analyst Interview Questions and Answers

Updated 20 Feb 2025

Swiggy Associate Business Analyst Interview Experiences

2 interviews found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview before Feb 2024.

Round 1 - Technical 

(1 Question)

  • Q1. Questions on SQL. Asked to share screen and write code.
Round 2 - Technical 

(1 Question)

  • Q1. This round consisted of sql with respect to business related questions.
Round 3 - One-on-one 

(1 Question)

  • Q1. This was final round with hiring manager which consisted of botb behavioural and technical questions. Mostly focused on business related questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on your SQL skills
Advance sql
Learn about business model of the company

I appeared for an interview before May 2016.

Interview Questionnaire 

3 Questions

  • Q1.  famous gold puzzle
  • Q2. Case study related: sales were increasing but the monthly profits were falling.
  • Q3.  problem identification - how to reduce per delivery cost from Rs. 75 (hypothetical value).
  • Ans. 

    To reduce per delivery cost from Rs. 75, we can focus on optimizing logistics and operational processes.

    • Analyze the current delivery process to identify inefficiencies

    • Implement route optimization software to minimize travel time and fuel consumption

    • Negotiate better rates with suppliers and shipping partners

    • Invest in technology to automate manual tasks and reduce labor costs

    • Streamline inventory management to minimize st

  • Answered by AI

Interview Preparation Tips

Round: Resume Shortlist
Experience: based on Cg.
No test was conducted.

Round: Group Activity
Experience: Nil
I selected this round by mistake.
there was only 1 round.

Round: HR Interview
Experience: We had 3 rounds of interview - first HR followed by two case study rounds. There were three panellist, one HR and the other two technical ones.

First round was specificaly HR round. They asked puzzles as well for this round. But even in the subsequent rounds, they didn't limit themselves to case studies but asked a few basic introduction questions as well. Some standard puzzles were asked in this round - a famous gold puzzle was asked to me. When I told that I know the answer, then they didn't grill me on it. The panellist were insti guys only - so questions like 'Why Saarang coreship ?' and 'Why choosing this track ?' were asked. The HR round also had a bit of senior junior interaction taste - question like 'Most interesting thing in insti' was asked. The 2nd and 3rd round were case study rounds both related to food-delivery only, Swiggy being related to that field. 1st one was a classic case study - sales were increasing but the monthly profits were falling. I solved it and gave suggestions to them. They were asking for data to support our claim. Out of 20-25 students from the first round, only 4 went to 2nd round and subsequently 3 to the 3rd round. 3rd round case study was about problem identification - how to reduce per delivery cost from Rs. 75 (hypothetical value). This was an open ended question and so was different from the first case study.



Tips: As it is a startup so I expected questions broadly related to 3 categories - HR, puzzles, and case studies. For puzzles and case studies - Day 1.0 is the book. Casing point is the book from which you can get even more difficult case studies. I also found a very good link in Quora - in which all the possible puzzles were given. Some HR questions like 'Why startup ?' & 'Why not the convenional company ?' were expected. I reffered to websites like 'themuse.com' for career planning which was very useful.

College Name: IIT Madras

Associate Business Analyst Interview Questions Asked at Other Companies

asked in Swiggy
Q1. problem identification - how to reduce per delivery cost from Rs. ... read more
asked in Cotiviti
Q2. Guesstimate - number of kirana stores in Delhi
asked in Cotiviti
Q3. How many tennis ball can be fitted in 10*10 room
asked in Aurigo
Q4. What features would you expect in a 'XYZ Software'? How should th ... read more
Q5. How many times we can subtract 10 from 100?

Interview questions from similar companies

I applied via Referral and was interviewed before Nov 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. About personality

Interview Preparation Tips

Interview preparation tips for other job seekers - HR is very knowledgeable. The company want you to be very knowledgeable, smart and interesting.

I appeared for an interview before Jan 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Two coding questions were given in the first round to be solved in 60 minutes.

  • Q1. 

    Rearrange Array Elements Problem Statement

    Given an array A containing 'N' integers and an integer m, rearrange the elements of the array such that the differences between the array elements and m are sor...

  • Ans. 

    Rearrange array elements based on their differences from a given integer.

    • Calculate the differences between each element and the given integer.

    • Sort the elements based on their differences while maintaining the original order for elements with the same difference.

    • Implement a function to rearrange the array elements as per the given criteria.

  • Answered by AI
  • Q2. 

    Print Nodes at Distance K from a Given Node

    Given an arbitrary binary tree, a node of the tree, and an integer 'K', find all nodes that are at a distance K from the specified node, and return a list of th...

  • Ans. 

    The task is to find all nodes in a binary tree that are at a distance K from a given node.

    • Traverse the binary tree to find the given node

    • From the given node, perform a depth-first search to find all nodes at distance K

    • Use a list to store the values of the nodes at distance K

    • Return the list of values in any order

  • Answered by AI
Round 2 - Face to Face 

(4 Questions)

Round duration - 60 minutes
Round difficulty - Easy

This was a technical round with questions based on DSA, DBMS, Computer Networking and project based questions.

  • Q1. 

    Triangle of Numbers Pattern

    Ninja is tasked with printing a triangle pattern based on a given number 'N' for any test case.

    Example:

    Input:
    N = 4
    Output:
       1
    232
    34545
    4567654

    Explanation:

    The pat...

  • Ans. 

    Print a triangle pattern of numbers based on a given number 'N'.

    • Iterate through each row and print the numbers accordingly

    • Use spaces to center-align the numbers in each row

    • Increment the numbers in each row as per the pattern

  • Answered by AI
  • Q2. What is the difference between a web server and an application server?
  • Ans. 

    Web server serves static content over HTTP, while application server runs dynamic content and business logic.

    • Web server handles HTTP requests and responses, serving static content like HTML, images, and CSS.

    • Application server executes business logic, runs dynamic content, and interacts with databases.

    • Web server examples include Apache, Nginx, while application server examples include Tomcat, JBoss.

    • Web server focuses on...

  • Answered by AI
  • Q3. How does the internet work?
  • Ans. 

    The internet is a global network of interconnected computers that communicate using standardized protocols.

    • The internet is made up of a vast number of interconnected networks of computers.

    • Data is transmitted over the internet using protocols such as TCP/IP.

    • Websites are hosted on servers connected to the internet, and users access them using web browsers.

    • Internet Service Providers (ISPs) provide access to the internet f...

  • Answered by AI
  • Q4. Write a SQL query to find the nth highest salary.
  • Ans. 

    SQL query to find the nth highest salary

    • Use the 'SELECT DISTINCT' statement to get unique salary values

    • Order the salaries in descending order using 'ORDER BY' clause

    • Use 'LIMIT' and 'OFFSET' to get the nth highest salary

  • Answered by AI
Round 3 - HR 

Round duration - 30 minutes
Round difficulty - Easy

Typical HR round with behavioral problems.

Interview Preparation Tips

Professional and academic backgroundI completed Information Technology from Chitkara University. Eligibility criteriaAbove 7 CGPAInfo Edge India (Naukri.com) interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via LinkedIn and was interviewed in Apr 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. How can you reduce the delivery time of the order?
  • Ans. 

    Reducing delivery time can be achieved by optimizing the supply chain, improving communication, and automating processes.

    • Analyze the supply chain and identify bottlenecks

    • Implement automation tools to streamline processes

    • Improve communication between departments and with customers

    • Use data analytics to forecast demand and plan accordingly

    • Consider outsourcing or partnering with third-party logistics providers

    • Invest in tec...

  • Answered by AI
  • Q2. Questions based on Case Studies

Interview Preparation Tips

Interview preparation tips for other job seekers - The process consisted of two rounds. First was the business analysis kind of round which included the questions like how can you reduce the delivery time of the order? The second round was technical round where the person asked the questions on SQL and Excel

I applied via IIM Jobs and was interviewed in Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

7 Questions

  • Q1. Advance SQL Questions.
  • Q2. Multiple Approaches in the SQL questions were seen. Some unconventional SQL Syntax was also asked.
  • Q3. Metrics Driven Case studies.
  • Q4. More number of solutions were seen instead of in depth implementation of 1 solution. Good Communication skills is judged.
  • Q5. Tell me something about yourself.
  • Ans. 

    I am a highly motivated and detail-oriented Business Analyst with a strong background in data analysis and problem-solving.

    • I have a Bachelor's degree in Business Administration with a focus on analytics.

    • I have experience working with cross-functional teams to gather and analyze business requirements.

    • I am proficient in using tools such as Excel, SQL, and Tableau for data analysis and visualization.

    • I have successfully im...

  • Answered by AI
  • Q6. Why quit last job.
  • Ans. 

    Seeking better growth opportunities and work-life balance.

    • Limited growth prospects in previous role

    • Lack of work-life balance

    • Desire for new challenges and learning opportunities

    • Company culture misalignment

    • Relocation or commute issues

    • Better compensation or benefits elsewhere

  • Answered by AI
  • Q7. Why Meesho.
  • Ans. 

    Meesho is a leading e-commerce platform that empowers individuals to start their own online businesses.

    • Meesho provides a user-friendly platform for individuals to sell products online without any investment.

    • It offers a wide range of products from various categories, allowing sellers to cater to different customer preferences.

    • Meesho provides extensive training and support to its sellers, helping them succeed in their on...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm, It's very similar to any other business analyst interview in industry.

I applied via Job Portal and was interviewed before Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Data structure
  • Q2. Java concepts
  • Q3. Handson coding

Interview Preparation Tips

Interview preparation tips for other job seekers - Get handson in any language but be confident

I applied via LinkedIn and was interviewed before Jul 2021. There were 2 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. Knowledge about data summarisation.and some tools like Power bi and advance excel.

Interview Preparation Tips

Interview preparation tips for other job seekers - Always speak first answer like perfect and effective answer without any hesitation...

I applied via Company Website and was interviewed in Apr 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Tell me about yourself
  • Q2. Where do you see 5 years ahead in future?

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good.

I applied via Company Website and was interviewed in Sep 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Fibonacci series, Prime function, linked lisk value access, query

Interview Preparation Tips

Interview preparation tips for other job seekers - First a test based on amcat. Followed by two technical interview. First Tech Interview basis and overview of you concept of ds and algo will ne asked. In second Tech interview indepth concept of topics such as arrays, linked list, os,algo, etc will be asked. Prepare ds and algo concept, dbms query & concept, internet basis such as protocols, methods,etc.

Best of luck

Swiggy Interview FAQs

How many rounds are there in Swiggy Associate Business Analyst interview?
Swiggy interview process usually has 3 rounds. The most common rounds in the Swiggy interview process are Technical and One-on-one Round.
How to prepare for Swiggy Associate Business Analyst 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 Swiggy. The most common topics and skills that interviewers at Swiggy expect are SQL, Analytical, Analytical Chemistry, Automation Testing and Continuous Improvement.
What are the top questions asked in Swiggy Associate Business Analyst interview?

Some of the top questions asked at the Swiggy Associate Business Analyst interview -

  1. problem identification - how to reduce per delivery cost from Rs. 75 (hypothet...read more
  2. famous gold puz...read more
  3. case study related: sales were increasing but the monthly profits were falli...read more

Tell us how to improve this page.

Swiggy Associate Business Analyst Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

Udaan Interview Questions
3.9
 • 334 Interviews
Meesho Interview Questions
3.7
 • 333 Interviews
Info Edge Interview Questions
3.9
 • 323 Interviews
Lenskart Interview Questions
3.2
 • 315 Interviews
Zepto Interview Questions
3.5
 • 240 Interviews
BlackBuck Interview Questions
3.8
 • 180 Interviews
Tata 1mg Interview Questions
3.6
 • 151 Interviews
Uber Interview Questions
4.2
 • 149 Interviews
Digit Insurance Interview Questions
3.9
 • 146 Interviews
View all
Swiggy Associate Business Analyst Salary
based on 5 salaries
₹8 L/yr - ₹15 L/yr
41% more than the average Associate Business Analyst Salary in India
View more details

Swiggy Associate Business Analyst Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

4.0

Skill development

3.0

Work-life balance

3.0

Salary

2.0

Job security

5.0

Company culture

3.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Delivery Boy
877 salaries
unlock blur

₹0.4 L/yr - ₹5 L/yr

Sales Manager
584 salaries
unlock blur

₹2 L/yr - ₹9 L/yr

Fleet Manager
579 salaries
unlock blur

₹2.5 L/yr - ₹6 L/yr

Assistant Manager
502 salaries
unlock blur

₹3 L/yr - ₹14 L/yr

Assistant Store Manager
452 salaries
unlock blur

₹1.8 L/yr - ₹4 L/yr

Explore more salaries
Compare Swiggy with

Zomato

3.7
Compare

Dunzo

3.4
Compare

FoodPanda

3.7
Compare

Rapido

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