issue 117apr 27mmxxvi
est. 2017
Sun, 27 Apr 2026
vol. IX · no. 117
PapersAdda
placement intelligence, since 2017
640+ briefs · 24 campuses · by reservation
verified offers · sourced from r/developersIndia
razorpay₹65.00 LPA· iit-d · sde-1google₹54.00 LPA· iiit-h · swe-imicrosoft₹49.50 LPA· iit-b · sdeatlassian₹38.00 LPA· nit-w · sde-1amazon₹44.20 LPA· bits-p · sde-1uber₹42.00 LPA· iit-kgp · sde-1razorpay₹65.00 LPA· iit-d · sde-1google₹54.00 LPA· iiit-h · swe-imicrosoft₹49.50 LPA· iit-b · sdeatlassian₹38.00 LPA· nit-w · sde-1amazon₹44.20 LPA· bits-p · sde-1uber₹42.00 LPA· iit-kgp · sde-1
section: Interview Questions / brief
09 Jun 2026
placement brief / Interview Questions / brief / 09 Jun 2026

Flipkart SDE-1 2024: Girls Wanna Code 5.0, 13,000 Applicants, 3 Rounds to Full-Time Offer

TL;DR. 13,000+ applicants to Flipkart's Girls Wanna Code 5.0 mentorship program. 200 selected for the mentorship cohort. Top 30 advanced to interviews based on...

Aditya Sharma
Aditya's Edit

PapersAdda 2026 Placement Cycle

By Aditya Sharma·Founder & Editor, PapersAdda

What changed in 2026 drives

Mass-recruiter offer letters are flatter for 2026 batch - the 4-5 LPA ASE band has barely budged in three years while inflation eats real wages. Premium tracks (Digital, Pro, Elite, Specialist) are still where the differential lives, and they are entirely test-driven. If you are aiming higher than the default offer, the coding round is not optional pageantry - it is the entire interview.

What I'd actually study for this

  • 01Two solid coding-round answers (1 medium-hard DSA each, with edge-case discussion) > five half-baked ones
  • 02One real project you can defend end-to-end - file paths, design decisions, and what you would change
  • 03One DBMS schema you actually built (not a textbook ER diagram), with at least 3 join-heavy queries written from memory
  • 04Three behavioural STAR stories: failure recovered, conflict handled, ownership taken

Where most candidates trip up

The single biggest mistake is treating company-specific guides as primary prep and DSA as secondary. It is the opposite. Mass recruiters use the test as a filter, but premium tracks at every IT services company use coding to allocate offer band. Spend 70% of prep time on DSA + system fundamentals, 20% on company-specific patterns, 10% on HR rehearsal. Reverse that ratio and you collect the default offer.

Editorial commentary by Aditya Sharma · written for PapersAdda · not generated, not aggregated.

TL;DR. 13,000+ applicants to Flipkart's Girls Wanna Code 5.0 mentorship program. 200 selected for the mentorship cohort. Top 30 advanced to interviews based on mentor interaction, session attendance, contest scores, and a DSA-focused final assessment. Three interview rounds later: SDE-1 offer, 6-month internship in Bangalore followed by full-time conversion. The actual interview questions were Unique Paths II (DP), palindrome linked list, and distance between two nodes in a binary tree. Source post linked at the bottom.

This is not a generic "How to get into Flipkart" preparation guide. This is one specific candidate's path through one of Flipkart's most selective pipelines in 2024, where the conversion funnel went from 13,000 applicants to a single-digit number of offers, and the interview questions were standard DSA but the path to the interview chair was not.


The verified candidate

FieldValue
Role offeredSoftware Development Engineer (SDE-1)
Cycle2024, Girls Wanna Code 5.0 cohort
Prior experienceSWE'24 Intern at American Express; DESIS Ascend Scholar 2022
Entry pathFlipkart Girls Wanna Code 5.0 mentorship program
Funnel13,000+ applicants, 200 mentees selected, top 30 interviewed
Offer structure6-month internship (January to July), then full-time SDE-1
SourcePublished post on DEV Community with full round-by-round detail

The candidate had already interned at American Express and held the DESIS Ascend Scholarship, which means this was not a first-time-coding-applicant profile. The mentorship program accelerated access to the Flipkart interview pipeline, but the interview itself was standard SDE-1 caliber. No shortcuts on the technical bar.


The Girls Wanna Code 5.0 selection funnel

The numbers are the story here. 13,000+ applications compressed down to 200 mentees, and then to 30 interview candidates, and then to offers. The acceptance rate at the mentorship stage itself was under 1.6%. The acceptance rate from mentorship to interview was 15%. This is a more selective pipeline than most off-campus cold applications to Flipkart.

What determined the top 30

Flipkart ranked the 200 mentees on four dimensions:

CriterionWhat it measured
Mentor interaction qualityHow actively the candidate engaged with their assigned Flipkart mentor during the program
Attendance in live sessionsConsistent presence in the mentorship's technical webinars and workshops
Mini-contest scoresPerformance in periodic coding contests run during the mentorship
Final assessment scoresA DSA-focused proctored test at the end of the mentorship cycle

The final assessment was the heaviest weight. Strong mentor interaction alone did not compensate for a weak DSA score. But weak attendance disqualified candidates who scored well on the assessment. Flipkart was looking for sustained engagement, not a single-sprint performance.

Practical takeaway for future GWC cohorts: treat every mini-contest like a placement round. The cumulative score from those contests is what separates the 200-to-30 cut from the 30-to-offer cut. The common mistake is to treat the mentorship as a learning phase and switch to prep mode only before the final assessment. By that point, the mini-contest scores are already locked.


Round 1: Technical PS/DS 1 (Offline, Flipkart Bengaluru)

ElementDetail
FormatOffline, whiteboard coding at Flipkart's Bengaluru office
Duration1 hour allocated, completed in 35 minutes
Questions2 (1 easy, 1 medium)
TopicsString manipulation, Dynamic Programming

Question 1: String manipulation (Easy)

A straightforward string processing problem. The candidate solved it quickly and used it to settle nerves. The specifics are not named in the source post, but the difficulty was explicitly tagged as easy. This is the warm-up question that calibrates pacing for the round.

At Flipkart SDE-1, the first question is almost always easy-tier. The interviewer is watching two things: (a) can you write clean, bug-free code under offline conditions without an IDE, and (b) do you explain your approach before writing. If you solve it silently in 8 minutes, you score on correctness but lose on communication. The candidate in this case explained approach first, then coded.

Question 2: Unique Paths II (Medium, Dynamic Programming)

The classic LeetCode 63 problem. A robot starts at the top-left of an m x n grid and wants to reach the bottom-right. Some cells are blocked (obstacles). Count the number of unique paths from start to finish, where the robot can only move right or down.

The candidate solved this on a whiteboard with a full recursion tree dry-run before writing the DP solution. The interviewer asked for both the recursive thinking and the bottom-up table.

The recursion tree dry-run is worth calling out specifically. Most candidates skip it and jump to the DP table because they know the answer. But the whiteboard format at Flipkart rewards candidates who demonstrate how they derived the recurrence relation, not just that they know it. Drawing the recursion tree for a 3x3 grid with one obstacle, showing overlapping subproblems, and then saying "this is why we memoize" is a stronger signal than writing dp[i][j] = dp[i-1][j] + dp[i][j-1] from memory.

35 minutes for two questions in a 60-minute slot. The candidate left 25 minutes on the table, which means no time pressure, no rushing, no edge cases missed. This is the pace you want in Round 1.


Round 2: Technical PS/DS 2 (Online)

ElementDetail
FormatOnline video call
Duration1 hour allocated, completed in 50 minutes
Questions2 (1 medium, 1 hard)
TopicsLinked Lists, Binary Trees

Question 1: Palindrome linked list detection (Medium)

Given a singly linked list, determine whether it reads the same forwards and backwards. The candidate presented both brute-force (copy to array, check palindrome) and the optimized approach (find middle with slow/fast pointers, reverse second half, compare).

The brute-force matters here. At Flipkart SDE-1, presenting the naive solution first and then optimizing is scored higher than jumping directly to the optimal. The interviewer wants to see the candidate's optimization instinct: "This works in O(n) space. Can I do O(1)?" The slow/fast pointer approach with in-place reversal is the expected optimal. If you only present the optimal without mentioning the brute-force, the interviewer cannot assess whether you would catch yourself in a real debugging scenario where the optimal has a subtle bug.

Question 2: Distance between two nodes in a binary tree (Hard)

Given a binary tree and two node values, find the shortest path distance between them. The approach: find the Lowest Common Ancestor (LCA), then compute distance(root, node1) + distance(root, node2) - 2 * distance(root, LCA).

This problem is rated hard because the LCA component is itself a medium problem, and combining it with distance computation requires clean decomposition. The candidate solved it with both brute-force (BFS from one node, treating the tree as an undirected graph) and the optimized LCA-based approach.

50 minutes for two problems, including both brute-force and optimized solutions for each. The pacing was tight but not panicked. The hard question consumed most of the extra time compared to Round 1, which is expected.


Round 3: Hiring Manager (Online)

ElementDetail
FormatOnline video call
DurationNot specified (estimated 45 to 60 minutes based on topic coverage)
FocusInternship experience, projects, CS fundamentals, database concepts, behavioral

This round covered significantly more ground than a typical HR screen. The hiring manager tested four distinct areas:

Past experience and projects

The interviewer asked about the American Express internship in detail: what the candidate built, what technical decisions they made, what they would change if they rebuilt it. Follow-up questions were cross-referencing, probing whether the candidate actually wrote the code or was a passenger on a team project.

CS fundamentals

TopicSpecific questions
Operating SystemsProcesses vs. threads: when would you choose one over the other?
OS (continued)Deadlock: explain with a real-life example, not textbook definition
OOPCore OOP principles and how they apply to the candidate's own projects

The deadlock question with a real-life example is a Flipkart favorite. Textbook definitions ("circular wait, mutual exclusion, hold and wait, no preemption") pass the checkbox but do not impress. The candidate who says "two people at a narrow corridor, each waiting for the other to step back, neither willing to move first" and then maps it to mutex locks scores higher on communication clarity.

Database concepts

TopicSpecific questions
SQL vs. NoSQLWhen to use relational vs. document stores, with trade-off reasoning
CAP theoremExplain, and which property would you sacrifice for a shopping cart service?
Master-Slave architectureHow replication lag affects read consistency
SQLWrite a query (specific prompt not disclosed)

CAP theorem at Flipkart's hiring manager round is a recurring pattern. Flipkart is an e-commerce platform with real consistency challenges (inventory counts, cart state, order placement). The interviewer is not testing whether you memorized the CAP triangle. They are testing whether you can reason about a partition scenario for Flipkart's own product. "I would sacrifice consistency for availability in the product catalog, but not in the order placement pipeline" is the shape of answer they want.

Behavioral

Standard topics: ambitions, how you handle work pressure, strengths and weaknesses, why Flipkart specifically. The "why Flipkart" question at the hiring manager level is not filler. Flipkart competes with Amazon, Walmart (Flipkart's parent), Swiggy, and other Bangalore product companies for the same talent pool. The candidate who can articulate a specific reason beyond "it's a good company" scores meaningfully higher.


The offer structure

The SDE-1 offer came as a 6-month internship (January to July) followed by full-time conversion. This is the standard Girls Wanna Code pipeline: internship first, then full-time if performance meets the bar during the internship period.

The internship is not a formality. Flipkart evaluates intern performance against SDE-1 expectations during those 6 months, and not every intern converts. The conversion bar includes code quality, team collaboration, and the ability to independently own a feature from design through deployment.

Compensation details are not disclosed in the source post. Flipkart SDE-1 offers in Bangalore for 2024 typically ranged from ₹18 LPA to ₹24 LPA fixed, with additional stock and performance bonuses depending on team and level band.


The candidate's preparation stack

Three named resources:

  1. GeeksforGeeks Flipkart interview questions: Past interview problems tagged to Flipkart, sorted by frequency. The candidate used this to identify the most-asked topics (DP, trees, linked lists) rather than grinding the full GFG problem bank.
  2. Striver's SDE Sheet (takeUforward): A curated 191-problem DSA sheet with company tagging. The candidate focused on the Flipkart-tagged subset.
  3. Fraz and NeetCode DSA sheets: Used as supplementary problem sources, not as the primary preparation framework.

The common thread: all three are free. No paid courses, no bootcamps. The candidate's competitive advantage was the mentorship access, not the preparation material.


What GWC teaches about pipeline hiring

Five lessons from this specific loop.

  1. The mentorship IS the interview pipeline. Girls Wanna Code is not a learning program that happens to lead to interviews. It is a structured evaluation funnel. Every mini-contest score, every session attendance mark, every mentor interaction feeds the ranking that determines who interviews. Treat every week of the mentorship as interview preparation.
  2. Whiteboard rounds reward recursion tree dry-runs. The candidate drew the full recursion tree for Unique Paths II before writing the DP table. This is the strongest signal you can give in a Flipkart whiteboard round: "I can derive the recurrence, not just remember it."
  3. Present brute-force before optimal, always. Both Round 1 and Round 2 scored the candidate on the progression from naive to optimal. Jumping to the optimal solution skips the part the interviewer is most interested in: your optimization instinct.
  4. The hiring manager tests database reasoning, not definitions. CAP theorem, SQL vs. NoSQL, and Master-Slave replication were tested in the context of e-commerce product decisions. Study these through Flipkart's lens, not a textbook's.
  5. GWC 5.0 acceptance rate was under 1.6%. 13,000+ applicants for 200 mentorship slots means the mentorship itself is harder to get into than many campus placements. If you are selected, you are already in a highly filtered pool. The interview rounds that follow are calibration, not gatekeeping.

Questions about Girls Wanna Code

Is Girls Wanna Code open to all genders? No. GWC is specifically for women and non-binary candidates. Flipkart runs separate hiring pipelines (campus, off-campus, referral) for the general applicant pool.

What is the DESIS Ascend Scholarship? DESIS Ascend is a scholarship program focused on women in STEM. The candidate held this in 2022, which indicates a consistent track record of competitive selection before the Flipkart pipeline.

Is the internship-to-full-time conversion guaranteed? No. The 6-month internship is an evaluation period. Conversion depends on performance against SDE-1 expectations. Not every GWC intern converts.

Were the interview questions the same as standard Flipkart SDE-1 campus rounds? Yes. The GWC pipeline uses the same technical bar as Flipkart's regular SDE-1 campus hiring. The mentorship provides access to the interview, not a lower difficulty level.

What was the timeline from mentorship start to offer? The source post does not specify the exact mentorship duration. The interview rounds (3 rounds) happened after the mentorship concluded and the top 30 were selected.


Source and verification

This analysis is anchored on a published post by Parul Chadda on DEV Community, with full round-by-round detail including specific problem names, round formats, and the mentorship selection funnel. Original post: Mentorship to Full-time Offer, Flipkart SDE-1 Interview Experience

PapersAdda's verification standard requires a publicly identifiable source URL, per-round detail from the candidate, and an outcome statement. This post meets all three. The candidate named the program (GWC 5.0), the funnel numbers (13,000+ to 200 to 30), the specific problems asked, and the outcome (SDE-1 offer with internship-first structure).


Also on PapersAdda

  • The FAANG SDE-1 benchmark: Amazon SDE-1 onsite 2026 Tier-2 engineer's real 4-round loop, compare Flipkart's 3-round SDE-1 process against Amazon's 4-round onsite
  • The SDE-2 version at a competitor: Amazon SDE-2 (L5) 2026 Tier-3 engineer's real 5-round loop to ₹60L, how the interview bar escalates from SDE-1 to SDE-2
  • The Microsoft new-grad loop: Microsoft new grad 2026 4-round interview real questions, a different company's entry-level technical bar for comparison
  • Why some people say no to FAANG: Praveen Chukka declined Microsoft L64 Senior 2, 2025 reasoning, the decision calculus on the other side of the offer

Quick disclosure: candidates report the patterns summarised above, and details differ by role and year. Cross-check the official notification and your own invite email for the version that actually applies to you before you prepare around any figure.

Methodology applied to this articlelast verified 9 Jun 2026
Sources used
Public exam-pattern documents, official recruiter pages, and verified candidate reports on r/developersIndia and LinkedIn.
Verification window
Page last edited 9 Jun 2026 by Aditya Sharma. Numbers and patterns sanity-checked against the most recent 2026 cycle drives we tracked.
What we did NOT do
  • No fabricated salary numbers or success rates. If we quote a range, it's sourced.
  • No noun-substituted templates. This article was not generated by swapping company names in a stock prompt.
  • No paid placements, sponsored coaching links, or affiliate-shilled course pushes.
Verification policy: /editorial-standards/. Found something incorrect? Submit a correction - we respond within 48 hours.

topic cluster

More resources in Interview Questions

Use the category hub to browse similar questions, exam patterns, salary guides, and preparation resources related to this topic.

Open Interview Questions hubBrowse all articles

paid contributor programme

Sat this this year? Share your story, earn ₹500.

First-person experience reports help future candidates prep smarter. We pay verified contributors ₹500 via UPI per accepted story with byline.

Submit your story →

ready to practice?

Take a free timed mock test

Put what you learned into practice. Our mock tests match the 2026 pattern with timer, navigator, reveal, and score breakdown. No signup.

Start free mock test →
related guides
more from PapersAdda
Company Placement PapersFlipkart Placement Papers 2026, Complete Guide with Solutions
14 min read
Company Placement PapersAmazon Placement Papers 2026: SDE-1 OA, Loop and Bar Raiser Guide
19 min read
Company Placement PapersMicrosoft Placement Papers 2026: SDE-1 OA, Loop and AA Round Guide
15 min read
Company Placement PapersToyota Placement Papers 2026 – Interview Questions, Technical Rounds & Preparation Guide
17 min read

Share this guide