Cracking the Flipkart Data Analyst Interview
Flipkart (headquartered in Bangalore) is one of the pioneers of Indian e-commerce. Data Analysts here manage data at a staggering scale, dealing with everything from "Big Billion Days" traffic spikes to optimizing the middle-mile supply chain across thousands of Indian pin codes.
The Flipkart Interview DNA
Flipkart values structured problem-solving (consulting-style frameworks) combined with hardcore technical querying skills. They look for analysts who can tie a SQL output directly to a P&L (Profit & Loss) impact.
Round 1: The Machine Test (SQL & Python)
Usually conducted via HackerRank or a similar platform.
- SQL: 2-3 medium to hard queries (e.g., calculating rolling averages, finding the 2nd highest selling product in every category).
- Python: Basic data manipulation tasks (e.g., merging two large CSVs, handling missing values, and generating a summary statistic using Pandas).
Round 2: Technical Deep Dive
- Question: "We have a table of 100 million user clickstreams. Write a query to find the 'drop-off' rate at each stage of the checkout funnel (Cart -> Address -> Payment -> Success)."
- Focus: This tests your ability to write self-joins or use
CASE WHENstatements efficiently on large datasets. They will ask you to optimize your query if it looks slow.
Round 3: The E-commerce Business Case
This round defines whether you get the job.
- The Scenario: "During the Big Billion Days sale, the return rate for Electronics spiked by 15%. How do you approach this problem using data?"
- The Approach: Do not guess. Segment the data:
- Is the spike isolated to a specific seller?
- Is it a specific brand (e.g., a faulty batch of headphones)?
- Did the logistics partner damage the goods?
- Was there a UI glitch showing incorrect product specs?
Round 4: Product Metrics & A/B Testing
- Question: "We want to change the 'Add to Cart' button from orange to blue. How do we test this, and what metrics do we look at?"
- Focus: Explain the A/B testing setup. Mention the primary metric (Click-through Rate) but also emphasize secondary metrics (Actual Order Conversion, to ensure users aren't just clicking by mistake).
Round 5: Managerial & Behavioral
- "Tell me about a time you found a critical bug in a dashboard that the leadership team was using daily."
- "How do you handle a situation where the Product Manager wants the data to prove their hypothesis, but your analysis shows the opposite?"
Pro Tip: Understand Flipkart's "Hub and Spoke" supply chain model before the interview. Knowing how packages move from sellers -> fulfillment centers -> hubs -> delivery agents will give you a massive advantage in the business case round.



