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.5k Reviews

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Flipkart Senior Software Engineer Interview Questions and Answers

Updated 12 Oct 2024

Flipkart Senior Software Engineer Interview Experiences

3 interviews found

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

(2 Questions)

  • Q1. Design hld interview asked question
  • Q2. Design lld asked question
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Jun 2023. There were 4 interview rounds.

Round 1 - Assignment 

Machine coding - design food ordering service,

Round 2 - Technical 

(2 Questions)

  • Q1. Sort array having 0 , 1 and 2. do it in single pass
  • Ans. 

    Use Dutch National Flag algorithm to sort array of 0s, 1s, and 2s in single pass.

    • Initialize three pointers low = 0, mid = 0, high = n-1 where n is the length of the array.

    • Iterate through the array and swap elements based on their values and positions.

    • Example: Input array ['0', '1', '2', '0', '1', '2'] should be sorted as ['0', '0', '1', '1', '2', '2'].

  • Answered by AI
  • Q2. Given tree and list of nodes to be deleted. return all new trees created after the deletion
  • Ans. 

    Return new trees after deleting specified nodes from a given tree

    • Traverse the tree and delete nodes that match the given list

    • For each deleted node, create a new tree with the remaining nodes

    • Return all new trees created after deletion

  • Answered by AI
Round 3 - system design 

(1 Question)

  • Q1. Design Restaurant management sytem
  • Ans. 

    Restaurant management system to streamline operations, orders, inventory, and customer service.

    • Include features for table management, order processing, menu customization, inventory tracking, and customer feedback.

    • Implement user roles for staff, managers, and administrators with varying levels of access and permissions.

    • Integrate payment processing systems for seamless transactions and reporting.

    • Utilize data analytics t...

  • Answered by AI
Round 4 - Behavioral 

(2 Questions)

  • Q1. Discussed about projects in depth
  • Q2. Question around redis, kafka and all

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare system design nicely.

Skills evaluated in this interview

Senior Software Engineer Interview Questions Asked at Other Companies

asked in UST
Q1. Nth Prime Number Problem Statement Find the Nth prime number give ... read more
asked in Capgemini
Q2. Pascal's Triangle Construction You are provided with an integer ' ... read more
Q3. K Largest Elements Problem Statement You are given an integer k a ... read more
asked in Info Edge
Q4. Buy and Sell Stock Problem Statement Imagine you are Harshad Meht ... read more
asked in DBS Bank
Q5. Tell me about yourself. What technology are you using? What is a ... read more
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Its mcqs where we need to answer 25 questions

Round 2 - Technical 

(1 Question)

  • Q1. Knowledge if sql based on experience. Good to know joins well

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Print the nodes of a n-ary tree in an arc wise manner as seen from the outside.
  • Ans. 

    Print nodes of n-ary tree in arc wise manner from outside

    • Traverse the tree level by level from outside to inside

    • Use a queue to keep track of nodes at each level

    • Print the nodes at each level in a clockwise or anticlockwise manner

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Uber Senior Software Engineer interview:
  • n-ary tree

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Instahyre and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - Coding Test 

String and DP questions

Round 2 - Technical 

(1 Question)

  • Q1. Design BookMyShow
Round 3 - Technical 

(1 Question)

  • Q1. Past challenging projects
  • Ans. 

    Developed a real-time data processing system for a high-traffic e-commerce platform.

    • Implemented distributed computing using Apache Kafka and Spark.

    • Optimized database queries to handle large volumes of data.

    • Designed fault-tolerant architecture to ensure system reliability.

    • Collaborated with cross-functional teams to meet project deadlines.

  • Answered by AI
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. What is react, and why you chose it
  • Ans. 

    React is a JavaScript library for building user interfaces, known for its efficiency and flexibility.

    • React allows for the creation of reusable UI components, making development faster and more efficient.

    • It uses a virtual DOM for optimal performance by only updating the necessary components when data changes.

    • React's component-based architecture promotes code reusability and maintainability.

    • It has a large and active comm...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Coding and behavioral questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Node JS internal
  • Q2. Previous project discussion
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Nov 2023. There were 2 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 - Technical 

(2 Questions)

  • Q1. Given array of integer create subarray with sum = 0
  • Ans. 

    Create subarrays with sum = 0 from given array of integers.

    • Iterate through the array and keep track of the running sum.

    • Store the running sum in a hashmap and check if the current sum - any previous sum equals 0.

    • If yes, then the subarray between those two indices has a sum of 0.

  • Answered by AI
  • Q2. Left view of binary tree
  • Ans. 

    The left view of a binary tree is the set of nodes visible when the tree is viewed from the left side.

    • Traverse the tree in a level order manner and keep track of the first node at each level.

    • Use a queue to store nodes at each level and update the left view nodes accordingly.

    • Example: For a binary tree with root node 1, left child 2, and right child 3, the left view would be [1, 2].

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What are Microservices
  • Ans. 

    Microservices are a software architecture pattern where applications are built as a collection of small, loosely coupled services.

    • Microservices are independent and autonomous services that communicate with each other through APIs.

    • Each microservice is responsible for a specific business capability and can be developed, deployed, and scaled independently.

    • Microservices promote flexibility, scalability, and resilience in s...

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. What are SOAP APIs
  • Ans. 

    SOAP APIs are a protocol for exchanging structured information in web services using XML-based messages.

    • SOAP stands for Simple Object Access Protocol

    • It is a messaging protocol that allows programs running on different operating systems to communicate with each other

    • SOAP APIs use XML to format the data being sent

    • They are commonly used in enterprise-level applications for integrating different systems

    • SOAP APIs provide a

  • Answered by AI
  • Q2. What are Rest APIs?
  • Ans. 

    REST APIs are a set of rules and protocols that allow different software applications to communicate and interact with each other over the internet.

    • REST stands for Representational State Transfer

    • REST APIs use HTTP methods like GET, POST, PUT, DELETE to perform operations on resources

    • REST APIs are stateless, meaning each request from a client to a server contains all the necessary information

    • REST APIs typically return d...

  • Answered by AI

Skills evaluated in this interview

Flipkart Interview FAQs

How many rounds are there in Flipkart Senior Software Engineer interview?
Flipkart interview process usually has 2-3 rounds. The most common rounds in the Flipkart interview process are Technical, Aptitude Test and Assignment.
How to prepare for Flipkart Senior Software Engineer 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 Flipkart. The most common topics and skills that interviewers at Flipkart expect are MongoDB, MySQL, Redis, Algorithms and Angularjs.
What are the top questions asked in Flipkart Senior Software Engineer interview?

Some of the top questions asked at the Flipkart Senior Software Engineer interview -

  1. Sort array having 0 , 1 and 2. do it in single p...read more
  2. given tree and list of nodes to be deleted. return all new trees created after ...read more
  3. Design Restaurant management sy...read more

Tell us how to improve this page.

Flipkart Senior Software Engineer Interview Process

based on 3 interviews

Interview experience

4.7
  
Excellent
View more
Flipkart Senior Software Engineer Salary
based on 100 salaries
₹11.7 L/yr - ₹45 L/yr
78% more than the average Senior Software Engineer Salary in India
View more details

Flipkart Senior Software Engineer Reviews and Ratings

based on 6 reviews

1.9/5

Rating in categories

2.4

Skill development

1.5

Work-life balance

1.7

Salary

1.5

Job security

2.0

Company culture

1.4

Promotions

2.0

Work satisfaction

Explore 6 Reviews and Ratings
Senior Executive
2.5k salaries
unlock blur

₹2 L/yr - ₹9 L/yr

Operations Executive
1.8k salaries
unlock blur

₹1.1 L/yr - ₹6.5 L/yr

Team Lead
1.8k salaries
unlock blur

₹1.2 L/yr - ₹9.8 L/yr

Assistant Manager
1.5k salaries
unlock blur

₹5.9 L/yr - ₹21 L/yr

Executive
1.3k salaries
unlock blur

₹1.2 L/yr - ₹7 L/yr

Explore more salaries
Compare Flipkart with

Amazon

4.1
Compare

Myntra

4.0
Compare

Snapdeal

3.8
Compare

Meesho

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