Upload Button Icon Add office photos

Nykaa

Compare button icon Compare button icon Compare

Filter interviews by

Nykaa Android Developer Interview Questions and Answers

Updated 10 Sep 2024

Nykaa Android Developer Interview Experiences

3 interviews found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I applied via Referral and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Lifecycle methods of activity
  • Ans. 

    Lifecycle methods of activity are callback methods that allow you to manage the state of an activity throughout its lifecycle.

    • onCreate() - called when the activity is first created

    • onStart() - called when the activity is becoming visible to the user

    • onResume() - called when the activity will start interacting with the user

    • onPause() - called when the activity is going into the background, but is still visible

    • onStop() - ca...

  • Answered by AI
  • Q2. What is inline function
  • Ans. 

    An inline function is a function that is expanded in place at the point of call, rather than being called as a separate function.

    • Inline functions are typically used for small, frequently called functions to reduce the overhead of function calls.

    • They are defined with the 'inline' keyword in C++.

    • Inline functions can improve performance by avoiding the overhead of function call stack operations.

    • Example: inline int square(

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I was interviewed in Aug 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Lifecycle methods of activity
  • Ans. 

    Lifecycle methods of activity are used to manage the state of an activity throughout its lifecycle.

    • onCreate() - called when the activity is first created

    • onStart() - called when the activity is becoming visible to the user

    • onResume() - called when the activity will start interacting with the user

    • onPause() - called when the activity is going into the background, but still visible

    • onStop() - called when the activity is no l...

  • Answered by AI
  • Q2. Inline function

Skills evaluated in this interview

Android Developer Interview Questions Asked at Other Companies

asked in Paytm
Q1. Cube Sum Pairs Problem Statement Given a positive integer N, find ... read more
asked in Rupeek
Q2. Majority Element Problem Statement Given an array/list 'ARR' cons ... read more
asked in Paytm
Q3. BST Iterator Problem Statement You are tasked with creating a cla ... read more
asked in Hike
Q4. Design an photo viewing app which will show images from the disk ... read more
asked in Paytm
Q5. Integer to Roman Conversion Given an integer N, convert it to its ... read more
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Android Related questions, Architecture Components Complete, Life Cycle
  • Q2. Data Structures used in Android Projects
  • Ans. 

    Data structures commonly used in Android projects include arrays, lists, maps, and sets.

    • Arrays are used to store a collection of elements of the same data type.

    • Lists such as ArrayList and LinkedList are used to store a collection of elements that can be accessed by index.

    • Maps like HashMap and LinkedHashMap are used to store key-value pairs.

    • Sets like HashSet and TreeSet are used to store unique elements.

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Referral and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Medium question on hashmap

Round 2 - Technical 

(1 Question)

  • Q1. Design question which checks oops concept and data structure

Interview Preparation Tips

Interview preparation tips for other job seekers - be calm and don't over think, first complete a working code and then optimize
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Asked about my current work

I was interviewed in Apr 2021.

Round 1 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical interview round. I was asked 2 DSA problems to discuss and code.

  • Q1. 

    Binary Array Sorting Problem Statement

    You are provided with a binary array, i.e., an array containing only 0s and 1s. Your task is to sort this binary array and return it after sorting.

    Input:

     The fir...
  • Ans. 

    A two-pointer approach can be used for this question. Maintain two indexes. Initialize the first index left as 0 and second index right as n-1, where n is size of the array .
    While left < right , do the following : 
    a) Keep incrementing index left while arr[left] =0 
    b) Keep decrementing index right while arr[right]=1 
    c) If left < right then exchange arr[left] and arr[right]

  • Answered Anonymously
  • Q2. 

    Maximum Subarray Sum Problem Statement

    Given an array arr of length N consisting of integers, find the sum of the subarray (including empty subarray) with the maximum sum among all subarrays.

    Explanation...

  • Ans. 

    The direct approach to solve this problem is to run two for loops and for every subarray check if it is the maximum sum possible. 
    Time complexity: O(N^2), Where N is the size of the array.
    Space complexity: O(1)
    The efficient approach is to use Kadane's algorithm. It calculates the maximum sum subarray ending at a particular index by using the maximum sum subarray ending at the previous position. 
    Steps : 
    D...

  • Answered Anonymously
Round 2 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

Technical interview round. I was asked questions related to Android and its architecture.

  • Q1. How does RecyclerView work internally?
  • Ans. 

    RecyclerView is a UI component which allows us to create a scrolling list. It is basically a new ViewGroup used to render any adapter-based view in horizontal/vertical /grid or staggered grid manner using the Viewholder pattern.

    Working : So, let’s say when we are scrolling the list which has 50 items in the collection and we show only 5 items at once in the list. Here, item 1 to item 5 is the ones that are visible on t...

  • Answered Anonymously
  • Q2. Can you explain how to implement a ViewModel in Android?
  • Ans. 

    There are three steps to setting up and using a ViewModel:
    1. Separate out your data from your UI controller by creating a class that extends ViewModel
    2. Set up communications between your ViewModel and your UI controller
    3. Use your ViewModel in your UI controller

  • Answered Anonymously

Interview Preparation Tips

Eligibility criteriaNo CriteriaTimes Internet interview preparation:Topics to prepare for the interview - Android Architecture, Data Structures, Algorithms, System Design, OOPSTime required to prepare for the interview - 4 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 interviewRejected

Skills evaluated in this interview

I applied via Company Website and was interviewed in Mar 2022. There were 2 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 - Group Discussion 

Group discussion men's how is working and only one facing the problem i as the problem

Interview Preparation Tips

Interview preparation tips for other job seekers - Your's company was good position

I applied via Referral and was interviewed in Oct 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Data structure and algorithm : find maximum sum subarray. Separate zeroes and ones in array. Android questions : viewmodel under the hood, recycler view under the hood, implement viewmodel.
  • Ans. 

    Questions on data structure, algorithm, and Android development.

    • To find maximum sum subarray, use Kadane's algorithm

    • To separate zeroes and ones in array, use two pointers approach

    • ViewModel is a class that stores and manages UI-related data

    • RecyclerView is a flexible view for providing a limited window into a large data set

    • To implement ViewModel, extend ViewModel class and override onCleared() method

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Do practice ds and algorithm questions and android architecture questions.

Interview Questionnaire 

2 Questions

  • Q1. IOS basic question with root knowledge
  • Q2. Multithreading, multitasking

Interview Preparation Tips

Round: Resume Shortlist
Experience: It's first step to introduced with company so please make your resume more attractive.
Describes only what do you know and what is your unique qualities.
Tips: Make it simple and short with precious information.

Nykaa Interview FAQs

How many rounds are there in Nykaa Android Developer interview?
Nykaa interview process usually has 1 rounds. The most common rounds in the Nykaa interview process are Technical and One-on-one Round.
How to prepare for Nykaa Android Developer interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Nykaa. The most common topics and skills that interviewers at Nykaa expect are Algorithms, Android, Cocoa Touch, Data Structures and IOS.
What are the top questions asked in Nykaa Android Developer interview?

Some of the top questions asked at the Nykaa Android Developer interview -

  1. Data Structures used in Android Proje...read more
  2. what is inline funct...read more
  3. Lifecycle methods of activ...read more

Tell us how to improve this page.

Nykaa Android Developer Interview Process

based on 3 interviews

Interview experience

4.7
  
Excellent
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
 • 432 Interviews
PolicyBazaar Interview Questions
3.6
 • 343 Interviews
Udaan Interview Questions
4.0
 • 335 Interviews
JustDial Interview Questions
3.5
 • 329 Interviews
Meesho Interview Questions
3.7
 • 329 Interviews
Zomato Interview Questions
3.7
 • 320 Interviews
Info Edge Interview Questions
3.9
 • 319 Interviews
View all
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