Upload Button Icon Add office photos

Filter interviews by

LaHagora Android Developer Interview Questions and Answers

Updated 10 Dec 2024

9 Interview questions

An Android Developer was asked 6mo ago
Q. In LiveData, what is the difference between setValue and postValue?
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.

An Android Developer was asked 6mo ago
Q. What are the differences 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...

Android Developer Interview Questions Asked at Other Companies

asked in Paytm
Q1. BST Iterator Problem Statement You are tasked with creating a cla ... read more
asked in Hike
Q2. Design a photo viewing app that displays images from the disk in ... read more
asked in Paytm
Q3. Cube Sum Pairs Problem Statement Given a positive integer N, find ... read more
asked in Rupeek
Q4. Majority Element Problem Statement Given an array/list 'ARR' cons ... read more
asked in Paytm
Q5. Colorful Knapsack Problem You are given a set of 'N' stones, each ... read more
An Android Developer was asked 6mo ago
Q. What are the OOP 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 impl...

An Android Developer was asked 6mo ago
Q. What is a broadcast receiver in Android?
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 ne...

An Android Developer was asked 6mo ago
Q. What are 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...

An Android Developer was asked 6mo ago
Q. What are fragments in Android?
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...

An Android Developer was asked 6mo ago
Q. Why do 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.

Are these interview questions helpful?
An Android Developer was asked 6mo ago
Q. What are containers 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.

An Android Developer was asked 6mo ago
Q. What are the 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.

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

Top trending discussions

View All
Interview Tips & Stories
1w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about LaHagora?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Company Website and was interviewed before Jun 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

First round was coding as well as aptitude done together went well I guess focusing on codes helps a lot.

Round 2 - Technical 

(1 Question)

  • Q1. 2nd round included tr and mr round went quite enegritic

Interview Preparation Tips

Interview preparation tips for other job seekers - Resume skills matters a lot don't fill resume the technologies you don't even aware of

Android Developer Interview Questions Asked at Other Companies

asked in Paytm
Q1. BST Iterator Problem Statement You are tasked with creating a cla ... read more
asked in Hike
Q2. Design a photo viewing app that displays images from the disk in ... read more
asked in Paytm
Q3. Cube Sum Pairs Problem Statement Given a positive integer N, find ... read more
asked in Rupeek
Q4. Majority Element Problem Statement Given an array/list 'ARR' cons ... read more
asked in Paytm
Q5. Colorful Knapsack Problem You are given a set of 'N' stones, each ... read more

I applied via Campus Placement and was interviewed in Apr 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Are you willing to relocate?
  • Ans. 

    Yes, I am open to relocating for the right opportunity that aligns with my career goals and personal growth.

    • Relocation can provide exposure to new technologies and methodologies.

    • I am excited about the prospect of working in diverse teams and cultures.

    • For example, moving to a tech hub like San Francisco could enhance my career.

    • I understand the challenges of relocating, but I see them as opportunities for growth.

  • Answered by AI
  • Q2. Why should I hire you?
  • Ans. 

    I bring a unique blend of skills, experience, and passion for software development that aligns perfectly with your team's goals.

    • Proven experience in developing scalable applications, such as a recent project where I improved performance by 30%.

    • Strong problem-solving skills demonstrated through my contributions to open-source projects, enhancing functionality and fixing bugs.

    • Excellent teamwork and communication abilitie...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - My technical and Hr interview done at same place. It lasted about 40minutes. The interviewer test both my technical knowledge and communication skills. I tell most of the answer. They check patience level.He stressed on my final year project . Asking about range and specification of compotents which I heve used in my project. Finally ask some HR questions.

I applied via LinkedIn and was interviewed before Jul 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Easy logical questions
basic quant

Round 2 - Coding Test 

Easy level coding questions
Counting frequency of alphabets

Interview Preparation Tips

Interview preparation tips for other job seekers - Just go through the basics of javascript
Hoisting

Interview Questionnaire 

1 Question

  • Q1. How to use multiple dispatch in redux?
  • Ans. 

    Multiple dispatch is not a feature of Redux. It can be achieved using middleware or custom logic.

    • Middleware like redux-thunk or redux-saga can be used to dispatch multiple actions based on a single action.

    • Custom logic can be implemented in the reducer to handle multiple actions based on a single action type.

    • For example, a single 'ADD_ITEM' action can trigger multiple actions like 'UPDATE_TOTAL', 'UPDATE_HISTORY', etc.

    • M...

  • Answered by AI

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Jun 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Simple program
  • Q2. I wrote a simple program in C

Interview Preparation Tips

Interview preparation tips for other job seekers - Be bold and confident

I applied via Naukri.com and was interviewed before Oct 2019. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What technical challenges have you faced in your work till now and how did you overcome it?
  • Ans. 

    Faced various technical challenges, including system integration and performance optimization, which I successfully navigated through strategic solutions.

    • Integration of legacy systems with modern applications: I utilized APIs and middleware to ensure seamless data flow.

    • Performance bottlenecks in a web application: Implemented caching strategies and optimized database queries, resulting in a 40% speed increase.

    • Debugging...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be truthful and give detailed explanation of the issues and how it was resolved. Explain the severity of the problem and what blockage it had caused in your daily work. How did you chose a solution and how fast was it implemented.
Are these interview questions helpful?

I applied via Walk-in and was interviewed before Sep 2019. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. 1.Technical Ques(OOPS Concept)and 2. Area of Interest 3. About Company 4. more

Interview Preparation Tips

Interview preparation tips for other job seekers - Hello Folks,
Sharing some tips while facing Interview Assessment or GD Round Assessment.
1. Be Confident always give the answer what they ask for, Never connect your answer with different topic.
2. Always go through Company Portal or wiki about their Operation & Function.
3. Always have positive vibes that whatever yes or No, You will surely gain something.
All the Best..!!

I applied via Naukri.com and was interviewed before Apr 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Technical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - I have visited interview location on morning 7am DLF block Hyderabad. Buy my interview was taken in evening 6:45pm. That was not an interview test it was a patience test.

Interview Questionnaire 

3 Questions

  • Q1. Tell me something about yourself
  • Ans. 

    I am a passionate software developer with 5 years of experience in developing web applications using various technologies.

    • 5 years of experience in software development

    • Proficient in developing web applications

    • Skilled in using various technologies

    • Passionate about coding and problem-solving

  • Answered by AI
  • Q2. What is the difference between encapsulation and polymorphism?
  • Q3. What do you mean by deadlock in OS?
  • Ans. 

    Deadlock is a situation in which two or more processes are unable to proceed because each is waiting for the other to release a resource.

    • Deadlock occurs when two or more processes are stuck in a circular waiting state.

    • It happens when processes compete for resources and each process holds a resource that another process needs.

    • Four necessary conditions for deadlock are mutual exclusion, hold and wait, no preemption, and ...

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: We were asked to solve a questionnaire containing 25 questions based on logical reasoning and basic mathematics. We went to the test center in their recruitment center where there were many desktops for the candidates to sit and give the test. At the entrance, they checked the letter we got from them to authenticate us.Then they gave us a login ID and password. Exactly when the test started, the portal became active and we were asked to enter the credentials. I completed the test in half the time as it was pretty easy and straightforward.
Tips: Practice simple aptitude questions for greater speed and accuracy.
Duration: 1 hour
Total Questions: 20

Round: Group Discussion
Experience: Ten candidates who were shortlisted from the written test attended the group discussion. The topic given to us was fairly simple and lucky for me, I used to work as an anchor, and being a strong feminist person, I had a lot of valid points to put forward. I was the one to start the discussion, and I felt I was the best speaker there. The topic was something that I follow regularly, yet I came across a few unique points from the other candidates.
Tips: Improve your English speaking skills. Be assertive and speak concisely.
Duration: 15 minutes

Round: HR Interview
Experience: The interview basically revolved around this one question which had a few follow-up questions, such as who all are there in my family, what are my strengths and weaknesses, and why am I fit for this job.
Tips: Be confident and honest about yourself.

Round: Technical Interview
Experience: I tried to be as calm and confident as possible during the whole of the interview

College Name: Guru Nanak Institute of Technology (GNIT)

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, HR and Assignment.
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.

Overall Interview Experience Rating

1/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

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

3.1

Job security

3.1

Company culture

3.1

Promotions

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
Angular Developer
3 salaries
unlock blur

₹2.5 L/yr - ₹5 L/yr

Reactjs Developer
3 salaries
unlock blur

₹3 L/yr - ₹5 L/yr

Explore more salaries
Compare LaHagora with

TCS

3.6
Compare

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare
write
Share an Interview