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

A Software Developer was asked
Q. Given the root of a binary tree, return the length of the diameter of the tree.
Ans. 

The diameter of a binary tree is the number of nodes on the longest path between two leaves in the tree.

  • The diameter of a binary tree can be calculated by finding the longest path between two nodes in the tree.

  • It is not necessarily the same as the height of the tree.

  • The diameter can be found by calculating the sum of the heights of the left and right subtrees of each node.

A Software Developer was asked
Q. Given a sorted array, describe the approach to construct a balanced Binary Search Tree (BST) from it. Also, explain the basic insertion and deletion operations in a BST.
Ans. 

To create a balanced binary search tree from a sorted array, use the middle element as the root and recursively build left and right subtrees.

  • Start with the middle element of the array as the root of the BST.

  • Recursively build the left subtree with elements to the left of the middle element.

  • Recursively build the right subtree with elements to the right of the middle element.

A Software Developer was asked
Q. Given two linked lists that merge at a point, find the merging point.
Ans. 

To find the merging point of two linked lists

  • Traverse both linked lists and find their lengths

  • Move the pointer of the longer list by the difference in lengths

  • Traverse both lists simultaneously until they meet at the merging point

View all Software Developer interview questions
A Software Developer was asked
Q. Given an M x N matrix, how many rectangles are there?
Ans. 

The number of rectangles in an MxN matrix can be calculated using a formula.

  • The formula is (M * (M + 1) * N * (N + 1)) / 4

  • The matrix can be divided into smaller sub-matrices to count the rectangles

  • The number of rectangles can also be calculated by counting all possible pairs of rows and columns

View all Software Developer interview questions
A Software Developer was asked
Q. Find a four-digit number in the form aabb that is a perfect square.
Ans. 

The number is 7744.

  • The number must end in 00 or 44.

  • The square root of the number must be a whole number.

  • The only possible number is 7744.

View all Software Developer interview questions
A Software Developer was asked
Q. Write a Java function that takes a file containing IP addresses and corresponding URLs (e.g., PHONE_NUMBER.1.15 www.abc.com 10.PHONE_NUMBER.40) as input, and returns the subnet mask of the IP address and th...
Ans. 

Java function to return subnet mask of IP and URL after www.

  • Read the file and store IP addresses and URLs in separate arrays

  • Use regex to extract subnet mask from IP address

  • Use substring to extract URL after www.

  • Return subnet mask and URL as separate strings

View all Software Developer interview questions
A Software Developer was asked
Q. Given the head of a singly linked list, reverse the list, and return the reversed list.
Ans. 

Reverse a linked list iteratively

  • Create three pointers: prev, curr, and next

  • Initialize prev to null and curr to head

  • Loop through the list and set next to curr's next node

  • Set curr's next node to prev

  • Move prev and curr one step forward

  • Return prev as the new head

View all Software Developer interview questions
Are these interview questions helpful?
A Software Developer was asked
Q. A linked list contains a loop. Find the length of the non-looped linked list.
Ans. 

To find the length of non-looped linked list, we need to traverse the list and count the number of nodes.

  • Traverse the linked list using a pointer and count the number of nodes until the end of the list is reached.

  • If a loop is encountered, break out of the loop and continue counting until the end of the list.

  • Return the count as the length of the non-looped linked list.

View all Software Developer interview questions
A Software Developer was asked
Q. What are inner join and outer join in SQL?
Ans. 

Inner join returns only the matching rows between two tables, while outer join returns all rows from one table and matching rows from the other.

  • Inner join combines rows from two tables based on a matching column.

  • Outer join returns all rows from one table and matching rows from the other.

  • Left outer join returns all rows from the left table and matching rows from the right table.

  • Right outer join returns all rows fro...

View all Software Developer interview questions
A Software Developer was asked
Q. Given a non-negative integer x, compute and return the square root of x.
Ans. 

To find square root of a number, use Math.sqrt() function in JavaScript.

  • Use Math.sqrt() function in JavaScript to find square root of a number.

  • For example, Math.sqrt(16) will return 4.

  • If the number is negative, Math.sqrt() will return NaN.

View all Software Developer 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
Interview Tips & Stories
5d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
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 658 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 658 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

₹11.2 L/yr - ₹18.4 L/yr

Deputy Manager
66 salaries
unlock blur

₹5.5 L/yr - ₹12 L/yr

Senior Software Engineer
51 salaries
unlock blur

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