i
Flipkart
Proud winner of ABECA 2025 - AmbitionBox Employee Choice Awards
Filter interviews by
I applied via Referral and was interviewed in Feb 2024. There was 1 interview round.
An auction system where users can bid, with profit calculations for sellers based on unique bids and participation costs.
Each auction has a lowest and highest bid limit, e.g., $10 and $100.
Users pay a participation cost, say $5, to bid in an auction.
The seller receives 20% of the participation cost from each bidder.
Winning bid is determined by the highest unique bid among participants.
Profit/Loss for the seller is calc...
A movie booking system allows users to browse movies, select showtimes, choose seats, and make payments online.
Users can search for movies by title, genre, or release date.
Users can view showtimes, select seats, and add to cart.
Users can make payments securely using various payment methods.
Admin can manage movie listings, showtimes, and seating arrangements.
System should send confirmation emails and tickets to users.
I applied via Referral and was interviewed before Dec 2023. There were 3 interview rounds.
Machine coding round 90 mins duration. Based on designing Buy Now Pay Later system
2 medium level questions
An online coding platform for collaborative coding, learning, and assessment with real-time feedback and diverse challenges.
User Registration: Allow users to create accounts with profiles showcasing their skills and completed challenges.
Code Editor: Implement a real-time code editor with syntax highlighting and support for multiple programming languages (e.g., Python, Java, C++).
Challenges and Competitions: Offer a var...
I applied via Recruitment Consulltant and was interviewed before May 2023. There were 4 interview rounds.
Machine Coding Round
DSA Round Consisting single question
What people are saying about Flipkart
I applied via Recruitment Consultant and was interviewed before Apr 2020. There was 1 interview round.
I will generate daily revenue for the company by implementing effective sales strategies and motivating my team to achieve their targets.
Developing a sales plan and setting achievable targets
Identifying potential customers and reaching out to them through various channels
Providing excellent customer service to retain existing customers and generate referrals
Motivating and training team members to improve their sales sk...
I approach tough times with resilience, strategic planning, and team collaboration to navigate sales pressure effectively.
Maintain a positive mindset: I remind my team that challenges are opportunities for growth. For example, during a sales slump, I encouraged brainstorming sessions to identify new strategies.
Set clear goals: I break down larger targets into manageable milestones, making it easier for the team to stay...
I appeared for an interview before Dec 2015.
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...
I appeared for an interview before Jan 2021.
Round duration - 60 minutes
Round difficulty - Easy
Two coding questions were given in the first round to be solved in 60 minutes.
Given an array A
containing 'N' integers and an integer m
, rearrange the elements of the array such that the differences between the array elements and m
are sor...
Rearrange array elements based on their differences from a given integer.
Calculate the differences between each element and the given integer.
Sort the elements based on their differences while maintaining the original order for elements with the same difference.
Implement a function to rearrange the array elements as per the given criteria.
Given an arbitrary binary tree, a node of the tree, and an integer 'K', find all nodes that are at a distance K from the specified node, and return a list of th...
The task is to find all nodes in a binary tree that are at a distance K from a given node.
Traverse the binary tree to find the given node
From the given node, perform a depth-first search to find all nodes at distance K
Use a list to store the values of the nodes at distance K
Return the list of values in any order
Round duration - 60 minutes
Round difficulty - Easy
This was a technical round with questions based on DSA, DBMS, Computer Networking and project based questions.
Ninja is tasked with printing a triangle pattern based on a given number 'N' for any test case.
N = 4
1
232
34545
4567654
The pat...
Print a triangle pattern of numbers based on a given number 'N'.
Iterate through each row and print the numbers accordingly
Use spaces to center-align the numbers in each row
Increment the numbers in each row as per the pattern
Web server serves static content over HTTP, while application server runs dynamic content and business logic.
Web server handles HTTP requests and responses, serving static content like HTML, images, and CSS.
Application server executes business logic, runs dynamic content, and interacts with databases.
Web server examples include Apache, Nginx, while application server examples include Tomcat, JBoss.
Web server focuses on...
The internet is a global network of interconnected computers that communicate using standardized protocols.
The internet is made up of a vast number of interconnected networks of computers.
Data is transmitted over the internet using protocols such as TCP/IP.
Websites are hosted on servers connected to the internet, and users access them using web browsers.
Internet Service Providers (ISPs) provide access to the internet f...
SQL query to find the nth highest salary
Use the 'SELECT DISTINCT' statement to get unique salary values
Order the salaries in descending order using 'ORDER BY' clause
Use 'LIMIT' and 'OFFSET' to get the nth highest salary
Round duration - 30 minutes
Round difficulty - Easy
Typical HR round with behavioral problems.
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.
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.
I appeared for an interview before Dec 2020.
Round duration - 60 Minutes
Round difficulty - Medium
This round was purely based on Data Structures and Algorithms . One has to be fairly comfortable in solving Algorithmic problems to pass this round . Both the questions asked were quite common and luckily I had already prepared them from CodeStudio and LeetCode.
Given a Binary Tree with 'N' nodes, where each node holds an integer value, your task is to compute the In-Order, Pre-Order, and Post-Order traversals of the binar...
Compute the In-Order, Pre-Order, and Post-Order traversals of a Binary Tree given in level-order format.
Implement functions to perform In-Order, Pre-Order, and Post-Order traversals of a Binary Tree.
Use level-order input to construct the Binary Tree.
Traverse the Binary Tree recursively to generate the required traversals.
Ensure proper handling of null nodes represented by -1 in the input.
Return the three traversals as ...
Given a Singly Linked List of integers, your task is to reverse the Linked List by altering the links between the nodes.
The first line of input is an intege...
Reverse a singly linked list by altering the links between nodes.
Iterate through the linked list and reverse the links between nodes
Use three pointers to keep track of the current, previous, and next nodes
Update the links between nodes to reverse the list
Return the head of the reversed linked list
Round duration - 45 Minutes
Round difficulty - Medium
This round basically tested some concepts from Data Structures and File Manipulation .
Given two arrays A
and B
with sizes N
and M
respectively, both sorted in non-decreasing order, determine their intersection.
The intersection of two arrays in...
The problem involves finding the intersection of two sorted arrays efficiently.
Use two pointers to iterate through both arrays simultaneously.
Compare elements at the pointers and move the pointers accordingly.
Handle cases where elements are equal and update the intersection array.
Return the intersection array as the result.
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.
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.
posted on 30 Nov 2015
I applied via Campus Placement
based on 3 interview experiences
Difficulty level
Duration
Senior Executive
2.5k
salaries
| ₹2 L/yr - ₹9.1 L/yr |
Operations Executive
1.9k
salaries
| ₹1.5 L/yr - ₹6.3 L/yr |
Assistant Manager
1.8k
salaries
| ₹10 L/yr - ₹18 L/yr |
Team Lead
1.6k
salaries
| ₹1.2 L/yr - ₹10.1 L/yr |
Executive
1.4k
salaries
| ₹1.2 L/yr - ₹7 L/yr |
Amazon
Myntra
Snapdeal
Meesho