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

Proud winner of ABECA 2025 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Flipkart Software Developer Intern Interview Questions and Answers

Updated 5 Apr 2025

11 Interview questions

A Software Developer Intern was asked 2mo ago
Q. Given an integer array nums, return all the triplets [nums[i], nums[j], nums[k]] such that i != j, i != k, and j != k, and nums[i] + nums[j] + nums[k] == 0.
Ans. 

The 3 Sum problem involves finding triplets in an array that sum to zero.

  • Sort the array to simplify finding triplets.

  • Use a loop to fix one element and apply two-pointer technique for the rest.

  • Skip duplicates to avoid repeated triplets in the result.

  • Example: For array [-1, 0, 1, 2, -1, -4], the triplets are [-1, -1, 2], [-1, 0, 1].

A Software Developer Intern was asked 12mo ago
Q. Given a matrix, if an element is 0, set its entire row and column to 0.
Ans. 

Use a two-pass approach to mark rows and columns with zeros based on existing zeros in the matrix.

  • Iterate through the matrix to mark rows and columns with zeros based on existing zeros

  • Use two arrays to keep track of which rows and columns need to be zeroed out

  • Perform a second pass to update the matrix based on the marked rows and columns

Software Developer Intern Interview Questions Asked at Other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an ar ... read more
asked in Amazon
Q2. Fish Eater Problem Statement In a river where water flows from le ... read more
asked in Apple
Q3. Kevin and his Fruits Problem Statement Kevin has 'N' buckets, eac ... read more
asked in CommVault
Q4. Sliding Maximum Problem Statement Given an array of integers ARR ... read more
Q5. Reverse Words in a String: Problem Statement You are given a stri ... read more
A Software Developer Intern was asked
Q. Design a parking lot application for blind people.
Ans. 

A parking lot app designed for blind people to easily navigate and find available parking spots.

  • Include voice-guided navigation to direct users to available parking spots

  • Use sensors to detect empty parking spaces and relay information to the app

  • Provide audio alerts for obstacles or other vehicles in the parking lot

  • Include a feature for users to easily locate their parked vehicle when returning

A Software Developer Intern was asked
Q. Design a parking lot application.
Ans. 

A parking lot app to help users find available parking spots and pay for parking.

  • Include a map feature to show available parking spots in real-time

  • Allow users to reserve parking spots in advance

  • Integrate payment options for users to pay for parking

  • Provide notifications for parking expiration or availability of nearby spots

What people are saying about Flipkart

View All
buddybean
Verified Icon
2w
works at
Flipkart
Need Guidance 🙏🏼
Hi all, I’m looking for advice on how to progress in my career. Here’s a quick snapshot: 📌 Profile: • 🎓 Education: B.Tech + PGDM (Business Analytics) • 💼 Experience: ~9 years in Supply Chain (currently at Flipkart) • 🧩 Key Skills: Inventory planning, vendor management, warehousing, tech adoption, e-commerce ops • 💰 CTC: ~12 LPA 🎯 Career Goals: • Move into strategic/leadership roles in supply chain or transition into supply chain analytics, consulting, or product roles • Target CTC: 20–25 LPA in next 12–18 months ❓Need Advice On: • Best courses/certifications to upskill (open to Coursera, IIMs, ISB, global options) • Target companies/roles that fit my profile • Is a shift to consulting/product management/supply chain analytics worth exploring? Would love inputs from anyone who’s made a similar transition or working in these domains. Appreciate your help! 🙏
Got a question about Flipkart?
Ask anonymously on communities.
🔥 Asked by recruiter 2 times
A Software Developer Intern was asked
Q. 

Longest Palindromic Substring Problem Statement

You are provided with a string STR of length N. The goal is to identify the longest palindromic substring within this string. In cases where multiple palindr...

Ans. 

Given a string, find the longest palindromic substring with the smallest start index.

  • Iterate through the string and expand around each character to find palindromes

  • Keep track of the longest palindrome found and its starting index

  • Return the longest palindromic substring with the smallest start index

A Software Developer Intern was asked
Q. 

Binary Tree Cameras Problem Statement

Given a binary tree where each node can carry a camera that monitors its parent, itself, and its immediate children, determine the minimum number of cameras needed to ...

Ans. 

The problem involves determining the minimum number of cameras needed to monitor all nodes in a binary tree.

  • Implement a function to solve the problem efficiently.

  • Consider the different cases where cameras can be placed to cover all nodes.

  • Use recursion to traverse the tree and place cameras strategically.

  • Optimize the solution to minimize the number of cameras needed.

  • Test the function with different test cases to en...

A Software Developer Intern was asked
Q. 

Remove All The Palindromes Problem Statement

Given a string STR consisting only of lowercase letters, your task is to modify the string by replacing the minimum characters such that the string doesn’t cont...

Ans. 

The task is to modify a string by replacing minimum characters to remove all palindromic substrings.

  • Identify palindromic substrings in the given string

  • Replace characters in the substrings to break the palindrome

  • Count the minimum number of characters replaced to remove all palindromic substrings

Are these interview questions helpful?
A Software Developer Intern was asked
Q. 

Ways To Make Coin Change

Given an infinite supply of coins of varying denominations, determine the total number of ways to make change for a specified value using these coins. If it's not possible to make ...

Ans. 

The task is to find the total number of ways to make change for a specified value using given denominations.

  • Use dynamic programming to solve this problem efficiently.

  • Create a 2D array to store the number of ways to make change for each value up to the specified value.

  • Iterate through each denomination and update the array accordingly.

  • The final answer will be stored in the last cell of the array.

  • Example: For N=3, D=...

A Software Developer Intern was asked
Q. 

Longest Decreasing Subsequence Problem Statement

Given an array/list of integers ARR consisting of N integers, your task is to determine the length of the longest decreasing subsequence.

Explanation:

A s...

Ans. 

Find the length of the longest decreasing subsequence in an array of integers.

  • Use dynamic programming to keep track of the length of the longest decreasing subsequence ending at each index.

  • Initialize an array to store the length of the longest decreasing subsequence for each element.

  • Iterate through the array and update the length of the longest decreasing subsequence for each element based on previous elements.

  • Ret...

A Software Developer Intern was asked
Q. 

Minimum Steps for a Knight to Reach Target

Given a square chessboard of size 'N x N', determine the minimum number of moves a Knight requires to reach a specified target position from its initial position.

...
Ans. 

Calculate minimum steps for a Knight to reach target position on a chessboard.

  • Use BFS algorithm to find shortest path from Knight's starting position to target position.

  • Consider all possible moves of the Knight on the chessboard.

  • Keep track of visited positions to avoid revisiting them.

  • Return the minimum number of moves required to reach the target position.

Flipkart Software Developer Intern Interview Experiences

7 interviews found

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Oct 2024, where I was asked the following questions.

  • Q1. 3 sum dsa question
  • Ans. 

    The 3 Sum problem involves finding triplets in an array that sum to zero.

    • Sort the array to simplify finding triplets.

    • Use a loop to fix one element and apply two-pointer technique for the rest.

    • Skip duplicates to avoid repeated triplets in the result.

    • Example: For array [-1, 0, 1, 2, -1, -4], the triplets are [-1, -1, 2], [-1, 0, 1].

  • Answered by AI
  • Q2. Shortest path question
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Design parking lot app
  • Ans. 

    A parking lot app to help users find available parking spots and pay for parking.

    • Include a map feature to show available parking spots in real-time

    • Allow users to reserve parking spots in advance

    • Integrate payment options for users to pay for parking

    • Provide notifications for parking expiration or availability of nearby spots

  • Answered by AI
  • Q2. Design parking lot app for blind people
  • Ans. 

    A parking lot app designed for blind people to easily navigate and find available parking spots.

    • Include voice-guided navigation to direct users to available parking spots

    • Use sensors to detect empty parking spaces and relay information to the app

    • Provide audio alerts for obstacles or other vehicles in the parking lot

    • Include a feature for users to easily locate their parked vehicle when returning

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Unstop and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - DSA 

(2 Questions)

  • Q1. Valid BT or not
  • Q2. Make complete row and column zero in a matrix for each element that is already 0
  • Ans. 

    Use a two-pass approach to mark rows and columns with zeros based on existing zeros in the matrix.

    • Iterate through the matrix to mark rows and columns with zeros based on existing zeros

    • Use two arrays to keep track of which rows and columns need to be zeroed out

    • Perform a second pass to update the matrix based on the marked rows and columns

  • Answered by AI
Round 2 - Coding Test 

Similar to Round 1 but more hard questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your preparation well.
Focus more on explaining than solving.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 - Coding Test 

3 coding questions were asked of moderate difficulty level

Round 3 - Interview 

(2 Questions)

  • Q1. Dynamic programming question similar to regex
  • Q2. Dynamic programming a little twisted from previous ques

Interview Preparation Tips

Interview preparation tips for other job seekers - Have a strong grasp on problem solving. I was asked problems based on dynamic programming in interview

I appeared for an interview in Oct 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 75 minutes
Round difficulty - Hard

Round was scheduled in the evening within a window of two hours.

  • Q1. 

    Reverse Linked List Problem Statement

    Given a singly linked list of integers, return the head of the reversed linked list.

    Example:

    Initial linked list: 1 -> 2 -> 3 -> 4 -> NULL
    Reversed link...
  • Ans. 

    Reverse a singly linked list of integers and return the head of the reversed linked list.

    • Iterate through the linked list and reverse the pointers to point to the previous node instead of the next node.

    • Use three pointers to keep track of the current, previous, and next nodes while reversing the linked list.

    • Update the head of the reversed linked list as the last node encountered during the reversal process.

  • Answered by AI
  • Q2. 

    Minimum Steps for a Knight to Reach Target

    Given a square chessboard of size 'N x N', determine the minimum number of moves a Knight requires to reach a specified target position from its initial position...

  • Ans. 

    Calculate minimum steps for a Knight to reach target position on a chessboard.

    • Use BFS algorithm to find shortest path from Knight's starting position to target position.

    • Consider all possible moves of the Knight on the chessboard.

    • Keep track of visited positions to avoid revisiting them.

    • Return the minimum number of moves required to reach the target position.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - Intern in BangaloreEligibility criteriaabove 7.5 cgpa, all branchesFlipkart interview preparation:Topics to prepare for the interview - DBMS, OS, SQL, graphs, binary search, pointers, linked list, avl trees, queues and stacks, etcTime required to prepare for the interview - 8 monthsInterview preparation tips for other job seekers

Tip 1 : Your basics should be very clear about data structures and algorithms. 
Tip 2 : Try to solve questions in a specific time frame. Also dry run your code with custom test cases, try to find the edge cases.
Apart from this try analyzing the time and space complexity of your solution.
Tip 3 : Take a look at editorials after solving the questions as it can give you a better approach to the problem.
Tip 4 : Don't neglect subjects like OOP's, DBMS and OS. Interviews ask few questions from here as well.

Application resume tips for other job seekers

Tip 1 : not too short or too long
Tip 2 : scale up the basic technologies in resume

Final outcome of the interviewRejected

Skills evaluated in this interview

I appeared for an interview in Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 65 minutes
Round difficulty - Medium

This online assessment comprised of 12 questions with 2 coding questions and 10 MCQs.
Coding Questions:
It was one of the most common Dynamic Programming problems: Longest decreasing sub-sequence.
It was an easy question that needed us to find out the mean, median and mode in an array.

  • Q1. 

    Longest Decreasing Subsequence Problem Statement

    Given an array/list of integers ARR consisting of N integers, your task is to determine the length of the longest decreasing subsequence.

    Explanation:

    A ...

  • Ans. 

    Find the length of the longest decreasing subsequence in an array of integers.

    • Use dynamic programming to keep track of the length of the longest decreasing subsequence ending at each index.

    • Initialize an array to store the length of the longest decreasing subsequence for each element.

    • Iterate through the array and update the length of the longest decreasing subsequence for each element based on previous elements.

    • Return t...

  • Answered by AI
  • Q2. 

    Remove All The Palindromes Problem Statement

    Given a string STR consisting only of lowercase letters, your task is to modify the string by replacing the minimum characters such that the string doesn’t con...

  • Ans. 

    The task is to modify a string by replacing minimum characters to remove all palindromic substrings.

    • Identify palindromic substrings in the given string

    • Replace characters in the substrings to break the palindrome

    • Count the minimum number of characters replaced to remove all palindromic substrings

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 45 minutes
Round difficulty - Medium

There was only one interviewer, I was asked one coding question followed by one puzzle.

  • Q1. 

    Ways To Make Coin Change

    Given an infinite supply of coins of varying denominations, determine the total number of ways to make change for a specified value using these coins. If it's not possible to make...

  • Ans. 

    The task is to find the total number of ways to make change for a specified value using given denominations.

    • Use dynamic programming to solve this problem efficiently.

    • Create a 2D array to store the number of ways to make change for each value up to the specified value.

    • Iterate through each denomination and update the array accordingly.

    • The final answer will be stored in the last cell of the array.

    • Example: For N=3, D=[1, 2...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - Intern in HyderabadEligibility criteriaAll students and branches were allowedFlipkart interview preparation:Topics to prepare for the interview - DSA, bit manipulation, codeforces coding practiceTime required to prepare for the interview - 12 months regularlyInterview preparation tips for other job seekers

Tip 1 : Regular practice
Tip 2 : Good command over DSA
Tip 3 : Good communication skills are also important

Application resume tips for other job seekers

Tip 1 : Should be short and descriptive
Tip 2 : Team projects are helpful

Final outcome of the interviewSelected

Skills evaluated in this interview

I appeared for an interview before Jan 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Hard

This round was held on Hackerearth and had 2 questions of Medium-Hard difficulty. Both were based on concepts of DP.
The use of offline IDE was prohibited so we were supposed to code it on Hackerearth IDE itself. I was able to code the second problem well with only 3 Test Cases failing but was stuck on the first problem for quite a long time and wasn't able to pass all the major Test Cases .

  • Q1. 

    Binary Tree Cameras Problem Statement

    Given a binary tree where each node can carry a camera that monitors its parent, itself, and its immediate children, determine the minimum number of cameras needed to...

  • Ans. 

    The problem involves determining the minimum number of cameras needed to monitor all nodes in a binary tree.

    • Implement a function to solve the problem efficiently.

    • Consider the different cases where cameras can be placed to cover all nodes.

    • Use recursion to traverse the tree and place cameras strategically.

    • Optimize the solution to minimize the number of cameras needed.

    • Test the function with different test cases to ensure ...

  • Answered by AI
  • Q2. 

    Longest Palindromic Substring Problem Statement

    You are provided with a string STR of length N. The goal is to identify the longest palindromic substring within this string. In cases where multiple palind...

  • Ans. 

    Given a string, find the longest palindromic substring with the smallest start index.

    • Iterate through the string and expand around each character to find palindromes

    • Keep track of the longest palindrome found and its starting index

    • Return the longest palindromic substring with the smallest start index

  • Answered by AI

Interview Preparation Tips

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

Interview questions from similar companies

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

Round duration - 90 minutes
Round difficulty - Easy

This round was held during university hours and consisted of 2 coding questions.

Round 2 - Face to Face 

(1 Question)

Round duration - 120 minutes
Round difficulty - Easy

Make sure you do no cutting and are clear about the approach you'd be following. 
 

  • Q1. What is the running median of an input stream?
  • Ans. 

    Running median of an input stream is the median value of the numbers seen so far in a continuous stream of data.

    • Maintain two heaps - a max heap for the lower half of the numbers and a min heap for the upper half.

    • Keep the number of elements in the two heaps balanced or differ by at most 1.

    • If the total number of elements is odd, the median is the root of the max heap. If even, it is the average of the roots of the two he...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Electronics & Communication Engineering from TIET - Thapar Institute of Engineering And Technology. I applied for the job as SDE - 1 in HyderabadEligibility criteria 7 CGPA Amazon interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, Java, Object-Oriented Programming System, System Design, Operating System.Time required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Prepare for company-wise interview questions according to the company in which you are applying. Try to write the code yourself and if got stuck in between then take help from the internet. I recommend you Codezen of Coding Ninjas for practicing Data Structures and Algorithms based questions.

Application resume tips for other job seekers

Be sure 100% of what you write in your resume and prepare for that before the interview what is written on resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

I appeared for an interview before Dec 2015.

Interview Questionnaire 

2 Questions

  • Q1. 1 question from basic data structures and algorithms The question was similar to the one in the given link- -----/
  • Q2. Why do you want to join the company?
  • Ans. 

    I am excited to join the company because of its reputation for innovation and commitment to employee growth.

    • I am impressed by the company's track record of developing cutting-edge software solutions.

    • I appreciate the company's focus on fostering a culture of learning and development.

    • I am excited about the opportunity to work with a talented team of developers and contribute to the company's success.

    • I believe that the co...

  • Answered by AI

Interview Preparation Tips

Round: Resume Shortlist
Experience: Resumes were shortlisted with a short aptitude round where we are asked basic questions about databases, basic programming(C and C ++ questions)

Round: Technical Interview
Experience: The questions were asked were simple - related to arrays and data structures. Some questions were asked regarding my resume and projects.
Tips: Be thorough with geeksForGeeks, and your projects.

Round: HR Interview
Experience: I told him how I found the story of the founder of Infoedge very inspiring.
Tips: This round should be more simpler , be prepared with why you want to join the company and general HR questions

Skills: Basic C/C++, Programming Skills In Any Language Like C
College Name: IIIT Allahabad

Interview Preparation Tips

Round: Technical Interview
Experience: Ques will be based on arrays( duplicate element, missing element in 1 to n array), link list(reverse, remove loop, middle node etc), Hashing, sql join, normalisation, indexing in sql, singlton pattern and sorting and searching.
Tips: Focus will remain on algorithms. Whatever program they will ask to write, they will also ask to optimize the solution.

Skill Tips: Puzzle on mislabled jar, odd weight ball. As I had exp in Java, so some more que on Java, java script and web technology. All you need in interview is to be confident and show your interest in web domain.
Skills: Java, Data structure, Algorithm
College Name: NA

Flipkart Interview FAQs

How many rounds are there in Flipkart Software Developer Intern interview?
Flipkart interview process usually has 2 rounds. The most common rounds in the Flipkart interview process are Coding Test, Resume Shortlist and Technical.
What are the top questions asked in Flipkart Software Developer Intern interview?

Some of the top questions asked at the Flipkart Software Developer Intern interview -

  1. Make complete row and column zero in a matrix for each element that is alread...read more
  2. Design parking lot app for blind peo...read more
  3. Design parking lot ...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3.8/5

based on 5 interview experiences

Difficulty level

Easy 50%
Hard 50%

Duration

Less than 2 weeks 100%
View more
Flipkart Software Developer Intern Salary
based on 7 salaries
₹12.9 L/yr - ₹24.1 L/yr
189% more than the average Software Developer Intern Salary in India
View more details

Flipkart Software Developer Intern Reviews and Ratings

based on 2 reviews

4.7/5

Rating in categories

2.7

Skill development

4.7

Work-life balance

3.3

Salary

3.3

Job security

4.0

Company culture

3.0

Promotions

3.7

Work satisfaction

Explore 2 Reviews and Ratings
Senior Executive
2.7k salaries
unlock blur

₹4 L/yr - ₹9.1 L/yr

Operations Executive
1.9k salaries
unlock blur

₹2.2 L/yr - ₹6.3 L/yr

Assistant Manager
1.8k salaries
unlock blur

₹10 L/yr - ₹18 L/yr

Team Lead
1.6k salaries
unlock blur

₹3.6 L/yr - ₹8.2 L/yr

Data Entry Operator
1.4k salaries
unlock blur

₹1.2 L/yr - ₹3.5 L/yr

Explore more salaries
Compare Flipkart with

Amazon

4.0
Compare

Myntra

3.9
Compare

Snapdeal

3.8
Compare

Meesho

3.7
Compare
write
Share an Interview