Upload Button Icon Add office photos
Engaged Employer

i

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

Snapdeal Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Snapdeal Business Analyst Interview Questions, Process, and Tips

Updated 20 Jan 2025

Top Snapdeal Business Analyst Interview Questions and Answers

  • Q1. Count Set Bits Problem Statement Given a positive integer N , find the total number of '1's in the binary representation of all the numbers from 1 to N . You should retu ...read more
  • Q2. Merge Two Sorted Arrays Problem Statement Given two sorted integer arrays ARR1 and ARR2 of size M and N , respectively, merge them into ARR1 as one sorted array. Assume ...read more
  • Q3. What is pre-order and post-order?
View all 9 questions

Snapdeal Business Analyst Interview Experiences

6 interviews found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Indian Institute of Technology (IIT), Guwahati and was interviewed before Jan 2024. There was 1 interview round.

Round 1 - Aptitude Test 

We had an aptitude test which involved 60 questions in 15 minutes. Of course, no one can solve this fast, but it was about the hit rate / accuracy and volume. Subsequent followed with two guesstimate based rounds and final as HR round which involved asking about college projects, extra curricular experiences and so on.

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed before Apr 2022. There were 4 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 - HR 

(1 Question)

  • Q1. Where do you see yourself in 5 years
Round 3 - Technical 

(1 Question)

  • Q1. How you will improve health of a marketplace
  • Ans. 

    By analyzing data, identifying pain points, and implementing solutions to improve user experience and trust.

    • Analyze user behavior and feedback to identify areas of improvement

    • Implement measures to increase transparency and trust, such as user reviews and seller verification

    • Provide resources and support for dispute resolution

    • Encourage diversity and inclusivity in the marketplace to attract a wider range of buyers and se...

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

(1 Question)

  • Q1. How you will design new customer support system
  • Ans. 

    I will design a customer support system that is user-friendly, efficient, and personalized.

    • Conduct research to understand customer needs and preferences

    • Identify common customer issues and develop a knowledge base for quick resolution

    • Implement a ticketing system to track and prioritize customer inquiries

    • Integrate chatbots and AI to provide 24/7 support

    • Train support staff to provide personalized and empathetic service

    • Col...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - NA

Skills evaluated in this interview

Business Analyst Interview Questions Asked at Other Companies

asked in Evalueserve
Q1. You have 10 boxes of balls (each ball weighing exactly10 gm) with ... read more
asked in Infosys
Q2. What is your strong point in terms of technical knowledge? Like J ... read more
Q3. There are 100 people standing in a circle, the first person has a ... read more
asked in Paytm
Q4. Sum of Squares of First N Natural Numbers Problem Statement You a ... read more
asked in EXL Service
Q5. If I have 333 digits to number pages of a book, How many pages ca ... read more

I was interviewed before Apr 2021.

Round 1 - Face to Face 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

In the interview I was asked few puzzles and few coding problems.
In the coding questions the interviewers did not ask me to write down the complete codes of the problems, they only asked me to suggest some suitable algorithms.

  • Q1. 

    Count Set Bits Problem Statement

    Given a positive integer N, find the total number of '1's in the binary representation of all the numbers from 1 to N.

    You should return the result modulo 109+7 as the co...

  • Ans. 

    A simple method would be to Loop through all bits in an integer, check if a bit is set and if it is, then increment the set bit count.
    Time Complexity: Θ(logn) 
    Auxiliary Space: O(1)


    Efficient approach would be to use Brian Kernighan’s Algorithm.
    Algorithm :
    1) Initialize count: = 0
     

    2) If integer n is not zero
    (a) Do bitwise & with (n-1) and assign the value back to n
    n: = n&(n-1)
    (b) Increment count by 1
    (c)

  • Answered Anonymously
Round 2 - Face to Face 

(1 Question)

Round duration - 45 minutes
Round difficulty - Easy

In second round of interview I was asked some hardcore programming questions on data structures since I wrote it as my area of interest. 
I was asked some puzzles as well.

  • Q1. 

    Merge Two Sorted Arrays Problem Statement

    Given two sorted integer arrays ARR1 and ARR2 of size M and N, respectively, merge them into ARR1 as one sorted array. Assume that ARR1 has a size of M + N to hol...

  • Ans. 

    A simple approach would be to create a new arrays with size as sum of the sizes of both the arrays. Copy the elements of both the arrays in the new array and sort the array. 
    A space optimized approach also exists. While traversing the two sorted arrays parallelly, if we encounter the jth second array element is smaller than ith first array element, then jth element is to be included and replace some kth element in...

  • Answered Anonymously

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPASnapdeal interview preparation:Topics to prepare for the interview - SQL, Database, Aptitude, Data Structures, Algorithms, 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 interviewRejected

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. What are tree traversals?
  • Ans. 

    Tree traversals are methods of visiting all nodes in a tree data structure.

    • There are three types of tree traversals: in-order, pre-order, and post-order.

    • In-order traversal visits the left subtree, then the root, then the right subtree.

    • Pre-order traversal visits the root, then the left subtree, then the right subtree.

    • Post-order traversal visits the left subtree, then the right subtree, then the root.

    • Tree traversals are ...

  • Answered by AI
  • Q2. What is pre-order and post-order?
  • Ans. 

    Pre-order and post-order are traversal methods used in binary trees.

    • Pre-order: visit root, left subtree, right subtree

    • Post-order: visit left subtree, right subtree, root

    • Used to traverse binary trees and perform operations on nodes

    • Example: Pre-order traversal of binary tree: A, B, D, E, C, F, G

    • Example: Post-order traversal of binary tree: D, E, B, F, G, C, A

  • Answered by AI

Interview Preparation Tips

Round: Resume Shortlist
Experience: I consulted my seniors for preparation of my resume. I believe that seniors provide the best provide you with the best possible insights in this regards.

Round: Test
Experience: The first round was the written test. There were 8 theoretical questions asked in the paper. The questions were either in the form of puzzles or probability based questions. The first three questions in the paper were compulsory questions and needed to be answered correctly for the rest of your paper to be evaluated; if a particular candidate answered any one of these questions incorrectly then he was rejected then and there. Apart from these 3 questions solving 2 more questions would have assured a candidate’s chance of getting selected for the next round. The duration of the test was of around 40 minutes.
For the written test nearly 300 people appeared out of which 30-40 were shortlisted for the interviews.

Round: Puzzle Interview
Experience: In the interview I was asked few puzzles and few coding problems.

Some puzzles asked were:

1) There are 3 couples (each couple consists of a man and a woman: husband and wife pair) who want to cross a particular river with only one boat available for the voyage. At a time the boat can carry a maximum of 2 people and a woman cannot stay in presence of other male in absence of her husband. All three couples want to cross the river, what are the ways in which this could be done?
2) There are 2 ropes which burn in 60 minutes. How to measure 45 minutes without cutting any of the ropes?

In the coding questions the interviewers did not ask me to write down the complete codes of the problems, they only asked me to suggest some suitable algorithms. In one of the questions they gave me a binary number and asked me to write down the algorithm to calculate the number of one’s in the binary number.

Round: Technical Interview
Experience: In second round of interview I was asked some hardcore programming questions on data structures since I wrote it as my area of interest. Some of the questions asked were:
If you have an array of ‘n+m’ elements and have these ‘n’ elements separately and you have to transfer these n elements in the n+m element slot which already contains the m elements. The transfer has to be done in such a way that all the m+n elements are sorted.
I was asked some puzzles as well. For instance in one of the puzzles, I was given a square consisting of 9 dots on its periphery. I was asked to join those 9 dots using 4 lines without lifting the pencil.

College Name: IIT ROORKEE

Skills evaluated in this interview

Snapdeal interview questions for designations

 Analyst

 (8)

 Business Development Executive

 (1)

 Senior Manager

 (2)

 Senior MIS Executive

 (1)

 Graduate Engineer

 (1)

 Associate Manager

 (1)

 SDE

 (1)

 Data Entry Operator

 (1)

Interview Preparation Tips

Round: Resume Shortlist
Experience: I had a standard resume for this company as per our institute placement cell norms.

I prepared resume keeping in mind the areas of interest that would suit the company’s requirements. The companies that recruit students from all departments usually tend to recruit students seeking interests in subjects related to management. I knew about this and while applying to non-core companies I specified my areas of interest as these subjects.

Round: Test
Experience: The first round was the written test. The paper was composed of general aptitude and basic programming questions. For programming questions we were told that in case we did not know the desired syntaxes we could write the algorithm for the problems. Since I was not a proficient coder I preferred writing only the algorithm for the coding questions. There were also some logical reasoning questions (mainly puzzle types). For example in one of the questions we were given a multi coloured cube with each side having a different colour. Initially the cube was kept with the blue colour appearing on the top surface; then the cube was rotated along various axes, we had to specify which colour would appear on the top surface. I qualified the first round.

Round: HR Interview
Experience: The second round was an aptitude interview round. In this interview I was asked about the preference with respect to the profiles ordered (programming or analytics). I replied that I would like to join the company as an analyst, however if given an option I would be open to learning programming as well. The interviewers were delighted to know about my interests in learning newer things.

The interview further asked me puzzle based logical reasoning questions like ‘How to find the odd coin out of 8 coins of which 7 are similar in all senses in two weighing steps by use of a balance?’ He asked me few more of these types; I successfully managed to answer all these questions.

Round: HR Interview
Experience: The final round was again a personal interview. This was actually supposed to be a profile specific interview; however since I had earlier said that I was open to getting recruited in both the profiles they asked me questions from programming as well as analytical questions. I informed them again that I was interested in learning programming but did not have much clue about it at that time. They did not pay any heed whatsoever to my plea and kept asking me questions related to programming. They asked me some questions and told me to suggest some algorithm for those questions since I did not know coding. I framed some algorithms but they did not seem very convinced with my answers. Eventually I was not recruited.
Tips: As per my experience I would say that knowledge about C++ is necessary to get into the software section of Snapdeal. They want people who are well versed with puzzle solving questions and who can solve analytical questions easily.

College Name: IIT ROORKEE
Motivation: I got to know about the company and the profile through the pre-placement talk by the company. The company is one of the leading e-commerce website today and is quite famous among the youth. Hence I had knowledge about its existence and field of work beforehand.

Get interview-ready with Top Snapdeal Interview Questions

Business Analyst Interview Questions & Answers

user image Neelesh Shekhar

posted on 30 Jan 2015

Interview Questionnaire 

5 Questions

  • Q1. Why Snapdeal. Why reject Flipkart PPO
  • Ans. 

    I chose Snapdeal over Flipkart because of its unique business model and growth potential.

    • Snapdeal offers a unique marketplace model that allows sellers to directly connect with customers, giving them more control over their business.

    • Snapdeal has shown consistent growth and has a strong presence in tier 2 and tier 3 cities, which presents a huge untapped market.

    • Snapdeal's focus on customer satisfaction and providing a p...

  • Answered by AI
  • Q2. Short term & Long term aims in Life
  • Ans. 

    Short term aim is to excel in my role as a business analyst and contribute to the success of the company. Long term aim is to become a senior business analyst and eventually a business consultant.

    • Short term aim: Excel in my role as a business analyst

    • Short term aim: Contribute to the success of the company

    • Long term aim: Become a senior business analyst

    • Long term aim: Transition into a business consultant role

  • Answered by AI
  • Q3. What are you seeking from this Job
  • Q4. Number of sparrows in IIT KGP
  • Ans. 

    The number of sparrows in IIT KGP is unknown.

    • The exact number of sparrows in IIT KGP is not available.

    • There is no specific data on the population of sparrows in IIT KGP.

    • The number of sparrows in IIT KGP is not documented.

    • No information is available regarding the count of sparrows in IIT KGP.

  • Answered by AI
  • Q5. Road length of Ahmedabad
  • Ans. 

    The road length of Ahmedabad is approximately 2,500 kilometers.

    • Ahmedabad has a well-developed road network.

    • The road length includes both national highways and city roads.

    • The road length is constantly expanding due to urban development and infrastructure projects.

    • Major roads in Ahmedabad include the SG Highway, Ashram Road, and C.G. Road.

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Simple questions. Accuracy and speed were determining factors.
Tips: Practice Quant/Give online Quant & LR tests.
Duration: 12 minutes
Total Questions: 50

Round: Resume Shortlist
Experience: CV Should carry proper format, action verbs . Impacts created (preferably numerical ) should be exclusively mentioned for each project under internships.
Tips: An E-Commerce internship background are an add-on. SQL , Google analytics , R Software knowledge are an advantage.

Round: Group Activity
Experience: Topic for GD : Impact of Coal-Gate scam on Indian economy.
Tips: Be updated about current affairs. Subscribe economic times or business standard. Don't create a fish market in the GD. put your points clearly and conclude what the entire group has agreed with

Round: Guesstimate Interview
Experience: Was able to do them. Prior consulting internships helped.
Tips: Practice Case in point. Have a well structured and calculative approach.

Round: HR Interview
Experience: Normal HR type questions. They see your attitude towards life and your work style.
Tips: Prepare well for them. These questions are not new or different for any interview,

College Name: IIT KHARAGPUR

Interview questions from similar companies

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

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

Round 1 - Coding Test 

It was based on 4 sql questions of medium to hard level and 24 mcqs based on sql,aptitude,excel.

Round 2 - Technical 

(1 Question)

  • Q1. They give you some questions and you have to write sql queries for them
Round 3 - Technical 

(1 Question)

  • Q1. You are given case study and come sql questions based on that
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Technical + Analytics
I gave my coding test this august 2024, it was purely based on SQL coding
8 question, 3 easy, 3 intermediate and 3 hard.

Round 2 - One-on-one 

(2 Questions)

  • Q1. Introduction and explain any one of the projects plus what was the analytics you used
  • Ans. 

    Implemented a project to optimize marketing campaigns using predictive analytics

    • Developed a predictive model to identify the most effective marketing channels

    • Utilized data from past campaigns to train the model

    • Used techniques such as regression analysis and decision trees to analyze the data

    • Generated insights on customer behavior and preferences to improve campaign targeting

  • Answered by AI
  • Q2. SQL coding, shared screen and was asked to find cumulative sum of cost for a table.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be very very well prepared with SQL and you should be aware of advanced sql, not only concepts but solving questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. SQL Question using window functions
  • Q2. Guesstimate on Number of McD orders
  • Ans. 

    The number of McDonald's orders can be estimated based on factors like location, time of day, and day of the week.

    • Consider the population density of the area where the McDonald's is located

    • Take into account the time of day - more orders during meal times

    • Factor in the day of the week - weekends may have higher order volumes

    • Look at historical data or industry averages for similar locations

    • Consider any promotions or speci

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

I applied via Referral and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Case study questions based on Logistics & Porter business.
  • Q2. More Case study & porter business questions
Round 2 - Technical 

(2 Questions)

  • Q1. Some medium SQL Queries
  • Q2. Some medium python codes

Snapdeal Interview FAQs

How many rounds are there in Snapdeal Business Analyst interview?
Snapdeal interview process usually has 2-3 rounds. The most common rounds in the Snapdeal interview process are Aptitude Test, Resume Shortlist and HR.
How to prepare for Snapdeal 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 Snapdeal. The most common topics and skills that interviewers at Snapdeal expect are Excel, SQL, Business Analysis, MySQL and Python.
What are the top questions asked in Snapdeal Business Analyst interview?

Some of the top questions asked at the Snapdeal Business Analyst interview -

  1. What is pre-order and post-ord...read more
  2. How you will improve health of a marketpl...read more
  3. How you will design new customer support sys...read more

Tell us how to improve this page.

Snapdeal Business Analyst Interview Process

based on 2 interviews

Interview experience

2.5
  
Poor
View more
Snapdeal Business Analyst Salary
based on 24 salaries
₹4.8 L/yr - ₹15 L/yr
At par with the average Business Analyst Salary in India
View more details

Snapdeal Business Analyst Reviews and Ratings

based on 7 reviews

2.4/5

Rating in categories

2.5

Skill development

2.3

Work-life balance

2.6

Salary

2.2

Job security

2.7

Company culture

3.7

Promotions

3.1

Work satisfaction

Explore 7 Reviews and Ratings
Assistant Manager
104 salaries
unlock blur

₹4 L/yr - ₹12 L/yr

Category Manager
94 salaries
unlock blur

₹6.9 L/yr - ₹24 L/yr

Senior Executive
89 salaries
unlock blur

₹2.8 L/yr - ₹6.6 L/yr

Deputy Manager
59 salaries
unlock blur

₹5.2 L/yr - ₹15 L/yr

Associate Category Manager
50 salaries
unlock blur

₹5.8 L/yr - ₹17.6 L/yr

Explore more salaries
Compare Snapdeal with

Flipkart

4.0
Compare

Amazon

4.1
Compare

Meesho

3.7
Compare

eBay

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