Nykaa is India's first profitable unicorn: a beauty and fashion e-commerce company that has expanded into Nykaa Fashion, Nykaa Pro (B2B), and a branded product line. Post-IPO, Nykaa has built a significant tech team in Mumbai and Bengaluru. The interview process is more structured than most Indian e-commerce startups but less rigorous than CRED or Razorpay. If you're targeting a tech role at Nykaa in 2026, this guide covers what to expect.
Nykaa Interview Process: SDE Roles
Nykaa's SDE interview process typically has 4–5 rounds for mid-senior roles and 3 rounds for freshers/junior roles.
Round 1: Online Assessment (HackerRank)
- 2 coding problems (Medium difficulty), 90 minutes
- Topics: arrays, strings, hash maps, basic dynamic programming
- No proctoring noted; standard HackerRank auto-evaluate
- Tip: The first problem is usually Easy (warm-up), the second is the real filter
Round 2: Technical Interview 1 (DSA)
- 1–2 problems solved on a shared Google Doc or CoderPad
- Interviewer is senior/staff SDE
- Expected: walk through approach before coding; discuss time/space complexity
- Common topics: sliding window, two pointers, BFS/DFS on trees, simple DP
Round 3: Technical Interview 2 (System Design or Low-Level Design)
- For 2+ years experience: High-Level System Design
- Design Nykaa's product catalogue search
- Design a flash sale system (thousands of simultaneous checkout attempts)
- Design the wishlist + cart system with real-time inventory
- For freshers/1 year: Low-Level Design
- Design a shopping cart class with add/remove/discount methods
- Design an order management system with status transitions
Round 4: Hiring Manager Round
- Half technical (discuss past projects, code quality decisions)
- Half behavioural: team collaboration, handling disagreements, example of learning from a mistake
- Leadership Principles not as formal as Amazon: but similar questions in spirit
Round 5: HR Round
- Compensation discussion, joining date, relocation (if applicable)
- Standard HR questions: why Nykaa? where do you see yourself in 3 years?
DSA Questions Asked at Nykaa
Based on 2024–26 interview reports, Nykaa's DSA bar is LeetCode Medium. Hard problems are rare.
Commonly asked problems:
1. Product of Array Except Self Given an array, return an array where each element is the product of all elements except itself (no division allowed). ```python def productexceptself(nums): n = len(nums) result = [1] n left = 1 for i in range(n): result[i] = left left = nums[i] right = 1 for i in range(n-1, -1, -1): result[i] = right right = nums[i] return result ```
2. LRU Cache (Low-Level Design + DSA combined) Design an LRU cache with O(1) get and put operations. Solution: Use a doubly linked list (for O(1) removal) + hash map (for O(1) lookup). Nykaa framing: 'Design a recently viewed products cache for the homepage'
3. Top K Frequent Elements Given an array of product IDs, find the K most frequently ordered. ```python from collections import Counter import heapq def topkfrequent(products, k): count = Counter(products) return heapq.nlargest(k, count.keys(), key=count.get) ```
4. Valid Parentheses Check if a string of brackets is valid: a warm-up problem; expected O(n) stack solution.
5. Merge K Sorted Lists Merge K sorted lists of product IDs into one sorted list. Solution: Min-heap with (value, listindex, elementindex). Time: O(N log K).
6. Find All Anagrams in a String Sliding window with character frequency map: often appears as a variant.
Product Manager Interview at Nykaa
Nykaa PM interviews are known for being beauty/fashion domain-heavy. Generic product frameworks work, but you score higher by demonstrating category awareness.
Round structure for PM roles:
- Resume walkthrough (30 min): walk through 2–3 past projects with metrics
- Product case study (45 min): design a feature for Nykaa
- Analytical round: A/B test design, metric diagnosis
- Leadership + culture fit (30 min): past conflict resolution, prioritisation trade-offs
Common Nykaa PM case questions:
'Design a feature that helps new users find the right skincare products.' Expected framework: User segment (first-time skincare buyer, ingredient-aware buyer, dermat-recommended buyer) → Problem statement (discovery vs navigation vs trust) → Feature options (skin quiz, ingredient search, AR try-on) → Prioritisation (skin quiz has highest trust conversion, lowest build effort) → Success metrics (quiz completion rate, add-to-cart from quiz recommendation, D30 repurchase).
'How would you improve Nykaa's loyalty programme?' Expected: Analyse current Nykaa Pink Points mechanics → Identify friction (points expiry confusion, low redemption rate) → Propose: tiered benefits tied to beauty category expertise, birthday rewards, early access for Platinum members → Metrics: monthly active loyalty members, redemption rate, tier upgrade rate.
'Nykaa Fashion's conversion rate dropped 8% this month. Diagnose it.' Framework: Data integrity check first → External (seasonality? competitor sale?) → Funnel analysis (where in funnel: browse → PDP → cart → checkout?) → Supply side (out-of-stock SKUs in key categories?) → UX (recent app update?) → Hypothesis → Validation plan.
Nykaa's PM and SDE interviews test both domain awareness and structured communication. HireStepX's voice-based mock interviews help you practise the product case study format out loud: the skill that separates candidates who know the framework from those who can apply it fluently under pressure.
Practice freeNykaa Salary in India 2026
Nykaa is a Tier-2 product company by compensation: above IT services, below FAANG India or Razorpay, roughly comparable to Urban Company or PolicyBazaar.
SDE roles: | Level | Salary Range | |---|---| | SDE-1 (0–2 yrs) | ₹12–22 LPA | | SDE-2 (2–5 yrs) | ₹22–45 LPA | | Senior SDE (5–8 yrs) | ₹40–70 LPA | | Staff/Principal | ₹65–100 LPA |
Product Manager roles: | Level | Salary Range | |---|---| | APM / PM-1 | ₹18–30 LPA | | PM-2 / Senior PM | ₹30–55 LPA | | Group PM | ₹55–85 LPA |
Data Science / Analyst: | Level | Salary Range | |---|---| | DA-1 / DS-1 (0–2 yrs) | ₹10–20 LPA | | Senior DA/DS (3–6 yrs) | ₹22–45 LPA |
Compensation structure:
- Post-IPO, Nykaa's ESOPs are liquid (listed on BSE/NSE)
- Variable is 10–15% of base for most roles
- Office locations: Mumbai (HQ), Bengaluru (tech hub), Delhi NCR (fashion & ops)
Negotiation: Nykaa negotiates reasonably on base. A competing offer from a comparable company (Urban Company, PolicyBazaar, Cars24) carries weight. For senior roles, ESOP negotiation (vesting schedule, cliff) is often more valuable than base negotiation.
Frequently asked questions
Practice these questions on HireStepX