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 and Answers

Updated 20 Jan 2025
Popular Designations

114 Interview questions

🔥 Asked by recruiter 3 times
An Analyst was asked
Q. Why Snapdeal?
Ans. 

Snapdeal is a leading e-commerce company in India with a strong customer base and a wide range of products.

  • Snapdeal has a large customer base in India, which provides a great opportunity for growth and impact.

  • The company offers a wide range of products across various categories, catering to diverse customer needs.

  • Snapdeal has a strong presence in the e-commerce market, competing with other major players.

  • The compan...

View all Analyst interview questions
An Analyst was asked
Q. Estimate the costs of an Auto-Rickshaw driver.
Ans. 

Estimating the costs of an Auto-Rickshaw driver.

  • Consider fuel expenses for the auto-rickshaw.

  • Include maintenance and repair costs.

  • Factor in license and permit fees.

  • Account for insurance premiums.

  • Include daily wages for any helpers or assistants.

  • Consider miscellaneous expenses like parking fees and tolls.

View all Analyst interview questions
A Software Developer was asked
Q. Find the Least Common Multiple (LCM) of all numbers from 1 to n. Provide an algorithm and estimate its time complexity.
Ans. 

Algorithm to find LCM of all numbers from 1 to n and its time complexity

  • Find prime factors of all numbers from 1 to n

  • For each prime factor, find the highest power it appears in any number from 1 to n

  • Multiply all prime factors raised to their highest power to get LCM

  • Time complexity: O(n*log(log(n)))

View all Software Developer interview questions
A Software Developer was asked
Q. Given a dictionary of words and a number n, find the count of all words in the dictionary that can be formed by the given number n.
Ans. 

The question asks to find the count of words in a dictionary that can be formed by a given number.

  • Iterate through each word in the dictionary

  • Check if the characters in the word can be formed using the given number

  • Increment the count if the word can be formed

View all Software Developer interview questions
A Software Developer was asked
Q. What are the differences between SQL and NoSQL databases, and why would you choose NoSQL?
Ans. 

NoSQL databases are flexible, scalable, and can handle large amounts of unstructured data.

  • NoSQL databases are schema-less, allowing for easy and flexible data modeling.

  • They can handle large amounts of unstructured data, making them suitable for big data applications.

  • NoSQL databases are highly scalable and can easily handle high traffic and large user bases.

  • They provide horizontal scalability by distributing data a...

View all Software Developer interview questions
A Software Developer was asked
Q. Given an array of elements, you can only increase array elements. The cost of an operation is the amount of increment made per array element. For a given H, make any H elements of the array equal with minim...
Ans. 

Minimize cost to make H elements of an array equal by only increasing their values.

  • Identify the target value H that elements should be increased to.

  • Calculate the cost for each element that needs to be increased to H.

  • Select the H smallest costs to minimize total cost.

  • Example: For array [2, 3, 5, 6, 4, 4] and H=4, costs are [2, 1, 0, 0, 0, 0]. Total cost = 3.

  • Optimal complexity is achieved by sorting or using a min-h...

View all Software Developer interview questions
An Analyst was asked
Q. How would you eliminate a defective (empty) pack from a group of non-empty packs during transportation loading?
Ans. 

Defective pack elimination during transportation loading

  • Inspect each pack before loading

  • Use a checklist to ensure all packs are accounted for

  • Separate defective packs from non-defective ones

  • Label defective packs clearly

  • Dispose of defective packs properly

  • Train personnel on proper handling procedures

View all Analyst interview questions
Are these interview questions helpful?
A Shift Incharge was asked
Q. What is online shopping What is market need
Ans. 

Online shopping is the process of purchasing goods or services over the internet.

  • Online shopping allows customers to browse and buy products from the comfort of their own homes.

  • It offers convenience, as customers can shop anytime and anywhere.

  • Customers have access to a wide variety of products and can compare prices easily.

  • Online shopping eliminates the need to physically visit stores, saving time and effort.

  • Examp...

View all Shift Incharge interview questions
A Front end Engineer was asked
Q. Explain box model in css, and what is specificity in CSS. What are render-blocking statements?
Ans. 

Box model defines how elements are rendered in CSS. Specificity determines which CSS rule applies to an element. Render-blocking statements delay page rendering.

  • Box model includes content, padding, border, and margin.

  • Specificity is calculated based on the number of selectors and their types.

  • Render-blocking statements are CSS or JavaScript files that prevent the page from rendering until they are loaded.

  • Use media q...

View all Front end Engineer interview questions
An Analyst was asked
Q. Mean median mode, why median is best
Ans. 

Median is best because it is not affected by outliers and gives a better representation of central tendency.

  • Median is the middle value in a dataset, which makes it less affected by extreme values or outliers.

  • It gives a better representation of central tendency as compared to mean, which can be skewed by outliers.

  • Mode is not always useful as it may not exist or may not be unique in a dataset.

  • For example, in a datas...

View all Analyst interview questions

Snapdeal Interview Experiences

75 interviews found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Simple groupby questions in pandas?
  • Ans. 

    GroupBy in pandas allows for data aggregation and transformation based on specific columns.

    • Use `df.groupby('column_name')` to group data by a specific column.

    • Apply aggregation functions like `sum()`, `mean()`, or `count()` after grouping.

    • Example: `df.groupby('category').sum()` sums values for each category.

    • You can group by multiple columns: `df.groupby(['col1', 'col2']).mean()`.

    • Use `agg()` to apply multiple functions: ...

  • Answered by AI
  • Q2. Group by questions in SQL?
  • Ans. 

    Group by in SQL aggregates data based on specified columns, allowing for summary statistics and analysis.

    • The GROUP BY clause groups rows that have the same values in specified columns into summary rows.

    • Common aggregate functions used with GROUP BY include COUNT(), SUM(), AVG(), MAX(), and MIN().

    • Example: SELECT department, COUNT(*) FROM employees GROUP BY department; returns the number of employees in each department.

    • Yo...

  • Answered by AI

Interview Preparation Tips

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

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

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

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
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

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.
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

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
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 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

Top trending discussions

View All
Indian Startups
2w
a senior executive
One of the best sources for Startup investment: DAHEJ(DOWRY)
You won't believe my senior has a good corporate job with over 10 years of experience. But suddenly resigned just a few days after his wedding. We all thought maybe he got married and wants to spend his time with his wife, and decided to go to his place to give him a proper farewell. All of us got shocked after knowing that he left because his father-in-law gifted him a fat cash amount and a car in the name of "blessings." He’s using the money to fund his startup and the car for "business movement." I mean seriously? People are now using dowry as startup capital and walking around acting like CEOs, playing boss with someone else’s money. Bas, shaadi karo aur apne sapne chalu karo, courtesy sasural. I don't know feeling inspired? Or disgusted?
Got a question about Snapdeal?
Ask anonymously on communities.

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, Content Writing and Java.
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. Given an array of elements. We can perform following operation only- Increase a...read more
  3. There is a file which contains ip addresses and corresponding url. Example 192....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.

Tell us how to improve this page.

Overall Interview Experience Rating

4.3/5

based on 33 interview experiences

Difficulty level

Easy 17%
Moderate 83%

Duration

Less than 2 weeks 82%
2-4 weeks 9%
4-6 weeks 9%
View more

Interview Questions from Similar Companies

Swiggy Interview Questions
3.7
 • 474 Interviews
Meesho Interview Questions
3.7
 • 368 Interviews
Udaan Interview Questions
3.9
 • 347 Interviews
Blinkit Interview Questions
3.8
 • 241 Interviews
Oyo Rooms Interview Questions
3.2
 • 230 Interviews
Myntra Interview Questions
3.9
 • 229 Interviews
BlackBuck Interview Questions
3.7
 • 194 Interviews
FirstCry Interview Questions
3.6
 • 187 Interviews
Tata 1mg Interview Questions
3.6
 • 186 Interviews
Spinny Interview Questions
3.7
 • 184 Interviews
View all

Snapdeal Reviews and Ratings

based on 659 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 659 Reviews and Ratings
Content Writer Intern

Gurgaon / Gurugram

0-1 Yrs

Not Disclosed

Business Development Associate

Gurgaon / Gurugram

2-6 Yrs

Not Disclosed

Data Engineer

Gurgaon / Gurugram

2-4 Yrs

₹ 7-23 LPA

Explore more jobs
Assistant Manager
93 salaries
unlock blur

₹5 L/yr - ₹11 L/yr

Senior Executive
84 salaries
unlock blur

₹2.8 L/yr - ₹5.8 L/yr

Category Manager
82 salaries
unlock blur

₹6.9 L/yr - ₹23 L/yr

Deputy Manager
56 salaries
unlock blur

₹5.5 L/yr - ₹12 L/yr

Senior Software Engineer
51 salaries
unlock blur

₹12 L/yr - ₹29.5 L/yr

Explore more salaries
Compare Snapdeal with

Flipkart

3.9
Compare

Amazon

4.0
Compare

Meesho

3.7
Compare

eBay

4.0
Compare
write
Share an Interview