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

105 Interview questions

A Data Scientist was asked 11mo ago
Q. What are some 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 functi...

View all Data Scientist interview questions
A Data Scientist was asked 11mo ago
Q. How do you use GROUP BY 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 departme...

View all Data Scientist interview questions
A Graduate Engineer was asked 12mo ago
Q. Given a roman numeral, convert it to an 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.

View all Graduate Engineer interview questions
A Software Engineer was asked
Q. Given an array, find a pair of elements.
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

View all Software Engineer interview questions
A Business Analyst was asked
Q. How would you improve the 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 a...

View all Business Analyst interview questions
A Business Analyst was asked
Q. How would you design a 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 servi...

View all Business Analyst interview questions
A Front end Engineer was asked
Q. How would you implement infinite scrolling in React.js?
Ans. 

Implement infinite scrolling in React JS using Intersection Observer API.

  • Use Intersection Observer API to detect when the user has scrolled to the bottom of the page.

  • Fetch new data and append it to the existing data using setState.

  • Use a loading spinner to indicate that new data is being fetched.

  • Add a debounce function to prevent multiple API calls while scrolling.

  • Use a key prop when rendering the list of data to a...

View all Front end Engineer interview questions
Are these interview questions helpful?
A Front end Engineer was asked
Q. Write code to determine if an input date is today or tomorrow based on the current date. If it's neither, output the number of days difference between the input date and the current date.
Ans. 

Code to find if input date is today/tomorrow or no of days difference from current date.

  • Get current date using Date() constructor

  • Convert input date to Date object

  • Compare input date with current date to check if it's today/tomorrow

  • If not, calculate the difference in days using getTime() method

  • Output the result accordingly

View all Front end Engineer interview questions
A Front end Engineer was asked
Q. What is bind in JavaScript, and can you write its polyfill?
Ans. 

Bind creates a new function with a specified 'this' value and arguments.

  • Bind returns a new function with the same body as the original function.

  • The 'this' value of the new function is bound to the first argument passed to bind().

  • The subsequent arguments are passed as arguments to the new function.

  • Polyfill for bind() can be created using call() or apply() methods.

View all Front end Engineer interview questions
A Front end Engineer was asked
Q. Tell me about Sass (Syntactically Awesome Style Sheets).
Ans. 

Saas is a CSS preprocessor that extends the functionality of CSS with variables, mixins, and more.

  • Saas stands for Syntactically Awesome Style Sheets

  • It allows for the use of variables, mixins, and functions in CSS

  • Saas code must be compiled into CSS before it can be used in a web page

  • Saas is often used in conjunction with build tools like Gulp or Webpack

View all Front end Engineer 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