Upload Button Icon Add office photos

Filter interviews by

Adobe Senior Android Developer Interview Questions and Answers

Updated 11 Jun 2024

Adobe Senior Android Developer Interview Experiences

1 interview found

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

I applied via Company Website and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Data structure - tree and linkedlist questions asked, binary search tree

Round 2 - Technical 

(2 Questions)

  • Q1. Java multithreading
  • Q2. Write code for synchronise threads
  • Ans. 

    Synchronizing threads in Android can be achieved using synchronization blocks or methods.

    • Use synchronized keyword to create a synchronized block or method

    • Use locks such as ReentrantLock for more complex synchronization needs

    • Consider using synchronized collections like ConcurrentHashMap for thread-safe data structures

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

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

I was interviewed in Apr 2024.

Round 1 - Technical 

(5 Questions)

  • Q1. Questions related to kotlin coroutines in depth questions, scenario based questions
  • Q2. Solid principles
  • Q3. Architecture patterns
  • Q4. Kotlin coroutine
  • Q5. Unit testing, espresso scenario based

Interview Preparation Tips

Topics to prepare for Globant Senior Android Developer interview:
  • kotlin
  • coroutines
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Write a program to print first and last letters of words alternatively from am list

Round 2 - Technical 

(2 Questions)

  • Q1. Explain oops concept and it's pillars
  • Ans. 

    OOPs stands for Object-Oriented Programming. It is based on four main pillars: Inheritance, Encapsulation, Abstraction, and Polymorphism.

    • Inheritance: Allows a class to inherit properties and behavior from another class. Example: class B extends class A.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit. Example: using private access modifiers to restrict access to certain data.

    • Abstract...

  • Answered by AI
  • Q2. Android architecture , thread v/s coroutine

Interview Preparation Tips

Interview preparation tips for other job seekers - be prepared to code
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Mostly they focus on java , oops concept. Rather than Android related questions
  • Q2. Prepare basics of oops well
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Technical 

(4 Questions)

  • Q1. Reverse the items in the array with highest values skip the lowest
  • Ans. 

    Reverse items in array with highest values, skipping the lowest

    • Sort the array in descending order

    • Skip the lowest value(s)

    • Reverse the remaining items

  • Answered by AI
  • Q2. Kotlin coroutines
  • Q3. Java interface and abstract class difference
  • Ans. 

    Java interface defines a contract for classes to implement, while abstract class provides common functionality for subclasses.

    • Interface can only have abstract methods, while abstract class can have both abstract and non-abstract methods.

    • A class can implement multiple interfaces but can only extend one abstract class.

    • Interfaces are used to achieve multiple inheritance in Java, while abstract classes are used to provide ...

  • Answered by AI
  • Q4. MVVM Pattern in android
  • Ans. 

    MVVM is a design pattern used in Android development to separate the UI logic from the business logic.

    • 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 the UI logic and data manipulation

    • MVVM helps in maintaining a clean and organized codebase

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for programing in round 1 only

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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. What is high order function?
  • Ans. 

    A high order function is a function that can take other functions as parameters or return functions as results.

    • High order functions can be used to create more flexible and reusable code.

    • They allow for functions to be passed as arguments, making code more modular.

    • Examples include map, filter, and reduce functions in functional programming.

  • Answered by AI
  • Q2. What is most efficient layout to use on android
  • Ans. 

    ConstraintLayout is the most efficient layout to use on Android.

    • Allows for flat view hierarchy

    • Handles complex layouts efficiently

    • Supports responsive design

    • Provides tools for optimizing layouts

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. View Model Scope for activity or fragment
  • Ans. 

    View Model Scope determines whether a ViewModel should be scoped to an activity or a fragment.

    • View Model scoped to activity: shared between all fragments within the activity

    • View Model scoped to fragment: specific to that fragment only

    • Use activity scope for data shared across fragments, fragment scope for fragment-specific data

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed before Jan 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Architecture pattern
  • Q2. Kotlin advance
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - One-on-one 

(4 Questions)

  • Q1. Structs vs Classes
  • Ans. 

    Structs are value types and passed by value, while classes are reference types and passed by reference.

    • Structs are used for small, simple data types like coordinates or colors.

    • Classes are used for more complex data types that require inheritance or reference semantics.

    • Structs are copied when passed around, while classes are passed by reference.

    • Structs are stack allocated, while classes are heap allocated.

  • Answered by AI
  • Q2. Discussion about design patterns
  • Q3. OOPS discussion
  • Q4. Concurrency discussion

Interview Preparation Tips

Topics to prepare for Globant Senior IOS Developer interview:
  • IOS
  • swift
  • swiftui
  • Design Patterns

Skills evaluated in this interview

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

I was interviewed in Apr 2024.

Round 1 - Technical 

(5 Questions)

  • Q1. Questions related to kotlin coroutines in depth questions, scenario based questions
  • Q2. Solid principles
  • Q3. Architecture patterns
  • Q4. Kotlin coroutine
  • Q5. Unit testing, espresso scenario based

Interview Preparation Tips

Topics to prepare for Globant Senior Android Developer interview:
  • kotlin
  • coroutines

Adobe Interview FAQs

How many rounds are there in Adobe Senior Android Developer interview?
Adobe interview process usually has 2 rounds. The most common rounds in the Adobe interview process are Coding Test and Technical.
What are the top questions asked in Adobe Senior Android Developer interview?

Some of the top questions asked at the Adobe Senior Android Developer interview -

  1. write code for synchronise thre...read more
  2. Java multithread...read more

Tell us how to improve this page.

Adobe Senior Android Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

IBM Interview Questions
4.0
 • 2.4k Interviews
Oracle Interview Questions
3.7
 • 896 Interviews
Amdocs Interview Questions
3.8
 • 528 Interviews
Zoho Interview Questions
4.3
 • 511 Interviews
SAP Interview Questions
4.2
 • 304 Interviews
Salesforce Interview Questions
4.1
 • 270 Interviews
24/7 Customer Interview Questions
3.5
 • 175 Interviews
View all
Adobe Senior Android Developer Salary
based on 4 salaries
₹18 L/yr - ₹20 L/yr
65% more than the average Senior Android Developer Salary in India
View more details
Computer Scientist
433 salaries
unlock blur

₹21.2 L/yr - ₹70 L/yr

Technical Consultant
290 salaries
unlock blur

₹11.9 L/yr - ₹30 L/yr

Software Engineer
262 salaries
unlock blur

₹8.5 L/yr - ₹28 L/yr

Computer Scientist 2
226 salaries
unlock blur

₹30 L/yr - ₹101 L/yr

Senior Technical Consultant
190 salaries
unlock blur

₹12.5 L/yr - ₹45 L/yr

Explore more salaries
Compare Adobe with

Salesforce

4.0
Compare

Oracle

3.7
Compare

Microsoft Corporation

4.0
Compare

Amazon

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