Filter interviews by
I applied via Referral and was interviewed in Aug 2024. There was 1 interview round.
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...
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(
I was interviewed in Aug 2024.
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...
I applied via Referral and was interviewed in Jun 2024. There was 1 interview round.
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.
Top trending discussions
I applied via Referral and was interviewed in Aug 2024. There were 2 interview rounds.
Medium question on hashmap
posted on 14 Jan 2022
I was interviewed in Apr 2021.
Round duration - 60 minutes
Round difficulty - Easy
Technical interview round. I was asked 2 DSA problems to discuss and code.
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.
The fir...
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]
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.
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...
Round duration - 60 minutes
Round difficulty - Medium
Technical interview round. I was asked questions related to Android and its architecture.
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...
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
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.
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.
posted on 29 Apr 2022
I applied via Company Website and was interviewed in Mar 2022. There were 2 interview rounds.
Group discussion men's how is working and only one facing the problem i as the problem
posted on 15 Apr 2021
I applied via Referral and was interviewed in Oct 2020. There was 1 interview round.
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
based on 3 interviews
Interview experience
Assistant Manager
249
salaries
| ₹5.2 L/yr - ₹18 L/yr |
Senior Executive
226
salaries
| ₹2.4 L/yr - ₹10 L/yr |
Beauty Advisor
190
salaries
| ₹1.7 L/yr - ₹6 L/yr |
Business Development Executive
183
salaries
| ₹2.2 L/yr - ₹4.5 L/yr |
Associate Manager
120
salaries
| ₹8.3 L/yr - ₹26 L/yr |
Myntra
Purplle.com
LimeRoad
Voonik