Upload Button Icon Add office photos

Filter interviews by

Limpidstone Technology Android Mobile Application Developer Interview Questions and Answers

Updated 5 Jun 2023

Limpidstone Technology Android Mobile Application Developer Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Walk-in and was interviewed in May 2023. 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 - One-on-one 

(5 Questions)

  • Q1. What is Array?And how will you find index of array?
  • Ans. 

    An array is a data structure that stores a collection of elements of the same type. The index of an array is the position of an element within the array.

    • Arrays are used to store multiple values in a single variable.

    • To find the index of an element in an array, you can use the indexOf() method.

    • Example: String[] array = {"apple", "banana", "orange"}; int index = Arrays.asList(array).indexOf("banana");

  • Answered by AI
  • Q2. What is Shared Preference
  • Ans. 

    Shared Preference is a way to store key-value pairs in Android applications.

    • Used to store small amounts of data locally on the device

    • Data persists even after the app is closed

    • Can be used to store user preferences, settings, etc.

    • Example: Storing user login credentials

  • Answered by AI
  • Q3. Lifecycle of Android
  • Ans. 

    The Android lifecycle refers to the series of states an app goes through from when it is first launched to when it is closed.

    • The Android lifecycle includes states such as onCreate, onStart, onResume, onPause, onStop, and onDestroy.

    • Activities and fragments have their own lifecycle methods that are called at different points in the overall app lifecycle.

    • Understanding the Android lifecycle is important for managing resour...

  • Answered by AI
  • Q4. What is fragment
  • Ans. 

    A fragment is a modular section of an activity that has its own lifecycle, layout, and behavior.

    • Fragments are reusable components that can be used in multiple activities.

    • They can be added or removed from an activity dynamically.

    • Fragments allow for better organization and reusability of code.

    • Examples include a navigation drawer, a list of items, or a settings screen.

  • Answered by AI
  • Q5. How to pass data from one activity to another activity?
  • Ans. 

    Data can be passed between activities using Intent and Bundle.

    • Create an Intent object in the sending activity

    • Add data to the Intent using putExtra() method

    • Start the new activity by calling startActivity() with the Intent

    • Retrieve the data in the receiving activity using getIntent() and getExtra()

  • Answered by AI

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Limpidstone Technology?
Ask anonymously on communities.

Interview questions from similar companies

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

I applied via Referral and was interviewed in Jul 2023. 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 - Technical 

(2 Questions)

  • Q1. 1. Sealed Classes vs Enum 2. Activity Lifecycle and Fragment Lifecycle 3. Serialization in Java 4. Scope functions in Kotlin 5. Doze mode 6. New features in Android 11 7. Interprocess communication/AIDL 8...
  • Ans. 

    The interview questions cover a range of topics related to Android development, including Kotlin, Android 11 features, design patterns, and more.

    • Sealed classes are used for representing restricted class hierarchies, while enums are used for representing a fixed set of constants.

    • Activity Lifecycle and Fragment Lifecycle are important concepts in Android development for managing the state of activities and fragments.

    • Seri...

  • Answered by AI
  • Q2. These are common questions and answers can be found via Google.

Interview Preparation Tips

Topics to prepare for Accenture Android Mobile Application Developer interview:
  • Kotlin
  • Java
  • Android
Interview preparation tips for other job seekers - The interview was of medium difficulty. The interviewer expects you to give examples along with answers. The questions were pretty straightforward. Most of the questions were theoretical. No coding questions were asked of me.

Android Mobile Application Developer Interview Questions Asked at Other Companies

asked in Accenture
Q1. 1. Sealed Classes vs Enum 2. Activity Lifecycle and Fragment Life ... read more
asked in Accenture
Q2. Describe the Android Fragment Lifecycle. Which lifecycle methods ... read more
Q3. When do you open a DB connection and when do you close it in acti ... read more
Q4. How do you pass data from one activity to another activity?
Q5. What is Array?And how will you find index of array?
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

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

Round 1 - Technical 

(13 Questions)

  • Q1. Android Activity LifeCycel
  • Q2. Android Fragment Life Cycle. The interviewer asked me which life cycle methods get triggered in different scenarios.
  • Ans. 

    Android Fragments have a complex lifecycle with methods that manage their state during creation, interaction, and destruction.

    • onAttach(): Called when the fragment is first attached to its context.

    • onCreate(): Initializes the fragment; called after onAttach().

    • onCreateView(): Creates and returns the view hierarchy associated with the fragment.

    • onActivityCreated(): Called when the activity's onCreate() method has returned.

    • o...

  • Answered by AI
  • Q3. Higher Order and Lambda Functions in Kotlin
  • Ans. 

    Higher Order and Lambda Functions in Kotlin

    • Higher order functions are functions that take other functions as parameters or return functions

    • Lambda functions are anonymous functions that can be used as arguments or return values in higher order functions

    • They provide a concise way to write code and enable functional programming in Kotlin

  • Answered by AI
  • Q4. Kotlin OOPS concepts - Classes, Objects inheritance, Polymorphism, Encapsulation, Abstraction, Interfaces, Visibility Modifiers, Companion Object, Object Expression, Object Declaration
  • Q5. Intents, Intent Filter, Broadcast Recievers, Push Notifications
  • Q6. Unit Testing and UI Testing
  • Q7. Multi Modular Project structure
  • Ans. 

    Multi Modular Project structure is an architectural approach that divides an application into multiple modules for better organization and scalability.

    • Divide the application into separate modules based on functionality or features.

    • Each module should have its own set of code, resources, and dependencies.

    • Modules can communicate with each other through defined interfaces or APIs.

    • Modularization helps in code reusability, e...

  • Answered by AI
  • Q8. MVVM architecture, VM advantages, Livedata
  • Q9. Multi Threading, Coroutines
  • Q10. Dependency Injection
  • Q11. Showed me Some Kotlin codes and ask me to explain those codes and tell the output
  • Q12. Null Pointer Prevention and Type safety in kotlin
  • Ans. 

    Null pointer prevention and type safety in Kotlin

    • Kotlin uses nullable and non-nullable types to prevent null pointer exceptions

    • The safe call operator '?' can be used to safely access nullable variables

    • The '!!' operator can be used to explicitly throw a null pointer exception

    • Kotlin's type system ensures type safety by checking types at compile-time

  • Answered by AI
  • Q13. Scope functions
Round 2 - HR 

(1 Question)

  • Q1. Just basic details like current salary, expectation, Notice Period, Location Preferences
Round 3 - One-on-one 

(1 Question)

  • Q1. This was basically salary negotiation round

Interview Preparation Tips

Interview preparation tips for other job seekers - The recruiters are umresponsive, recruitment process is very slow, keep reaching out from your end in case of concerns.
Accenture Toll free Helpdesk is very helpful.

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Aug 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 

By Tcs hiring process

Round 2 - Coding Test 

Some dsa questions
Like based on kadane algorithm
And some implementations based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Do Hard work and do focus on coding
Do coding practice on
Codeforces
Leetcode
Codechef
Atcoder
Careercup
Topcoder
Hackerrank
Hackerearth
And some more platforms
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself?
  • Ans. 

    I am a passionate Android developer with 5 years of experience in building innovative mobile applications.

    • 5 years of experience in Android app development

    • Strong knowledge of Java and Kotlin programming languages

    • Experience with RESTful APIs and third-party libraries

    • Designed and implemented user-friendly interfaces

    • Published multiple apps on Google Play Store

  • Answered by AI
  • Q2. What is meant by pricing procedure?
  • Ans. 

    Pricing procedure refers to the process of determining the price of a product or service based on various factors.

    • Pricing procedure involves analyzing costs, competition, target market, and value proposition.

    • It helps in setting a price that maximizes profits while remaining competitive in the market.

    • Different pricing strategies such as cost-plus pricing, value-based pricing, and competitive pricing can be part of a pri...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Accenture Android Mobile Application Developer interview:
  • SAP SD

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

Interview Questionnaire 

1 Question

  • Q1. Basics like OOPS, Dynpro, Dialog programming, Dictionary objects of SAP ABAP. Projects

Interview Preparation Tips

Interview preparation tips for other job seekers - Please be strong in basics of respective domain

I applied via Naukri.com and was interviewed before Dec 2020. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Technical questions
  • Q2. Full stack developer

Interview Preparation Tips

Interview preparation tips for other job seekers - Thank you naukari portal
Are these interview questions helpful?

Interview Questionnaire 

1 Question

  • Q1. Why should we hire you is one of the questione you are asked.?

I applied via Campus Placement and was interviewed before Aug 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Tell me about yr self
  • Q2. Difference between print f and echo??
  • Ans. 

    printf is a function in C language used to print the output whereas echo is a command in shell scripting used to display the output.

    • printf is a function in C language while echo is a command in shell scripting

    • printf can format the output while echo cannot

    • printf is faster than echo

    • printf can print to a file while echo cannot

    • printf requires a format string while echo does not

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Only for about yrrr self and personal information

Skills evaluated in this interview

I applied via Referral and was interviewed in Jan 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Interviewed for .net developer MVC Routing, filters, authentication, page life cycle, also c# questions oops

Interview Preparation Tips

Interview preparation tips for other job seekers - Give to the point answer and be short.

Limpidstone Technology Interview FAQs

How many rounds are there in Limpidstone Technology Android Mobile Application Developer interview?
Limpidstone Technology interview process usually has 2 rounds. The most common rounds in the Limpidstone Technology interview process are Resume Shortlist and One-on-one Round.
What are the top questions asked in Limpidstone Technology Android Mobile Application Developer interview?

Some of the top questions asked at the Limpidstone Technology Android Mobile Application Developer interview -

  1. How to pass data from one activity to another activi...read more
  2. What is Array?And how will you find index of arr...read more
  3. What is Shared Prefere...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3/5

based on 1 interview experience

Difficulty level

Easy 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.6
 • 11.1k Interviews
Accenture Interview Questions
3.7
 • 8.7k Interviews
Infosys Interview Questions
3.6
 • 7.9k Interviews
Wipro Interview Questions
3.7
 • 6.1k Interviews
Cognizant Interview Questions
3.7
 • 5.9k Interviews
Amazon Interview Questions
4.0
 • 5.4k Interviews
Capgemini Interview Questions
3.7
 • 5.1k Interviews
Tech Mahindra Interview Questions
3.5
 • 4.1k Interviews
HCLTech Interview Questions
3.5
 • 4.1k Interviews
Genpact Interview Questions
3.7
 • 3.4k Interviews
View all
Compare Limpidstone Technology with

TCS

3.6
Compare

Accenture

3.7
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare
write
Share an Interview