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 Interview Questions, Process, and Tips

Updated 20 Jan 2025

Top Snapdeal Interview Questions and Answers

View all 131 questions

Snapdeal Interview Experiences

Popular Designations

75 interviews found

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

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 return the result modulo 109+7 as the count can be large. Input: The first li... read more
View answer (1)

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 (9)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Simple groupby questions in pandas?
  • Q2. Group by questions in SQL?

Interview Preparation Tips

Interview preparation tips for other job seekers - Lot of opportunity for learning within the company

Data Scientist Interview Questions asked at other Companies

Q1. for a data with 1000 samples and 700 dimensions, how would you find a line that best fits the data, to be able to extrapolate? this is not a supervised ML problem, there's no target. and how would you do it, if you want to treat this as a s... read more
View answer (5)
Snapdeal Interview Questions and Answers for Freshers
illustration image

Interview Questions & Answers

user image Danish Nazir

posted on 3 Feb 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(3 Questions)

  • Q1. Why you want to do this job?
  • Q2. What was your yesterday's schedule?
  • Q3. What is your short term goal?
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Reverse a stack without using extra space

Round 2 - Technical 

(2 Questions)

  • Q1. Convert Roman to Integer
  • Ans. 

    Convert Roman numerals to integers using a mapping of values for each symbol.

    • Create a mapping of Roman numeral symbols to their corresponding integer values.

    • Iterate through the input Roman numeral string from right to left.

    • If the current symbol's value is less than the next symbol's value, subtract it from the total. Otherwise, add it to the total.

  • Answered by AI
  • Q2. Mid of linked list

Skills evaluated in this interview

Graduate Engineer Interview Questions asked at other Companies

Q1. What is Finite Element Analysis? Explain using examples.
View answer (1)

Snapdeal interview questions for popular designations

 Software Developer

 (11)

 Analyst

 (8)

 Business Analyst

 (6)

 Software Engineer

 (5)

 Data Scientist

 (2)

 Senior Manager

 (2)

 Associate Category Manager

 (2)

 Graduate Engineer

 (1)

Intern Interview Questions & Answers

user image Anonymous

posted on 23 Jan 2024

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

I applied via Recruitment Consulltant and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Basic SQL question.
  • Q2. Order of execution
  • Ans. 

    The order of execution refers to the sequence in which instructions or operations are executed in a program.

    • The order of execution is determined by the programming language and the specific code being executed.

    • Generally, code is executed line by line from top to bottom.

    • However, there are exceptions such as loops, conditionals, and function calls that can alter the order of execution.

    • In some programming languages, there...

  • Answered by AI
  • Q3. Window functions
  • Q4. Aggregate functions

Skills evaluated in this interview

Intern Interview Questions asked at other Companies

Q1. Case. There is a housing society “The wasteful society”, you collect all the household garbage and sell it to 5 different businesses. Determine what price you will pay to the society members in Rs/kg, given you want to make a profit of 20% ... read more
View answer (8)

Get interview-ready with Top Snapdeal Interview Questions

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

I applied via Naukri.com and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Group Discussion 

Fast growth of population

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy

Process Associate Interview Questions asked at other Companies

Q1. How will you explain a red colour (or any colour) to a person who is blind since his or her birth?
View answer (21)

Jobs at Snapdeal

View all
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Prior work experience
  • Ans. 

    I have 5 years of experience in project management, leading cross-functional teams to successful project completion.

    • Led cross-functional teams to complete projects on time and within budget

    • Managed project timelines, resources, and deliverables

    • Collaborated with stakeholders to ensure project goals were met

    • Implemented project management best practices to improve efficiency

    • Experience in creating and executing project plan

  • Answered by AI

Associate Manager Interview Questions asked at other Companies

Q1. How will you calculate tension on the sheet which is being given OFF, by Pay off reel ?
View answer (5)

SDE Interview Questions & Answers

user image Anonymous

posted on 23 Feb 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Coding Test 

2 medium level leet code question.

Round 2 - Technical 

(1 Question)

  • Q1. Face to face interview, 2 medium-level dsa questions, some java and OS basic fundamentals.

SDE Interview Questions asked at other Companies

Q1. Return Subsets Sum to K Problem Statement Given an integer array 'ARR' of size 'N' and an integer 'K', return all the subsets of 'ARR' which sum to 'K'. Explanation: A subset of an array 'ARR' is a tuple that can be obtained from 'ARR' by r... read more
View answer (1)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Level order tree traversal
  • Q2. Find the pair element from the array
  • Ans. 

    Find the pair element from the array

    • Iterate through the array and use a hashmap to store elements and their counts

    • Check if the current element's complement exists in the hashmap

    • Return the pair if found, otherwise return null

  • Answered by AI

Skills evaluated in this interview

Top Snapdeal Software Engineer Interview Questions and Answers

Q1. Find the Next Greater Number with the Same Set of Digits Given a string S that represents a number, determine the smallest number that is strictly greater than the original number and has the same set of digits. The frequency of each digit ... read more
View answer (1)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (196)

Data Engineer Interview Questions & Answers

user image Kishor Kunal

posted on 18 Jan 2025

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

I applied via Recruitment Consulltant and was interviewed before Jan 2024. There was 1 interview round.

Round 1 - Coding Test 

Simple sql and python basic questions was asked.

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare for basic sql and python interview questions

Data Engineer Interview Questions asked at other Companies

Q1. Optimal Strategy for a Coin Game You are playing a coin game with your friend Ninjax. There are N coins placed in a straight line. Here are the rules of the game: 1. Each coin has a value associated with it. 2. The game involves two players... read more
View answer (1)
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Oct 2023. There were 3 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 Resume tips
Round 2 - Group Discussion 

How to work working timing work process salary

Round 3 - HR 

(4 Questions)

  • Q1. Working details
  • Q2. Basic Salary work details timing
  • Q3. Company details
  • Q4. Company working process
  • Ans. 

    The company follows a systematic working process to ensure efficient operations.

    • The company has defined workflows and procedures for each department.

    • Tasks are assigned to employees based on their skills and expertise.

    • There is a clear hierarchy and reporting structure in place.

    • Regular communication and collaboration among team members.

    • The company may use software or tools to streamline data entry processes.

    • Quality check...

  • Answered by AI

Data Entry Operator Interview Questions asked at other Companies

Q1. What is skills matrix of Return center Department?
View answer (43)
Contribute & help others!
anonymous
You can choose to be anonymous

Snapdeal Interview FAQs

How many rounds are there in Snapdeal interview?
Snapdeal interview process usually has 2-3 rounds. The most common rounds in the Snapdeal interview process are One-on-one Round, Resume Shortlist and Technical.
How to prepare for Snapdeal 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, Communication Skills, Java and Content Writing.
What are the top questions asked in Snapdeal interview?

Some of the top questions asked at the Snapdeal interview -

  1. You have a deck of 10 cards.You take one card out and put it on table and put n...read more
  2. There is a file which contains ip addresses and corresponding url. Example 192....read more
  3. How are you suppose to deal with a customer who is already pissed off with the ...read more
How long is the Snapdeal interview process?

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

Recently Viewed

COMPANY BENEFITS

Conneqt Business Solutions

No Benefits

COMPANY BENEFITS

Conneqt Business Solutions

No Benefits

COMPANY BENEFITS

Reliance Industries

No Benefits

SALARIES

Conneqt Business Solutions

INTERVIEWS

ShareChat

No Interviews

SALARIES

Conneqt Business Solutions

REVIEWS

Conneqt Business Solutions

No Reviews

INTERVIEWS

Meesho

No Interviews

INTERVIEWS

Ninjacart

No Interviews

REVIEWS

Conneqt Business Solutions

No Reviews

Tell us how to improve this page.

Snapdeal Interview Process

based on 32 interviews

Interview experience

4.3
  
Good
View more

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 5k Interviews
Flipkart Interview Questions
4.0
 • 1.3k Interviews
Swiggy Interview Questions
3.8
 • 428 Interviews
Udaan Interview Questions
4.0
 • 334 Interviews
Myntra Interview Questions
4.0
 • 214 Interviews
eBay Interview Questions
3.8
 • 20 Interviews
Shopclues Interview Questions
3.9
 • 9 Interviews
Paytm Mall Interview Questions
3.6
 • 7 Interviews
Alibaba Group Interview Questions
4.1
 • 7 Interviews
Shopify Interview Questions
4.0
 • 3 Interviews
View all

Snapdeal Reviews and Ratings

based on 645 reviews

3.8/5

Rating in categories

3.6

Skill development

4.0

Work-life balance

3.5

Salary

3.0

Job security

4.0

Company culture

3.1

Promotions

3.7

Work satisfaction

Explore 645 Reviews and Ratings
Content Writing Internship (6 months) @ Gurgaon

Gurgaon / Gurugram

0-1 Yrs

Not Disclosed

MIS Executive (Ginesys Software) @Gurgaon

Gurgaon / Gurugram

1-6 Yrs

₹ 2-4.5 LPA

Explore more jobs
Assistant Manager
103 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Category Manager
93 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Executive
89 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Deputy Manager
59 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
49 salaries
unlock blur

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