Upload Button Icon Add office photos

Filter interviews by

Shopclues SDE Interview Questions and Answers

Updated 14 Mar 2015

Shopclues SDE Interview Experiences

1 interview found

SDE Interview Questions & Answers

user image Anshul Garg

posted on 10 Mar 2015

Interview Questionnaire 

4 Questions

  • Q1. Tell me about yourself ?
  • Ans. 

    I am a highly motivated individual with a passion for learning and a strong work ethic.

    • I have a degree in computer science and have worked as a software developer for 3 years.

    • I am proficient in multiple programming languages including Java, Python, and C++.

    • I enjoy working in a team environment and am always willing to lend a helping hand.

    • In my free time, I enjoy hiking and playing guitar.

  • Answered by AI
  • Q2. What is your passion ?
  • Ans. 

    My passion is creating meaningful connections with people through storytelling and communication.

    • I love writing and sharing stories that inspire and connect with others

    • I enjoy public speaking and engaging with audiences

    • I am constantly seeking new ways to improve my communication skills

    • I believe that effective communication is key to building strong relationships

    • Examples: writing a blog, giving a TED talk, hosting a pod

  • Answered by AI
  • Q3. What do you want to achieve ?
  • Ans. 

    I want to achieve personal and professional growth while making a positive impact on the world.

    • Develop new skills and knowledge through continuous learning

    • Advance in my career and take on new challenges

    • Contribute to society through volunteering and charitable work

    • Create meaningful relationships with family, friends, and colleagues

    • Maintain a healthy work-life balance

  • Answered by AI
  • Q4. Other personal questions

Interview Preparation Tips

Round: Technical Interview
Experience: The first round was started with few theoretical questions. The questions were either in the form of Puzzles, Data structures & Algorithms,
and a few php questions revolving around errors in PHP, sessions & cookies.
Tips: Your resume should be both clear & concise.

Round: HR Interview
Tips: Be confident & tell what they want to hear.

Skills: Algorithms, Web skills
College Name: IIT ROORKEE
Motivation: Passion for eCommerce.

Interview questions from similar companies

SDE Interview Questions & Answers

Myntra user image Anonymous

posted on 9 Sep 2024

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

Coding round has two questions ranging in medium -hard level leetcode questions

Round 2 - Technical 

(3 Questions)

  • Q1. Doubly Linked List
  • Q2. Graph - topological sort
  • Q3. Operating system, database management system
Round 3 - Technical 

(2 Questions)

  • Q1. Longest Common Subsequence
  • Ans. 

    Longest Common Subsequence is the longest sequence of characters that appear in the same order in both strings.

    • Use dynamic programming to solve this problem efficiently.

    • Create a 2D array to store the lengths of longest common subsequences.

    • Iterate through the strings to fill the array and find the longest common subsequence.

  • Answered by AI
  • Q2. Largest area in histogram
  • Ans. 

    The largest area in a histogram refers to the rectangle with the maximum area that can be formed within the histogram bars.

    • Identify the largest rectangle that can be formed by considering each bar as a potential height and calculating the area based on the width of the rectangle.

    • Use a stack data structure to efficiently find the largest area in a histogram by keeping track of the indices of the bars in non-decreasing o...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - make sure to revise sde sheet properly for interviews

Skills evaluated in this interview

SDE Interview Questions & Answers

Meesho user image Anonymous

posted on 6 Dec 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Write system design for cab booking system
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

The aptitude test consist of 50 questions which was simple and mixed if all concepts

Round 2 - Coding Test 

Only one easy coding question

Round 3 - Technical 

(2 Questions)

  • Q1. About Linked List
  • Q2. Basic level understanding questions on DBMS and other concepts
Round 4 - Technical 

(1 Question)

  • Q1. Basic Technical questions

SDE Interview Questions & Answers

Blinkit user image Anonymous

posted on 22 Jun 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Predict the winner leetcode problem
  • Ans. 

    The winner leetcode problem involves finding the candidate with the most votes in an election scenario.

    • Iterate through the list of candidates and keep track of their votes

    • Return the candidate with the highest number of votes

    • Example: Input - ['Alice', 'Bob', 'Alice', 'Charlie', 'Bob'], Output - 'Alice'

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice DSA

Skills evaluated in this interview

SDE Interview Questions & Answers

Snapdeal 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 & Answers

Swiggy user image Anonymous

posted on 22 Jun 2024

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

It had 9 uqestions , one problem solving , one SQL , one API and 6 mcq

Round 2 - Assignment 

Easy assignment , if you hav eOOps knowledge you can do it

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. System design of Cricbuzz
  • Ans. 

    Cricbuzz system design involves handling real-time sports data, user traffic, and providing live scores, news, and updates.

    • Use microservices architecture to handle different functionalities like live scores, news, and updates.

    • Implement caching mechanisms to reduce load on servers and improve performance.

    • Utilize a distributed database to store large amounts of sports data efficiently.

    • Implement a robust notification syst...

  • Answered by AI

Skills evaluated in this interview

SDE Interview Questions & Answers

LinkedIn user image Anonymous

posted on 25 May 2015

Interview Preparation Tips

Round: Test
Experience: First there was an online round on hackerrank where they asked 4 simple coding questions about DP, strings and stacks. In this round the selected 3 candidates.

Round: TECHNICAL INTERVIEW
Experience: In first round they asked me 2 coding questions where he asked me to code as close as possible to the actual one.

First question was you are given a array of string followed by two words. You have to find the minimum distance between the two words in the given array of string. For example:

(“the”, “quick”, “brown”, “fox”, “quick”)

distance(“fox”,”the”) == 3

distance(“quick”, “fox”) == 1Second qustion:Given two sorted array of Strings, Implement a merged sorted array of stringA[ ] = {"good", "person" }

B[ ] = { "he", "is" }

return { "good", "he", "is", "person"}

After this round they selected all three.

Round: TECHNICAL INTERVIEW
Experience: Then in the second round they asked a little about tree and told me to code 2 codes.

First one : You are supposed to do a level order traversal of a binary tree(not necessarily complete) and have to print a special character(say ‘$’) after completion of each level.

Second: Given a number print all the combination in which no. can be printed.

for eg.Input:

3

Output:

2 1

1 2

1 1 2After this round they selected 2 candidates including me.

General Tips: Tips for the interview:Just be relaxed interview will be simple you just need be calm and do not make small mistakes like ‘;’. Interviewer’s? main focus will be on end cases, so keep all end cases in mind while coding. Before start anything keep clear what you are going to code. Finally think out loud. Best of luck.
College Name: VIT CHENNAI

SDE Interview Questions & Answers

Myntra user image Anonymous

posted on 22 Oct 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

There was only two coding questions in 50 minutes interview

Round 2 - Technical 

(3 Questions)

  • Q1. One coding question
  • Q2. Only one coding question
  • Q3. Medium level coding question

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA medium level questions

Tell us how to improve this page.

SDE Interview Questions from Similar Companies

Flipkart SDE Interview Questions
4.0
 • 5 Interviews
Myntra SDE Interview Questions
4.0
 • 3 Interviews
Meesho SDE Interview Questions
3.7
 • 3 Interviews
Snapdeal SDE Interview Questions
3.8
 • 1 Interview
Swiggy SDE Interview Questions
3.8
 • 1 Interview
Blinkit SDE Interview Questions
3.7
 • 1 Interview
LinkedIn SDE Interview Questions
4.3
 • 1 Interview
Rivigo SDE Interview Questions
3.9
 • 1 Interview
View all
Software Engineer
50 salaries
unlock blur

₹4.5 L/yr - ₹11 L/yr

Senior Analyst
44 salaries
unlock blur

₹3 L/yr - ₹5.3 L/yr

Analyst
36 salaries
unlock blur

₹2.5 L/yr - ₹4.1 L/yr

Category Manager
26 salaries
unlock blur

₹6.5 L/yr - ₹18.5 L/yr

Senior Software Engineer
26 salaries
unlock blur

₹9 L/yr - ₹25 L/yr

Explore more salaries
Compare Shopclues with

Amazon

4.1
Compare

Flipkart

4.0
Compare

Snapdeal

3.8
Compare

Paytm Mall

3.6
Compare
Did you find this page helpful?
Yes No
write
Share an Interview