Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Flipkart Team. If you also belong to the team, you can get access from here

Flipkart Verified Tick

Compare button icon Compare button icon Compare
4.0

based on 10.4k Reviews

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Flipkart SDE-1 Position Interview Questions and Answers

Updated 2 Jul 2021

Flipkart SDE-1 Position Interview Experiences

1 interview found

I applied via Company Website and was interviewed before Jul 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Design covid -19 vaccintion booking system feature include: user registration with unique id,capacity of center,cancel booking, list wher vaccination is present

Skills evaluated in this interview

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. Contiguous Subarray with sum = 0
  • Ans. 

    Find all contiguous subarrays in an array with sum equal to zero.

    • Use a hash table to store the sum of subarrays and their ending index.

    • Traverse the array and calculate the sum of subarrays.

    • If the sum is zero or already exists in the hash table, print the subarray.

    • Time complexity: O(n), Space complexity: O(n).

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - For round 1 most of the questions are around array and strings (Go through all Algo's of arrays)

Skills evaluated in this interview

Interview Preparation Tips

Round: 1st Round
Experience: Q1 – Clone a graph. ( Similar Question -> -----/)
Basically while cloning, when you create a new node in the cloned graph, have a hashmap which maps the old node to new node.
So in the hashmap key = old node, value = new node.Q2 – Given an array of numbers, for each number print the first number to it’s left which is greater than the current number. Example
Input -> 5,3,2,4,8,6
Output-> -1, 5,3,5,-1,8
Use stacks. Simple O(n) solution.

Round: 2nd Round
Experience: Q1 – Find the row number according to the excel nomenclature –> (the opposite of this,-----/) i.e given Z, Output -> 26
Given AX, Output -> 50 Q2 – Find the number of islands in a 2d Array -> -----/

Round: HR Interview
Experience: Q1 – Given a number in words, print the number. Example 1) Input - "One Hundred and Five", Output should be "105"
Example 2) Input - "One Thousand and two hundred", Output should be "1200"
Example 3) Input - "Twelve hundred", Output should be "1200"
Example 4) Input - "Five Lacs", Output should be "500000"
Example 5) Input - "Five Hundred Thousand", Output should be "500000" There were a lot of edge cases, and discussion with regards to this. ( I took a lot of time and the manager did not seem to pleased.  )Q2- In a sorted array, find two numbers who’s difference is k.Given -> 1,2, 3,4,7,8,9,11 and k=7
Ouput -> 1,8 or 2,9, or 4,11 (Print any one) ----- lot of questions as to Why Amazon, Why do you want to leave so early

Round: 4th Round(Bar Raiser)
Experience: Q1 – Given a sorted array find a number. (Simple Binary Search)
Now consider repetitions and find the left most occurrence. (Binary Search to first find number, then again Binary Search to find left most occurrence)
Similarly find the right most occurrence. (Binary Search to first find number, then again Binary Search to find right most occurrence)
Now using the above two functions, find the number of times the element is present.
Note – Cases like where number is NOT present,Q2- Assembly Line Scheduling. (Very Simple DP.)
-----
After three weeks, I got a generic email saying that I could not clear it. I had a really irresponsible recruiter who did not have the courtesy to give me a call and just convey some feedback. Eventually, I think I took too much time with the first question in the manager round.

College Name: NA
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Aug 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 - Aptitude Test 

Very knowledgable and it’s really very informative

Round 3 - HR 

(1 Question)

  • Q1. Discussed about previous pay and current offer

Interview Preparation Tips

Interview preparation tips for other job seekers - Good to Join Justdial

Interview Questionnaire 

1 Question

  • Q1. Contiguous Subarray with sum = 0
  • Ans. 

    Find all contiguous subarrays in an array with sum equal to zero.

    • Use a hash table to store the sum of subarrays and their ending index.

    • Traverse the array and calculate the sum of subarrays.

    • If the sum is zero or already exists in the hash table, print the subarray.

    • Time complexity: O(n), Space complexity: O(n).

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - For round 1 most of the questions are around array and strings (Go through all Algo's of arrays)

Skills evaluated in this interview

Interview Preparation Tips

Round: 1st Round
Experience: Q1 – Clone a graph. ( Similar Question -> -----/)
Basically while cloning, when you create a new node in the cloned graph, have a hashmap which maps the old node to new node.
So in the hashmap key = old node, value = new node.Q2 – Given an array of numbers, for each number print the first number to it’s left which is greater than the current number. Example
Input -> 5,3,2,4,8,6
Output-> -1, 5,3,5,-1,8
Use stacks. Simple O(n) solution.

Round: 2nd Round
Experience: Q1 – Find the row number according to the excel nomenclature –> (the opposite of this,-----/) i.e given Z, Output -> 26
Given AX, Output -> 50 Q2 – Find the number of islands in a 2d Array -> -----/

Round: HR Interview
Experience: Q1 – Given a number in words, print the number. Example 1) Input - "One Hundred and Five", Output should be "105"
Example 2) Input - "One Thousand and two hundred", Output should be "1200"
Example 3) Input - "Twelve hundred", Output should be "1200"
Example 4) Input - "Five Lacs", Output should be "500000"
Example 5) Input - "Five Hundred Thousand", Output should be "500000" There were a lot of edge cases, and discussion with regards to this. ( I took a lot of time and the manager did not seem to pleased.  )Q2- In a sorted array, find two numbers who’s difference is k.Given -> 1,2, 3,4,7,8,9,11 and k=7
Ouput -> 1,8 or 2,9, or 4,11 (Print any one) ----- lot of questions as to Why Amazon, Why do you want to leave so early

Round: 4th Round(Bar Raiser)
Experience: Q1 – Given a sorted array find a number. (Simple Binary Search)
Now consider repetitions and find the left most occurrence. (Binary Search to first find number, then again Binary Search to find left most occurrence)
Similarly find the right most occurrence. (Binary Search to first find number, then again Binary Search to find right most occurrence)
Now using the above two functions, find the number of times the element is present.
Note – Cases like where number is NOT present,Q2- Assembly Line Scheduling. (Very Simple DP.)
-----
After three weeks, I got a generic email saying that I could not clear it. I had a really irresponsible recruiter who did not have the courtesy to give me a call and just convey some feedback. Eventually, I think I took too much time with the first question in the manager round.

College Name: NA

Tell us how to improve this page.

People are getting interviews through

based on 1 Flipkart interview
Company Website
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 5k Interviews
BigBasket Interview Questions
3.9
 • 345 Interviews
JustDial Interview Questions
3.5
 • 326 Interviews
Info Edge Interview Questions
4.0
 • 314 Interviews
Zomato Interview Questions
3.8
 • 314 Interviews
PolicyBazaar Interview Questions
3.6
 • 307 Interviews
Myntra Interview Questions
4.0
 • 208 Interviews
Naukri Interview Questions
4.0
 • 179 Interviews
Uber Interview Questions
4.2
 • 159 Interviews
View all
Senior Executive
2.8k salaries
unlock blur

₹2 L/yr - ₹9 L/yr

Operations Executive
1.8k salaries
unlock blur

₹1.2 L/yr - ₹6.5 L/yr

Team Lead
1.8k salaries
unlock blur

₹1.2 L/yr - ₹9.8 L/yr

Assistant Manager
1.6k salaries
unlock blur

₹6 L/yr - ₹21 L/yr

Executive
1.4k salaries
unlock blur

₹1.2 L/yr - ₹6.5 L/yr

Explore more salaries
Compare Flipkart with

Amazon

4.1
Compare

Myntra

4.0
Compare

Snapdeal

3.8
Compare

Meesho

3.7
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview