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

Round: Test
Experience: Algorithmic coding test was conducted on hackerank platform. Around 60 students gave online test. There were 4-5 algo questions to be done in 90 mins duration.

Tips: Try to do at least 2 questions.

Round: Technical Interview
Experience: First Interviewer asked me to introduce myself. Then he asked me questions on data structures & Algo. He asked me about tree data structures, why it is used, time complexities of various operations on tree, balancing of tree, AVL Tree. He asked me write AVL Tree insertion, deletion, update code. Then he jumps to BTree, B+Tree and asks me write code on paper for various operations. Questions were asked on indexing, various types of indexing, how it is used in databases, etc. Then he briefly asked about the project I done in my internship.


Round: Technical Interview
Experience: Interviewer asked me how was my 1st round, I said it was great. He first asked me introduce myself. Then he asked about my projects mentioned in my resume. I done a project in machine learning on spam webpage detection. He was interested in that. He asked me what language, libraries I used to implement that project. Then he gave me real time scenario to predict whether an item is explosive or not. Then I approached this problem and asked information related to problem. He was impressed by the approach I target the problem. He asked me what machine learning model will be best and what are their pros and cons. Then he asked me question that given 100 sorted linked lists, you have to merge them and return single sorted linked list. I gave 3-4 solutions with their time & space complexities.


Round: HR Interview
Experience: Interviewer asked me common HR questions like tell me about yourself, my family background, why do you want to join the company, what impact you can make in Snapdeal, why should we hire you. After that he congratulated me for the role of SDE at Snapdeal. I was very happy at that moment.

All the 5 students cleared this round.

Skills: SQL, ML, Algorithms And Data Structures, Python, Basic C/C++
College Name: IIT Guwahati

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)

Content Developer Interview Questions & Answers

user image Shreya Shubham

posted on 29 Jul 2017

I was interviewed before Jul 2016.

Interview Questionnaire 

1 Question

  • Q1. Develop a content on products

Interview Preparation Tips

College Name: Delhi University

Content Developer Interview Questions asked at other Companies

Q1. How would you explain to a 7th grade student if he asked why the sky is blue?
View answer (2)
Snapdeal Interview Questions and Answers for Freshers
illustration image

I was interviewed before Apr 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Easy

There were 22 MCQ questions of aptitude and technical based while 3 questions were of coding type.
Tips: MCQ questions were not time consuming , so try to do that questions in less time , so you will get enough time for coding questions.

  • Q1. 

    Balanced Parentheses Check

    Given a string STR consisting solely of the characters '{', '}', '(', ')', '[', and ']', determine whether the parentheses are balanced.

    Input:

    The first line contains an inte...
  • Ans. 

    Implement a function to check if parentheses in a string are balanced.

    • Use a stack to keep track of opening parentheses and pop when a closing parenthesis is encountered.

    • If the stack is empty when a closing parenthesis is encountered or if there are unmatched parentheses at the end, return 'NO'.

    • Ensure that all opening parentheses have a corresponding closing parenthesis in the correct order.

    • Return 'YES' if all parenthes...

  • Answered by AI
  • Q2. 

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

  • Ans. 

    The task is to find the smallest number greater than the given number with the same set of digits.

    • Sort the digits of the number in descending order.

    • Find the first digit from the right that is smaller than the digit to its right.

    • Swap this digit with the smallest digit to its right that is greater than it.

    • Sort all the digits to the right of the swapped digit in ascending order to get the smallest number greater than the

  • Answered by AI
Round 2 - Face to Face 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

My experience was very awesome , I answered all the questions , although in starting I was very nervous , so at starting interviewer help me get my confidence, interviewer was very helpful.

  • Q1. 

    Maximum Level Sum in Binary Tree Problem Statement

    Given an arbitrary binary tree consisting of N nodes, where each node is associated with a certain value, your task is to find the maximum sum for any le...

  • Ans. 

    Find the maximum sum for any level in a binary tree.

    • Traverse the binary tree level by level and calculate the sum for each level.

    • Keep track of the maximum sum encountered so far.

    • Return the maximum sum found.

    • Example: For the input tree, the maximum level sum is 13 (5+6+2).

  • Answered by AI
  • Q2. 

    Find Top K Frequent Numbers in a Stream

    Given an integer array ARR and an integer K, your task is to find the K most frequent elements in ARR. Return the elements sorted in ascending order.

    Example:

    Inp...
  • Ans. 

    Find the K most frequent elements in an integer array and return them sorted in ascending order.

    • Use a hashmap to store the frequency of each element in the array.

    • Use a min heap to keep track of the K most frequent elements.

    • Return the elements from the min heap in ascending order.

  • Answered by AI
Round 3 - Face to Face 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

This round was based on DSA and questions on core subjects that I had studied throughout college.

  • Q1. 

    Vertical Sum in a Binary Tree

    Given a binary tree where each node has a positive integer value, compute the vertical sum of the nodes. The vertical sum is defined as the sum of all nodes aligned along the...

  • Ans. 

    Compute the vertical sum of nodes in a binary tree aligned along the same vertical line.

    • Traverse the binary tree in a level order manner to calculate the vertical sum.

    • Use a hashmap to store the vertical sum at each vertical level.

    • Recursively traverse the tree and update the vertical sum in the hashmap.

    • Output the vertical sums in the required format for each test case.

  • Answered by AI
  • Q2. What is TCP/IP?
  • Ans. 

    TCP/IP is a set of protocols that governs the way data is transmitted over the internet.

    • TCP/IP stands for Transmission Control Protocol/Internet Protocol.

    • It is a suite of communication protocols used to connect devices on the internet.

    • TCP ensures that data is reliably transmitted between devices.

    • IP is responsible for addressing and routing data packets across networks.

    • Examples of TCP/IP protocols include HTTP, FTP, and

  • Answered by AI
Round 4 - HR 

Round duration - 30 minutes
Round difficulty - Easy

Experience : Keep confidence and show them good communication skills. Previous round's performance also matters in this rounds

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPASnapdeal interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 5 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 interviewSelected

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)

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. 

    Count the total number of set bits in the binary representation of numbers from 1 to N, modulo 10^9+7.

    • Iterate through numbers from 1 to N and count the set bits in their binary representation

    • Use bitwise operations to count set bits efficiently

    • Return the total count modulo 10^9+7 as the result

  • Answered by AI
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. 

    Merge two sorted arrays into one sorted array in place.

    • Iterate from the end of both arrays and compare elements to merge in place

    • Use two pointers to keep track of the current position in both arrays

    • Handle cases where one array is fully merged before the other

  • Answered by AI

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

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)

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)

Software Developer Interview Questions & Answers

user image Ankit Goenka

posted on 26 Jan 2015

Interview Questionnaire 

1 Question

  • Q1. Questions based on tree

Interview Preparation Tips

Round: Test
Experience: Keep your Calm
Tips: Practice matters
Duration: 90 minutes
Total Questions: 30

Round: Interview
Tips: They are not going to eat you.. they will help you out only...
So just go inside the interview room as some of your friends called you to ask some question..relax

Skills: Thinking Process
College Name: IIT GUWHATI

Top Snapdeal Software Developer Interview Questions and Answers

Q1. Closest Pair of Points Problem Statement Given an array containing 'N' points in a plane, your task is to find the distance between the closest pair of points. Explanation: The distance between two points, (x1, y1) and (x2, y2), is calculat... read more
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)

Get interview-ready with Top Snapdeal Interview Questions

Interview Questionnaire 

7 Questions

  • Q1. Discussion on internship at IBM' Cloud Unit
  • Q2. Find LCM of all numbers from 1 to n. Give an algorithm, then correctly estimate the 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)))

  • Answered by AI
  • Q3. SQL vs NoSQL. Why 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 across...

  • Answered by AI
  • Q4. Some DBMS designing question relating to Snapdeal website
  • Q5. JAVA-Spring and Hibernate
  • Q6. Variation of -----/ Given a dictionary of words and a number n. Find count of all words in dictionary that can be formed by 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

  • Answered by AI
  • Q7. Given an array of elements. We can perform following operation only- Increase an array element. Cost of operation is the amount of increment made per array element. Now for a given H, we need to make any H...

Interview Preparation Tips

Round: Test
Experience: I did both coding question ( 1 full and 2nd partial ) and 5 MCQ only and was shortlisted
Tips: Refer to interview sets on Geeksforgeeks.
Do solve both the coding questions first. Not necessary to pass all test cases for both.
Then go for C based o/p questions. At last aptitude.
Duration: 60 minutes
Total Questions: 23

Round: Technical Interview
Experience: I did not know JAVA and DBMS so could not answer any of the last 2 questions. I told him directly thati had no experience in JAVA / DBMS and justified. I had proficiency in Data Structure and Algorithms and I beleive the interviewer liked my internship work on Cloud / Virtualization
Tips: Focus on Data Strucure-Algorithms, JAVA, DBMS, Puzzles

Round: Test
Experience: All repeated questions from previous interviews.
Tips: Refer interview set from geeksforgeeks.org
Duration: 60 minutes
Total Questions: 3

Round: Technical Interview
Experience: For the first question, I started by exponential solution and reduced it to polynomial. We
discussed various approaches and tried a variety of methods and after
1-1.5 hrs of discussion finally ended up with an O(1) solution with some
pre-processing overhead. After achiveing O(1) time complexity, he asked
to further optimize the space complexity.

Usage of Trie / TST. Internal Implementation of Hashing structure and replacing the hashing mechanism using Trie / TST.
Tips: Focus on Tree, Stacks, Queue, Linked List, Hash Maps, Trie, Hashing, String Algorithms, Ternary Search Tree

Round: HR Interview
Experience: Typical HR

General Tips: Practice programming
Skill Tips: Focus on Data Structure-Algorithms and programming in either C++ / JAVA
Skills: Data Structure, Algorithms, Programing, JAVA, DBMS
College Name: Indian Institute of Information Technology, Design and Manufacturing, Jabalpur
Motivation: -
Funny Moments: -

Skills evaluated in this interview

Top Snapdeal Software Developer Interview Questions and Answers

Q1. Closest Pair of Points Problem Statement Given an array containing 'N' points in a plane, your task is to find the distance between the closest pair of points. Explanation: The distance between two points, (x1, y1) and (x2, y2), is calculat... read more
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)

Jobs at Snapdeal

View all

Analyst Interview Questions & Answers

user image Kaustubh Gupta

posted on 11 Mar 2015

Interview Questionnaire 

5 Questions

  • Q1. Estimate the revenue of a Dominos outlet
  • Ans. 

    Estimating the revenue of a Dominos outlet

    • Consider the average number of orders per day

    • Calculate the average order value

    • Multiply the average number of orders by the average order value

    • Take into account any seasonal variations or promotions

    • Consider the location and population density of the outlet

    • Analyze the competition in the area

    • Factor in the operating expenses and profit margin

  • Answered by AI
  • Q2. Tell me about yourself
  • Ans. 

    I am an experienced analyst with a strong background in data analysis and problem-solving.

    • Experienced analyst with a track record of successfully analyzing complex data sets

    • Proficient in using statistical software and data visualization tools

    • Strong problem-solving skills and ability to identify trends and patterns

    • Excellent communication and presentation skills

    • Ability to work independently and collaborate with cross-fun

  • Answered by AI
  • Q3. Why E-commerce (or whatever field you're applying to)?
  • Q4. Why Snapdeal (or whatever company it is)?
  • 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 company has...

  • Answered by AI
  • Q5. Estimate the costs of an Auto-Rickshaw driver. (No time frame)
  • 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.

  • Answered by AI

Interview Preparation Tips

Round: Resume Shortlist
Experience: It was a bit disappointing to not get shortlisted in a couple of companies I was looking forward to, but I really didn't expect much with my CPI (6 pointer during placements). But my internship helped me loads and gave my resume one 'spike' which became crucial.
Tips: Maintain a good CPI, as you've heard from every senior, but is necessary. Also keep a couple of profiles in your mind, which you want to work in, and then create a resume as such, and take up internships and POR's, all good spikes for which a recruiter, mostly including an IIT alumnus look for.

Round: Test
Experience: A make or break situation for me due to my poor CPI. Fortunately I got shortlisted in almost all companies for which I gave the test, for GD and so on, so it's a very very crucial part of the placement process.
Tips: Be smart during giving your tests. The recruiter judges your decision making skills and speed skills through this. Specially with students with an average CPI, this is the most important step as companies that come for mass recruitment make their decision on this basis.
Duration: 12 minutes
Total Questions: 50

Round: Group Discussion
Experience: For SnapDeal, they had what they called a Group Activity but it was per se a GD. They gave us a problem, a general aptitude question and they gave us hints in order to solve it. I tried to take charge and maintain decorum among 20 people there and it helped.
I was way more silent during my GD for Flipkart and that is the worst thing I could have done.
Tips: Always speak up. Content matters less, being smart and practical matters more. You can twist the points of another person, but keep your stand, whatever side you take. Just keep calm and speak your heart out. Also, give everyone a chance. If someone in the room hasn't spoken a word for some while, take the initiative to stop the discussion then and there and ask that person his/her views. A moderator is not always looking at a person who starts or ends well, he might be looking for a person who is a team player.
Duration: 20 minutes

Round: Problem Statement
Experience: Unfortunately never had the chance to tackle this part of the process.
Tips: Do what you feel is right, even if it's going wrong. An attempt matters, don't leave the space blank.

Round: Case Study Interview
Experience: There were different approaches to tackle this problem, and I mostly took the most complicated and inaccurate one. But I was confident in what I was doing. I estimated the amount of pizzas delivered and purchased on the spot, estimated the number of people served by the outlet area-wise, where I could have used an age distribution method. I guesstimated the cost of one pizza, also dividing into sizes and also included other side orders. The interviewer was happy and got selected in to the next round. This is for a company by Indus Insights, a consulting firm.
Tips: Practice makes perfect. Cover all case interviews and practice hard, specially for a consulting firm obviously. Be confident with the method you use, and constantly interact with the interviewer. Do not underestimate the importance of keeping the interviewer in the loop. Tell him/her what you are thinking, even though it's rubbish, and ask them for clarifications wherever you're stuck. It's not just your problem solving skills, it's a test to how you present the solution to a potential client.

Round: HR Interview
Experience: I started off with my basic introduction i.e. Name, Branch, hometown etc. Then I shifted to my intern as it had been the most recent activity I had done. So on, I continued covering all my internships and POR and then told some of my hobbies. Regarding the why e-commerce question, I mentioned the fact that it's the fastest growing market in the world, and the company is among the top firms in this market.
Tips: Its important to prepare these questions before hand. These are make or break questions as these relate to whether you'll fit the dynamics of the firm. Its important to be energetic and lively. What you show in the interview is exactly what they perceive to be your general status and personality. Always saw the firm excites you and you should be aware of the functioning of the market and the firm. Studying up earlier is a must, regarding recent developments in general as well.
Don't be afraid to cross question regarding the company and other affairs related to the company.
I wasn't asked a behavioural question as such, but try not to get cocky. Keep it simple, and don't get frustrated.

Round: Guesstimate Interview
Experience: I started off by asking the time frame. Nothing was cleared by the interviewer so I started asking the basic questions, regarding city, etc. I broke down the costs i.e. Personal and related to maintenance. Asked a ton of questions in order to keep the interviewer involved.
Tips: A guesstimate is quite similar to a case interview, but this tests more general knowledge wherein a case questions your intellect on the case itself. Similar tips as to tackling a case, but you make loads of assumptions yourself. Read some population and area data of major Indian cities before hand, and keep asking whether the assumptions you're making sound reasonable or not. Don't worry if the answer is too random, it's more about the process rather than the figure.
Also, if you have read up before on how to solve guesstimates, you'll face something called as Sanity check. In the interview, you aren't asked to do one, try and avoid unless you are really confident.

General Tips: Don't lose hope. Placements are a tiring process. People with brilliant resumes don't get placed and haven't gotten placed yet. So keep on fighting, you will get placed in a good company with a good package soon. Also don't reject a company if the package is okay, it's your first job. You are being awarded money based on one interview, they don't know your work yet. So choose a job where you like the profile instead of the money.
Skill Tips: Speed is crucial in the tests. Half of the people usually complain on missing out on questions.
Skills: Speed, Aptitude
College Name: IIT BOMBAY
Motivation: It is a fast growing company in the fastest growing market. A company where growth is fast and leaning experience is endless. They have also taken up social projects towards which I have some inclinations so that helped.
Funny Moments: One of my friend got placed a day before me in Olacabs, and had a higher CPI than me. The day I got placed he was with me, and I could not help laughing the fact that I had a higher package.

Top Snapdeal Analyst Interview Questions and Answers

Q1. Cube with six colors how many different cubes can be obtained?
View answer (1)

Analyst Interview Questions asked at other Companies

Q1. N-th Fibonacci Number Problem Statement Given an integer ‘N’, your task is to find and return the N’th Fibonacci number using matrix exponentiation. Since the answer can be very large, return the answer modulo 10^9 + 7. Formula: F(n) = F(n-... read more
View answer (1)

Analyst Interview Questions & Answers

user image Ravi Suman

posted on 14 Jan 2015

Interview Questionnaire 

2 Questions

  • Q1. Number of Umbrella sold in India during rainy seasons
  • Ans. 

    The number of umbrellas sold in India during rainy seasons varies depending on factors such as rainfall intensity and geographical location.

    • The demand for umbrellas is generally higher in regions with heavy rainfall.

    • Urban areas with higher population density may have a higher demand for umbrellas.

    • Factors like price, availability, and marketing strategies also influence umbrella sales.

    • Sales data from previous years can ...

  • Answered by AI
  • Q2. Walk be through your CV and explain each thing in detail
  • Ans. 

    I will explain each section of my CV in detail.

    • Education: I completed my Bachelor's degree in Economics at XYZ University. I focused on macroeconomics and econometrics, conducting research on the impact of fiscal policy on economic growth.

    • Internship: I interned at ABC Company, where I worked closely with the data analysis team. I gained hands-on experience in data collection, cleaning, and analysis using tools like Exc...

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: The test is easy one.
Tips: Speed is what matters.
Duration: 12 minutes
Total Questions: 50

Round: Group Discussion
Experience: The topics are pretty relevant to the e-commerce fields.
Tips: Stick to general Group Discussion fundamentals.
Duration: 8 minutes

Round: Interview
Experience: Easy peasy.
Tips: Normal guesstimates practice should be sufficient.

General Tips: Be confident about what you are writing in the CV and you must be able to defend each points in the CV.A startup might help you.
Skill Tips: ""
Skills: Analysis, SAS
College Name: IIT Kharagpur

Top Snapdeal Analyst Interview Questions and Answers

Q1. Cube with six colors how many different cubes can be obtained?
View answer (1)

Analyst Interview Questions asked at other Companies

Q1. N-th Fibonacci Number Problem Statement Given an integer ‘N’, your task is to find and return the N’th Fibonacci number using matrix exponentiation. Since the answer can be very large, return the answer modulo 10^9 + 7. Formula: F(n) = F(n-... read more
View answer (1)

Software Developer Interview Questions & Answers

user image Abhinav Anand

posted on 26 Jan 2015

Interview Preparation Tips

Round: Test
Experience: It was a test of speed as well as accuracy. There were very basic questions of maths and aptitude. Anyone with some practice could clear the test.
Duration: 12 minutes
Total Questions: 50

Round: Test
Experience: The second round was a test of your coding ability, again basic C++ questions, which could be solved easily with some practice of competitive coding.
Tips: Do practice coding on online platforms(hacker-rank, co-cubes, etc) before, as the test was held on these platforms only.

Round: interview 1
Experience: Most of the puzzles asked were of standard type, that can be practiced by following any standard text book or any site.
Tips: Keep discussing puzzles among your group, that would benefit you and the group at the same time.

Round: interview 2
Experience: It was a test of my approach to any question rather than the exact solution. It was kind of a very interactive session rather than a formal one. They asked questions related to the courses that I had undergone and not anything from some other planet.
Tips: Feel free to ask the interviewer for some hints or if your approach is correct or not.

General Tips: Be confident and just try to tackle every problem in a very organised manner (as you would have practiced before in your group or during practice).
Skill Tips: You need to have a strong grip on DS and Algo as this is the most important aspect that they wanted any student to have.
Skills: Data structures, Parallel computing, algorithms
College Name: IIT GUWHATI

Top Snapdeal Software Developer Interview Questions and Answers

Q1. Closest Pair of Points Problem Statement Given an array containing 'N' points in a plane, your task is to find the distance between the closest pair of points. Explanation: The distance between two points, (x1, y1) and (x2, y2), is calculat... read more
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)

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

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

REVIEWS

Schlumberger

No Reviews

REVIEWS

Schlumberger

No Reviews

INTERVIEWS

Snapdeal

No Interviews

INTERVIEWS

Zetwerk

No Interviews

JOBS

Zetwerk

No Jobs

SALARIES

Spinny

REVIEWS

Schlumberger

No Reviews

REVIEWS

Schlumberger

No Reviews

INTERVIEWS

Moglix

No Interviews

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