PlacementPrep

Nykaa Placement Papers 2026

5 min read
Uncategorized
Advertisement Placement

Nykaa Placement Papers 2026 — Complete Preparation Guide

Last Updated: March 2026


Company Overview

Nykaa is India's leading beauty and lifestyle e-commerce platform. It went public in 2021 and is a prominent digital-first retail company.

Key Facts:

  • Founded: 2012
  • Employees: 2000+
  • India Offices: Mumbai (HQ), Bangalore, Delhi
  • Publicly Listed: Yes (NSE: NYKAA)

Eligibility Criteria

CriteriaRequirement
DegreeB.Tech/B.E, M.Tech, MCA, MBA
BranchesCSE, IT, Any (for MBA roles)
Academic Score65%+ throughout
BacklogsNo active backlogs

CTC & Compensation

RoleCTC (Fresher)
Software Engineer8-15 LPA
Product Manager10-16 LPA
Data Analyst7-12 LPA

Exam Pattern

SectionQuestionsDuration
Aptitude2025 min
Technical MCQ1520 min
Coding260 min

Aptitude Questions

Q1

A man buys 12 articles for Rs. 10 and sells 10 articles for Rs. 12. Gain %? Answer: 44%

Q2

If 20% of A = 30% of B, then A:B = ? Answer: 3:2

Q3

Average of first 50 natural numbers? Answer: 25.5

Q4

A boat goes 20 km upstream in 4 hours and downstream in 2 hours. Stream speed? Answer: 2.5 km/hr

Q5

How many 3-digit numbers are divisible by 5? Answer: 180


Technical Questions

  1. E-commerce database design?
  2. How to handle flash sales traffic?
  3. Inventory management system?
  4. Recommendation engine basics?
  5. Payment gateway integration?

Coding Questions (Python)

Q1: Maximum Subarray (Kadane's Algorithm)

def max_subarray(nums):
    max_so_far = max_ending_here = nums[0]
    for num in nums[1:]:
        max_ending_here = max(num, max_ending_here + num)
        max_so_far = max(max_so_far, max_ending_here)
    return max_so_far

Q2: Product of Array Except Self

def product_except_self(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

Q3: Search in Rotated Sorted Array

def search_rotated(nums, target):
    left, right = 0, len(nums) - 1
    while left <= right:
        mid = (left + right) // 2
        if nums[mid] == target:
            return mid
        if nums[left] <= nums[mid]:
            if nums[left] <= target < nums[mid]:
                right = mid - 1
            else:
                left = mid + 1
        else:
            if nums[mid] < target <= nums[right]:
                left = mid + 1
            else:
                right = mid - 1
    return -1

Interview Tips

  1. E-commerce Knowledge: Understand beauty/lifestyle retail
  2. Customer Focus: User experience matters
  3. Scale Thinking: High traffic handling
  4. Data-Driven: Analytics and metrics
  5. Brand Understanding: Know Nykaa's products

FAQs

Q1: Is Nykaa good for tech roles? Yes, growing tech team Q2: Work culture? Inclusive, dynamic, fast-paced Q3: Tech stack? Java, Spring, React, AWS


All the best for your Nykaa placement!

Advertisement Placement

Share this article: