Upload Button Icon Add office photos

Nykaa

Compare button icon Compare button icon Compare

Filter interviews by

Nykaa Sdet Engineer Interview Questions, Process, and Tips

Updated 19 Feb 2024

Top Nykaa Sdet Engineer Interview Questions and Answers

Nykaa Sdet Engineer Interview Experiences

2 interviews found

Sdet Engineer Interview Questions & Answers

user image Anonymous

posted on 19 Feb 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Aug 2023. There were 3 interview rounds.

Round 1 - HR 

(3 Questions)

  • Q1. Tell me about yourself?
  • Q2. Expected and actual salary?
  • Q3. Tell me about the projects and knowledge on selenium api and etc?
  • Ans. 

    I have worked on multiple projects involving Selenium API for automated testing of web applications.

    • Developed test scripts using Selenium WebDriver to automate testing of web applications

    • Utilized Selenium Grid for parallel testing across different browsers and platforms

    • Integrated Selenium with testing frameworks like TestNG or JUnit for test execution and reporting

    • Implemented Page Object Model design pattern for better

  • Answered by AI
Round 2 - One-on-one 

(4 Questions)

  • Q1. Java coding questions on string and prime numbers
  • Q2. Explain project which you are working.
  • Q3. Write selenium program for swiggy till the cart?
  • Ans. 

    Selenium program to automate adding items to cart on Swiggy

    • Launch the Swiggy website using Selenium WebDriver

    • Search for desired food items and add them to cart

    • Verify items are added correctly before proceeding to checkout

  • Answered by AI
  • Q4. Explain waits in selenium?
  • Ans. 

    Waits in Selenium are used to make the automation script wait for a certain condition to be met before proceeding.

    • There are three types of waits in Selenium: Implicit Wait, Explicit Wait, and Fluent Wait.

    • Implicit Wait sets a default waiting time for the entire script to wait for an element to be found.

    • Explicit Wait is used to wait for a certain condition to occur before proceeding to the next step.

    • Fluent Wait is a more...

  • Answered by AI
Round 3 - One-on-one 

(2 Questions)

  • Q1. More question on selenium.
  • Q2. Handle dropdown in seleniun.
  • Ans. 

    To handle dropdown in Selenium, use Select class from Selenium WebDriver API.

    • Create a Select object by locating the dropdown element using findElement() method.

    • Use selectByVisibleText(), selectByValue(), or selectByIndex() methods to select an option.

    • To deselect an option, use deselectByVisibleText(), deselectByValue(), or deselectByIndex() methods.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Nykaa Sdet Engineer interview:
  • Selenium
  • Java
  • Jenkins
  • Bugzilla
  • Waits
  • Rest assured
  • API
  • JIRA
  • HTTP
Interview preparation tips for other job seekers - Ask for the JD band prepare according to it.
If you feel you dont know the answer try to give whatever you know, just try if you feel you know 1% also.

Skills evaluated in this interview

Sdet Engineer Interview Questions & Answers

user image Anonymous

posted on 18 Nov 2023

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Oct 2023. There were 3 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. 1 code related to array a medium leetcode problem link. Then automation concepts questions Then some questions related to Java
Round 3 - Technical 

(1 Question)

  • Q1. 2 code questions Some basic Cypress questions and js questions Some questions related to api Project involvement and dependencies And this was it.

Sdet Engineer Interview Questions Asked at Other Companies

asked in Nykaa
Q1. Tell me about the projects and knowledge on selenium api and etc?
asked in Witty Com
Q2. In this example, the internal data structure (std::vector) can be ... read more
asked in Info Edge
Q3. What do you mean by run time polymorphism and how is it achieved?
Q4. What reusable methods have been designed by you and their impact
asked in Info Edge
Q5. Explain each oops concept with clarity and write a class where yo ... read more

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I applied via Campus Placement

Round 1 - Coding Test 

Contains around 40 aptitude questions that include CS fundamentals and also logical reasoning type and 2 coding questions of medium level

Round 2 - Technical 

(1 Question)

  • Q1. Peak element in array
  • Ans. 

    Peak element in array is the element which is greater than or equal to its neighbors.

    • Iterate through the array and check if the current element is greater than its neighbors.

    • If the current element is greater than both neighbors, it is a peak element.

    • If the current element is at the start or end of the array, only compare with one neighbor.

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Simple question like using map it can be solved easily
  • Q2. Prime number to check
  • Ans. 

    A prime number is a number greater than 1 that can only be divided by 1 and itself.

    • A prime number is a number greater than 1.

    • It can only be divided by 1 and itself.

    • Examples: 2, 3, 5, 7, 11, 13, 17, 19, 23, 29

  • Answered by AI
Round 4 - Technical 

(1 Question)

  • Q1. Palindrome all methods you can think
  • Ans. 

    Various methods to check if a string is a palindrome

    • Reverse the string and compare with the original string

    • Iterate through the string from both ends towards the middle

    • Use a stack to push the characters of the string and then pop them to compare with the original string

  • Answered by AI

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

1hr,all basic topics

Round 2 - Coding Test 

2hrs,arrays,strings,dp,linkedlist

Interview Preparation Tips

Interview preparation tips for other job seekers - read well
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(4 Questions)

  • Q1. Explain OOPS concepts with some code
  • Ans. 

    OOPS concepts are fundamental to object-oriented programming and include inheritance, encapsulation, polymorphism, and abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class. Example: class Dog extends Animal.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit. Example: private variables and public methods.

    • Polymorphism: Ability to present the same ...

  • Answered by AI
  • Q2. Explain each oops concept with clarity and write a class where you are implementing these.
  • Ans. 

    Explanation of OOPs concepts with a class implementation

    • Encapsulation: Class with private data members and public methods to access them

    • Inheritance: Class extending another class to inherit its properties and methods

    • Polymorphism: Class with multiple methods with the same name but different parameters

    • Abstraction: Class with abstract methods that must be implemented by subclasses

  • Answered by AI
  • Q3. How is encapsulation different than abstraction?
  • Ans. 

    Encapsulation is the concept of bundling data and methods that operate on the data into a single unit, while abstraction is the concept of hiding the implementation details and showing only the necessary features of an object.

    • Encapsulation is about wrapping the data (variables) and methods (functions) that operate on the data into a single unit (class).

    • Abstraction is about hiding the implementation details and showing ...

  • Answered by AI
  • Q4. What do you mean by run time polymorphism and how is it achieved?
  • Ans. 

    Run time polymorphism is the ability of a method to do different things based on the object it is acting upon.

    • Run time polymorphism is achieved through method overriding in object-oriented programming.

    • It allows a subclass to provide a specific implementation of a method that is already provided by its superclass.

    • The actual method that gets called is determined by the type of object at run time.

    • Example: Animal class has...

  • Answered by AI
Round 2 - One-on-one 

(3 Questions)

  • Q1. Explain your college major project.
  • Q2. Did you face some challenges while working on the project and how did you handle it?
  • Q3. How did you ensure that your project covers all cases?

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

DSA
1hour
Hackerrank

Round 2 - Technical 

(1 Question)

  • Q1. Resume based + oops
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Coding Test 

There were total three questions in coding test.

Round 2 - One-on-one 

(1 Question)

  • Q1. In this questions were asked related to core java

Sdet Engineer Interview Questions & Answers

Amazon user image siva shunmuga sundaram

posted on 1 Oct 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Newspaper Ad

Round 1 - Coding Test 

Coding questions with some MCQ level medium

Round 2 - Technical 

(2 Questions)

  • Q1. Array based with medium level
  • Q2. DSA questions queue
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Good one, but u can clear it

Round 2 - Coding Test 

Basic coding ques of class xi

Round 3 - HR 

(1 Question)

  • Q1. On resume, and culturre
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Bst quation simple easy
  • Q2. Bst queation hard wast

Interview Preparation Tips

Interview preparation tips for other job seekers - nice

Nykaa Interview FAQs

How many rounds are there in Nykaa Sdet Engineer interview?
Nykaa interview process usually has 3 rounds. The most common rounds in the Nykaa interview process are Technical, One-on-one Round and Resume Shortlist.
What are the top questions asked in Nykaa Sdet Engineer interview?

Some of the top questions asked at the Nykaa Sdet Engineer interview -

  1. Tell me about the projects and knowledge on selenium api and e...read more
  2. Write selenium program for swiggy till the ca...read more
  3. Explain waits in seleni...read more

Tell us how to improve this page.

Nykaa Sdet Engineer Interview Process

based on 3 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 5k Interviews
Flipkart Interview Questions
4.0
 • 1.4k Interviews
Swiggy Interview Questions
3.8
 • 429 Interviews
PolicyBazaar Interview Questions
3.6
 • 342 Interviews
Udaan Interview Questions
4.0
 • 335 Interviews
JustDial Interview Questions
3.5
 • 329 Interviews
Meesho Interview Questions
3.7
 • 329 Interviews
Info Edge Interview Questions
3.9
 • 319 Interviews
Zomato Interview Questions
3.8
 • 318 Interviews
View all
Nykaa Sdet Engineer Salary
based on 16 salaries
₹8.4 L/yr - ₹26.4 L/yr
17% more than the average Sdet Engineer Salary in India
View more details

Nykaa Sdet Engineer Reviews and Ratings

based on 3 reviews

2.2/5

Rating in categories

3.1

Skill development

2.5

Work-life balance

2.9

Salary

3.5

Job security

1.4

Company culture

2.1

Promotions

2.5

Work satisfaction

Explore 3 Reviews and Ratings
Assistant Manager
249 salaries
unlock blur

₹5.2 L/yr - ₹18 L/yr

Senior Executive
226 salaries
unlock blur

₹2.4 L/yr - ₹10 L/yr

Beauty Advisor
190 salaries
unlock blur

₹1.7 L/yr - ₹6 L/yr

Business Development Executive
183 salaries
unlock blur

₹2.2 L/yr - ₹4.5 L/yr

Associate Manager
120 salaries
unlock blur

₹8.3 L/yr - ₹26 L/yr

Explore more salaries
Compare Nykaa with

Myntra

4.0
Compare

Purplle.com

3.6
Compare

LimeRoad

2.6
Compare

Voonik

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