Upload Button Icon Add office photos

Filter interviews by

LaHagora Android Developer Interview Questions, Process, and Tips

Updated 10 Dec 2024

LaHagora Android Developer Interview Experiences

1 interview found

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Nov 2024. There were 4 interview rounds.

Round 1 - HR 

(3 Questions)

  • Q1. Tell me about yourself
  • Ans. 

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

    • 5 years of experience in Android development

    • Proficient in Java and Kotlin programming languages

    • Strong understanding of mobile UI/UX design principles

    • Experience with RESTful APIs and third-party libraries

    • Published apps on Google Play Store

  • Answered by AI
  • Q2. How many projects did you worked
  • Ans. 

    I have worked on 8 projects in total, ranging from small personal projects to large-scale applications for companies.

    • Worked on 2 personal projects to improve my skills and showcase my abilities

    • Collaborated on 3 projects with a team of developers to create mobile applications for clients

    • Led development on 1 project for a startup company to build a custom Android app

    • Contributed to 2 open-source projects to give back to t

  • Answered by AI
  • Q3. How many experience in kotlin
  • Ans. 

    I have 3 years of experience in Kotlin, including developing Android apps and libraries.

    • Developed multiple Android apps using Kotlin

    • Worked on Kotlin libraries for code reusability

    • Experience with Kotlin coroutines for asynchronous programming

  • Answered by AI
Round 2 - Assignment 

Movies listing coming from api , you have show it and in 2nd screen u have implement filtration

Round 3 - Technical 

(10 Questions)

  • Q1. Main components of Android
  • Ans. 

    The main components of Android are Activities, Services, Broadcast Receivers, and Content Providers.

    • Activities: UI components that represent a single screen with a user interface.

    • Services: Background components that perform long-running operations.

    • Broadcast Receivers: Respond to system-wide broadcast announcements.

    • Content Providers: Manage access to a structured set of data.

  • Answered by AI
  • Q2. Basics about kotlin
  • Q3. In Livedata what is difference between senddata and postdata
  • Ans. 

    In LiveData, the difference between sendData and postData is that sendData delivers data immediately, while postData delivers data after a delay.

    • sendData delivers data immediately to all active observers.

    • postData delivers data after a delay to all active observers.

    • sendData is synchronous, while postData is asynchronous.

  • Answered by AI
  • Q4. What are container in xml
  • Ans. 

    Containers in XML are used to group multiple elements together.

    • Containers are used to organize and group related elements in XML.

    • They help in structuring the XML document and making it more readable.

    • Examples of containers in XML include <div>, <section>, <table>, etc.

  • Answered by AI
  • Q5. Difference between MVVM and clean architecture
  • Ans. 

    MVVM focuses on separating UI logic from business logic, while clean architecture focuses on separation of concerns and scalability.

    • MVVM stands for Model-View-ViewModel, where the ViewModel acts as a mediator between the View and the Model.

    • Clean architecture emphasizes separation of concerns, with layers like domain, data, and presentation.

    • MVVM helps in testing UI components independently, while clean architecture prom...

  • Answered by AI
  • Q6. Why we use XML
  • Ans. 

    XML is used for storing and transporting data in a structured format.

    • XML allows for easy organization and manipulation of data.

    • It is commonly used for configuration files, web services, and data interchange.

    • XML tags provide a way to define the structure of data, making it easier to understand and process.

    • XML is platform-independent and can be easily parsed by different programming languages.

  • Answered by AI
  • Q7. What is fragments
  • Ans. 

    Fragments in Android are modular sections of an activity that enable more flexible and dynamic user interfaces.

    • Fragments can be added, removed, replaced, and rearranged within an activity.

    • They allow for better organization of UI components and can be reused across multiple activities.

    • Fragments have their own lifecycle and can communicate with the activity and other fragments using interfaces.

    • Examples include using frag...

  • Answered by AI
  • Q8. What is services in Android
  • Ans. 

    Services in Android are background components that perform long-running operations without a user interface.

    • Services run in the background and continue to run even if the app is closed.

    • They can be used for tasks such as playing music, downloading files, or syncing data.

    • Services can be started or bound to by other components in the app.

    • They can be classified as started services (run once and stop) or bound services (int

  • Answered by AI
  • Q9. What is broadcast receiver
  • Ans. 

    A broadcast receiver is a component that responds to system-wide broadcast announcements.

    • Broadcast receivers can be registered either in the AndroidManifest.xml file or dynamically in code.

    • They can listen for system events like battery low, network connectivity changes, incoming calls, etc.

    • Broadcast receivers can be used to trigger actions in response to specific events, such as displaying a notification when a new SMS

  • Answered by AI
  • Q10. What is oops concepts in detail
  • Ans. 

    OOP concepts are fundamental principles in object-oriented programming that help in organizing and designing code.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit (class).

    • Inheritance: Allowing a class to inherit properties and behavior from another class.

    • Polymorphism: The ability of objects to take on multiple forms or have multiple behaviors.

    • Abstraction: Hiding the complex implement...

  • Answered by AI
Round 4 - Technical 

(1 Question)

  • Q1. It will around that practical round

Interview Preparation Tips

Interview preparation tips for other job seekers - If you get offer letter don't join them , they have hire and Fire policy .

Skills evaluated in this interview

Android Developer Jobs at LaHagora

View all

Interview questions from similar companies

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

I applied via LinkedIn and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. SOLID principles, jetpack compose, scope functions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What is MVVM design how it's work
  • Ans. 

    MVVM is a design pattern that separates the UI, business logic, and data layers in an Android app.

    • MVVM stands for Model-View-ViewModel.

    • Model represents the data and business logic.

    • View is the UI component that displays the data.

    • ViewModel acts as a mediator between the Model and View, handling user interactions and updating the UI.

    • Data binding is often used to connect the ViewModel with the View in MVVM.

    • Example: In an A...

  • Answered by AI
  • Q2. What is a Content Provider
  • Ans. 

    A Content Provider is a component in Android that manages access to a structured set of data.

    • Content Providers are used to share data between different applications.

    • They provide a standard interface for connecting data in one process with code running in another process.

    • Content Providers can be used to store and retrieve data from a SQLite database, a file, or even the web.

    • Examples of Content Providers include Contacts

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Internally how work retrofit and which patter is follow
  • Q2. Solid Priciple

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. All technical Jetpack concept no DSA questions and asked all theoretical questions
  • Q2. What are coroutine, how to secure ur app data, network call in android , ssl pinning, notification's implementation through FCM, android basic questions
  • Ans. 

    Coroutines are a way to perform asynchronous operations in Android, securing app data involves encryption, SSL pinning enhances security, FCM for notifications.

    • Coroutines are used for managing asynchronous operations in Android, allowing for efficient and non-blocking code execution.

    • Securing app data involves using encryption techniques such as AES to protect sensitive information from unauthorized access.

    • SSL pinning i...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn this topics and also DSA questions get asked in coding round and be consistent

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is Android Manifest
  • Q2. What are services
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Basic technical knowledge question
  • Q2. Android related questions
Round 2 - HR 

(2 Questions)

  • Q1. Communication skill
  • Q2. Salary regarding questions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Basic data structure questions
  • Q2. Explain binary search with example
  • Ans. 

    Binary search is a search algorithm that finds the position of a target value within a sorted array.

    • Divide the array into two halves and compare the target value with the middle element.

    • If the target value is less than the middle element, search the left half. If greater, search the right half.

    • Repeat the process until the target value is found or the subarray is empty.

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. What is concurrency technique in android
  • Ans. 

    Concurrency technique in Android allows multiple tasks to run simultaneously, improving performance and responsiveness.

    • Concurrency in Android can be achieved using AsyncTask, Handlers, Executors, and RxJava.

    • AsyncTask allows running background tasks on a separate thread and updating UI on the main thread.

    • Handlers are used to post and process Runnable objects on a thread's message queue.

    • Executors provide a high-level API...

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

(1 Question)

  • Q1. Explain about previous project and what was your role in that project

Skills evaluated in this interview

Android Developer Interview Questions & Answers

TCS user image Shashank Singh

posted on 26 Jun 2024

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

(2 Questions)

  • Q1. How to check if a number is palindrome?
  • Ans. 

    To check if a number is palindrome, reverse the number and compare it with the original number.

    • Convert the number to a string to easily reverse it

    • Reverse the string and compare it with the original string

    • If they are the same, the number is a palindrome

  • Answered by AI
  • Q2. How to find smallest number in a list?
  • Ans. 

    To find the smallest number in a list, iterate through the list and keep track of the smallest number found so far.

    • Iterate through the list and compare each number with the current smallest number.

    • If a number is smaller than the current smallest number, update the smallest number.

    • Return the smallest number found after iterating through the entire list.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Nov 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. DONT REMEMBER THE QUESTIONS
  • Q2. I FORGOT THE QUESTION ASKED

Interview Preparation Tips

Interview preparation tips for other job seekers - BE PREPARED
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Sort array in 0(n) time complexity
  • Ans. 

    Use counting sort algorithm to achieve O(n) time complexity.

    • Count the frequency of each string in the array.

    • Create a new array based on the frequency counts.

    • Iterate through the new array to reconstruct the sorted array.

  • Answered by AI
Round 2 - Coding Test 

Coding test based on array

Skills evaluated in this interview

LaHagora Interview FAQs

How many rounds are there in LaHagora Android Developer interview?
LaHagora interview process usually has 4 rounds. The most common rounds in the LaHagora interview process are Technical, Assignment and HR.
How to prepare for LaHagora 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 LaHagora. The most common topics and skills that interviewers at LaHagora expect are Android.
What are the top questions asked in LaHagora Android Developer interview?

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

  1. In Livedata what is difference between senddata and postd...read more
  2. What is oops concepts in det...read more
  3. Difference between MVVM and clean architect...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 LaHagora interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

LaHagora Android Developer Reviews and Ratings

based on 2 reviews

3.1/5

Rating in categories

3.1

Skill development

3.1

Work-Life balance

3.1

Salary & Benefits

3.1

Job Security

3.1

Company culture

3.1

Promotions/Appraisal

3.1

Work Satisfaction

Explore 2 Reviews and Ratings
Android developer

Surat

2-4 Yrs

Not Disclosed

Android Developers

Surat

2-5 Yrs

Not Disclosed

Explore more jobs
Reactjs Developer
3 salaries
unlock blur

₹3 L/yr - ₹5 L/yr

Explore more salaries
Compare LaHagora with

TCS

3.7
Compare

Accenture

3.9
Compare

Wipro

3.7
Compare

Cognizant

3.8
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview