Upload Button Icon Add office photos

Nykaa

Compare button icon Compare button icon Compare

Filter interviews by

Nykaa Senior Software Engineer Interview Questions and Answers

Updated 24 Sep 2024

Nykaa Senior Software Engineer Interview Experiences

4 interviews found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Instahyre and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - Coding Test 

String and DP questions

Round 2 - Technical 

(1 Question)

  • Q1. Design BookMyShow
Round 3 - Technical 

(1 Question)

  • Q1. Past challenging projects
  • Ans. 

    Developed a real-time data processing system for a high-traffic e-commerce platform.

    • Implemented distributed computing using Apache Kafka and Spark.

    • Optimized database queries to handle large volumes of data.

    • Designed fault-tolerant architecture to ensure system reliability.

    • Collaborated with cross-functional teams to meet project deadlines.

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - Assignment 

A small app was to be built using recycler view and consuming a given api.

Round 2 - Technical 

(2 Questions)

  • Q1. Activity lifycycle
  • Q2. Jetpack compose
Round 3 - HR 

(2 Questions)

  • Q1. Why are you leaving the current org ?
  • Ans. 

    Seeking new challenges and growth opportunities.

    • Looking for new challenges and opportunities for growth.

    • Interested in working with new technologies and tools.

    • Seeking a more collaborative and innovative work environment.

    • Want to expand my skill set and knowledge in a different industry.

    • Current organization lacks career advancement opportunities.

  • Answered by AI
  • Q2. Salary expectations

Interview Preparation Tips

Interview preparation tips for other job seekers - Please be clear with android concepts, they ask very simple but tricky questions.

Senior Software Engineer Interview Questions Asked at Other Companies

asked in DBS Bank
Q1. Tell me about yourself. What technology are you using? What is a ... read more
asked in GlobalLogic
Q2. MapSum Pair Implementation Create a data structure named 'MapSum' ... read more
asked in UST
Q3. Nth Prime Number Problem Statement Find the Nth prime number give ... read more
asked in Capgemini
Q4. Pascal's Triangle Construction You are provided with an integer ' ... read more
Q5. K Largest Elements Problem Statement You are given an integer k a ... read more
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
-
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Aug 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Asked questions related to Core JS concepts like Output based questions

Round 2 - Coding Test 

Asked 2 question on ReactJS development

Round 3 - One-on-one 

(1 Question)

  • Q1. Managerial round normal discussion on past project and what they are doing in company.

Interview Preparation Tips

Interview preparation tips for other job seekers - Clear you concept on DSA and JS and any frontend framework.

I applied via Referral and was interviewed in Aug 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. It'll be to build a react custom component
Round 3 - Technical 

(1 Question)

  • Q1. React and javascript
Round 4 - Technical 

(1 Question)

  • Q1. Managerial round was about your career, learnings, projects and questions around that

Interview Preparation Tips

Interview preparation tips for other job seekers - It's not very hard if you're good with js and react

Nykaa interview questions for designations

 Software Engineer

 (1)

 Senior Data Engineer

 (1)

 Software Engineer2

 (1)

 Software Developer

 (1)

 Senior Engineer

 (1)

 QA Engineer

 (2)

 Staff Engineer

 (1)

 Senior Android Developer

 (2)

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Coding Test 

Simple ds algo and knowledge of nodejs

Round 3 - HR 

(2 Questions)

  • Q1. Simple question about your previous job
  • Q2. Previous salary and previous work exp

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn basics of ds algo and node js along with react and nextjs

I appeared for an interview in Sep 2021.

Round 1 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical interview round where the interviewer asked me 2 DSA based problems.

  • Q1. 

    Buy and Sell Stock Problem Statement

    Imagine you are Harshad Mehta's friend, and you have been given the stock prices of a particular company for the next 'N' days. You can perform up to two buy-and-sell ...

  • Ans. 

    The task is to determine the maximum profit that can be achieved by performing up to two buy-and-sell transactions on a given set of stock prices.

    • Iterate through the array of stock prices to find the maximum profit that can be achieved by buying and selling stocks at different points.

    • Keep track of the maximum profit that can be achieved by considering all possible combinations of buy and sell transactions.

    • Ensure that y...

  • Answered by AI
  • Q2. 

    Number of Bit Flips Problem Statement

    Ninja is practicing binary representations and stumbled upon an interesting problem. Given two numbers 'A' and 'B', you are required to determine how many bits need t...

  • Ans. 

    Calculate the number of bit flips required to convert one number to another in binary representation.

    • Convert both numbers to binary representation

    • Count the number of differing bits between the two numbers

    • Output the count of differing bits as the number of bit flips required

    • Example: A = 13 (1101), B = 7 (0111) -> 2 bit flips required

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

Technical interview round where the interviewer asked me 2 DSA based problems.

  • Q1. 

    Boundary Traversal of a Binary Tree

    Given a binary tree of integers, your task is to return the boundary nodes of the tree in Anti-Clockwise direction starting from the root node.

    Input:

    The first line ...
  • Ans. 

    Return the boundary nodes of a binary tree in Anti-Clockwise direction starting from the root node.

    • Traverse the left boundary nodes in top-down order

    • Traverse the leaf nodes in left-right order

    • Traverse the right boundary nodes in bottom-up order

    • Handle cases where duplicates occur in boundary nodes

  • Answered by AI
  • Q2. 

    Reverse Linked List in Groups of K

    You are provided with a linked list containing 'N' nodes and an integer 'K'. The task is to reverse the linked list in groups of size K, which means reversing the nodes ...

  • Ans. 

    Reverse a linked list in groups of size K by reversing nodes in each group.

    • Iterate through the linked list in groups of size K

    • Reverse each group of nodes

    • Handle cases where the number of elements in the last group is less than K

  • Answered by AI
Round 3 - HR 

Round duration - 30 minutes
Round difficulty - Easy

Typical HR round where the interviewer asked behavioral problems.

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAInfo Edge India (Naukri.com) interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

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.

Application resume tips for other job seekers

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.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jul 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. OOPS, java, data structure
  • Q2. Coding assignment for binary search
  • Ans. 

    Implement binary search algorithm to find a target string in a sorted array of strings.

    • Ensure the array of strings is sorted before performing binary search.

    • Compare the target string with the middle element of the array and adjust the search range accordingly.

    • Repeat the process until the target string is found or the search range is exhausted.

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. What is your Notice period
  • Q2. Expectation from new job

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Mar 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Discussion with Lead Engineer around basics of javascript, HTML, CSS, and Resume based question
Round 3 - Technical 

(1 Question)

  • Q1. Discussion with Technical Architect around Some advanced concepts of javascript, React, Some aptitude questions.
Round 4 - One-on-one 

(1 Question)

  • Q1. Discussion with hiring manager. Understanding around the project, roles and responsibility of the position I was being hired for.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be good with basics. Be clear about your expertise.
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Aptitude Test 

Aptitude test was on hacker earth

Round 3 - Coding Test 

No coding test was taken by the interviewrrwe

Interview Preparation Tips

Interview preparation tips for other job seekers - dckdjc dkjc kd ckjd ckjd ckjd ckjd ckjdcljds cljsd klcj dsljkc dlsjkc ljds cljsd cds
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I appeared for an interview before Oct 2022.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Coding Test 

Asked dome simple LinkedIn list and array questions.

Round 3 - One-on-one 

(1 Question)

  • Q1. Some basic Java and opps and SQL query

Nykaa Interview FAQs

How many rounds are there in Nykaa Senior Software Engineer interview?
Nykaa interview process usually has 3-4 rounds. The most common rounds in the Nykaa interview process are Technical, Coding Test and One-on-one Round.
What are the top questions asked in Nykaa Senior Software Engineer interview?

Some of the top questions asked at the Nykaa Senior Software Engineer interview -

  1. It'll be to build a react custom compon...read more
  2. React and javascr...read more
  3. Activity lifycy...read more

Tell us how to improve this page.

Nykaa Senior Software Engineer Interview Process

based on 3 interviews

1 Interview rounds

  • Technical Round
View more
Nykaa Senior Software Engineer Salary
based on 81 salaries
₹15.7 L/yr - ₹38 L/yr
76% more than the average Senior Software Engineer Salary in India
View more details

Nykaa Senior Software Engineer Reviews and Ratings

based on 7 reviews

2.8/5

Rating in categories

3.6

Skill development

3.4

Work-life balance

2.8

Salary

3.3

Job security

2.9

Company culture

2.6

Promotions

2.7

Work satisfaction

Explore 7 Reviews and Ratings
Assistant Manager
240 salaries
unlock blur

₹4.9 L/yr - ₹18 L/yr

Senior Executive
233 salaries
unlock blur

₹2.4 L/yr - ₹10.3 L/yr

Beauty Advisor
182 salaries
unlock blur

₹1.7 L/yr - ₹5 L/yr

Business Development Executive
181 salaries
unlock blur

₹2 L/yr - ₹4.6 L/yr

Associate Manager
106 salaries
unlock blur

₹7.2 L/yr - ₹26 L/yr

Explore more salaries
Compare Nykaa with

Amazon

4.0
Compare

Flipkart

3.9
Compare

Udaan

3.9
Compare

Indiamart Intermesh

3.6
Compare
Did you find this page helpful?
Yes No
write
Share an Interview