Upload Button Icon Add office photos

Microland

Compare button icon Compare button icon Compare

Filter interviews by

Microland Android Developer Interview Questions and Answers

Updated 21 Aug 2024

Microland Android Developer Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

45 minutes logical reasoing coding mocqs

Round 2 - Coding Test 

Not abale to sahre something yes do this wo this

Interview Preparation Tips

Interview preparation tips for other job seekers - be preapre

Interview questions from similar companies

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

(1 Question)

  • Q1. What is Multithreading
  • Ans. 

    Multithreading is the ability of a CPU to execute multiple threads concurrently, allowing for improved performance and responsiveness in applications.

    • Multithreading allows multiple tasks to be executed simultaneously on a single CPU core.

    • Each thread has its own stack and runs independently, sharing resources with other threads.

    • Examples of multithreading include running background tasks while the main UI thread remains

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. What are your strengths
  • Ans. 

    My strengths include strong problem-solving skills, attention to detail, and a passion for learning new technologies.

    • Strong problem-solving skills

    • Attention to detail

    • Passion for learning new technologies

  • Answered by AI
  • Q2. What are your weekness
  • Ans. 

    My weakness is that I tend to be overly critical of my own work, which can sometimes lead to perfectionism.

    • I have a tendency to spend too much time on a task to ensure it is perfect

    • I struggle with delegating tasks to others because I want to make sure they are done correctly

    • I can be overly self-critical, which can affect my confidence

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. What are your strengths
  • Ans. 

    My strengths include strong problem-solving skills, attention to detail, and a passion for learning new technologies.

    • Strong problem-solving skills

    • Attention to detail

    • Passion for learning new technologies

  • Answered by AI
  • Q2. What are your weekness
  • Ans. 

    My weakness is that I can be overly critical of my own work, which can sometimes lead to perfectionism.

    • I tend to spend too much time on a task to ensure it is perfect

    • I have difficulty delegating tasks to others

    • I can be too self-critical and have high expectations for myself

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(3 Questions)

  • Q1. Explain clean architecture
  • Ans. 

    Clean architecture is a software design approach that separates concerns and enforces a clear separation of responsibilities.

    • Separates code into layers (presentation, domain, data)

    • Dependence on abstractions rather than concrete implementations

    • Allows for easier testing and maintenance

    • Promotes scalability and flexibility

    • Example: MVP, MVVM, VIPER

  • Answered by AI
  • Q2. Explain mvvm acrhitecture
  • Ans. 

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

    • Model - represents the data and business logic

    • View - UI components that display data and interact with the user

    • ViewModel - acts as a mediator between the Model and View, handling data operations and updating the UI

    • Data binding - connects the View and ViewModel, automatically updating the UI when data changes

  • Answered by AI
  • Q3. Explain SOLID principle
  • Ans. 

    SOLID is a set of five principles for writing clean, maintainable, and scalable object-oriented code.

    • Single Responsibility Principle: A class should have only one reason to change.

    • Open/Closed Principle: Classes should be open for extension but closed for modification.

    • Liskov Substitution Principle: Objects of a superclass should be replaceable with objects of its subclasses without affecting the program's correctness.

    • In...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Difference Between Dispatch Queue and OperationalQueue
  • Ans. 

    Dispatch Queue is a high-level API for managing concurrent operations, while OperationQueue is built on top of Dispatch Queue and adds additional features for managing operation objects.

    • Dispatch Queue is a lightweight way to execute tasks serially or concurrently, while OperationQueue is used to manage operation objects that represent tasks.

    • OperationQueue allows for dependencies between operations, while Dispatch Queue...

  • Answered by AI
  • Q2. SOLID Principle
Round 2 - Technical 

(1 Question)

  • Q1. Programming task

Interview Preparation Tips

Interview preparation tips for other job seekers - Be Confident while answering the question

Skills evaluated in this interview

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

I applied via Company Website and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Assignment 

Started with a normal assignment. A basic form application with few operation

Round 2 - Technical 

(5 Questions)

  • Q1. Javascript basics and React native
  • Q2. Closures,let var and const
  • Q3. Threads of javascript, Architecture
  • Ans. 

    Threads of javascript refer to the concept of asynchronous programming in JavaScript. Architecture in this context likely refers to the overall structure and organization of a React Native application.

    • JavaScript is single-threaded, meaning it can only execute one piece of code at a time. Asynchronous programming allows for non-blocking operations, improving performance and user experience.

    • React Native architecture typi...

  • Answered by AI
  • Q4. Storage, Secure storage, Offline app handling
  • Q5. Push notification, Camera, geomaps

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Oct 2021. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. 1)what is intent.
  • Ans. 

    Intent is a messaging object used to request an action from another app component.

    • Intents facilitate communication between components in an app or between different apps.

    • They can be used to start activities, services, or broadcast receivers.

    • Intents can also carry data using extras and can specify the type of action to be performed using action and category.

    • Explicit intents specify the component to be invoked while impl...

  • Answered by AI
  • Q2. What is services
  • Ans. 

    Services are background processes that run independently of the UI and can perform long-running operations.

    • Services are used to perform tasks that should continue even when the app is not in the foreground.

    • They can be started and stopped by the app or by the system.

    • Examples include playing music in the background, downloading files, and syncing data.

    • Services can be bound to activities to allow communication between the...

  • Answered by AI
  • Q3. Which Architecture pattern you know
  • Ans. 

    I know about Model-View-Controller (MVC), Model-View-Presenter (MVP), and Model-View-ViewModel (MVVM) architecture patterns.

    • MVC separates the application into three components: Model, View, and Controller.

    • MVP separates the application into three components: Model, View, and Presenter.

    • MVVM separates the application into three components: Model, View, and ViewModel.

    • MVC, MVP, and MVVM are all commonly used in Android deve...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic should be clear. Introduce yourself.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - One-on-one 

(10 Questions)

  • Q1. What is static in Java?
  • Q2. What is singleton?
  • Q3. What is Coroutines?
  • Q4. What is dispatcher?
  • Q5. What is with context in Coroutines?
  • Q6. How to raise request parallel in Coroutines?
  • Q7. Scoped functions in Kotlin.
  • Q8. Background task in Android.
  • Q9. What is the difference between interface and abstract class in Java?
  • Q10. What is let function?
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. What are your strengths
  • Ans. 

    My strengths include strong problem-solving skills, attention to detail, and a passion for learning new technologies.

    • Strong problem-solving skills

    • Attention to detail

    • Passion for learning new technologies

  • Answered by AI
  • Q2. What are your weekness
  • Ans. 

    My weakness is that I tend to be overly critical of my own work, which can sometimes lead to perfectionism.

    • I have a tendency to spend too much time on a task to ensure it is perfect

    • I struggle with delegating tasks to others because I want to make sure they are done correctly

    • I can be overly self-critical, which can affect my confidence

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. What are your strengths
  • Ans. 

    My strengths include strong problem-solving skills, attention to detail, and a passion for learning new technologies.

    • Strong problem-solving skills

    • Attention to detail

    • Passion for learning new technologies

  • Answered by AI
  • Q2. What are your weekness
  • Ans. 

    My weakness is that I can be overly critical of my own work, which can sometimes lead to perfectionism.

    • I tend to spend too much time on a task to ensure it is perfect

    • I have difficulty delegating tasks to others

    • I can be too self-critical and have high expectations for myself

  • Answered by AI

I applied via Recruitment Consulltant and was interviewed before Mar 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Techincal basic questiin

Interview Preparation Tips

Interview preparation tips for other job seekers - Good company.hr response is quick

Microland Interview FAQs

How many rounds are there in Microland Android Developer interview?
Microland interview process usually has 2 rounds. The most common rounds in the Microland interview process are Aptitude Test and Coding Test.

Tell us how to improve this page.

Microland Android Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Senior Engineer
382 salaries
unlock blur

₹2.4 L/yr - ₹5.2 L/yr

Senior Administrator
268 salaries
unlock blur

₹3.6 L/yr - ₹14 L/yr

Sme Associate
216 salaries
unlock blur

₹7.1 L/yr - ₹17 L/yr

System Administrator
213 salaries
unlock blur

₹2.2 L/yr - ₹8.1 L/yr

Senior Analyst
179 salaries
unlock blur

₹3.8 L/yr - ₹12 L/yr

Explore more salaries
Compare Microland with

Wipro

3.7
Compare

HCLTech

3.5
Compare

Tech Mahindra

3.5
Compare

TCS

3.7
Compare
Did you find this page helpful?
Yes No
write
Share an Interview