Upload Button Icon Add office photos

Filter interviews by

Adobe IOS Application Developer Interview Questions, Process, and Tips

Updated 21 Jun 2023

Adobe IOS Application Developer Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Dec 2022. There were 5 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 

(2 Questions)

  • Q1. 2nd largest element in array
  • Ans. 

    Find the 2nd largest element in an array of strings.

    • Sort the array in descending order

    • Access the element at index 1 to get the 2nd largest element

  • Answered by AI
  • Q2. Top view of given binary tree
  • Ans. 

    To get the top view of a binary tree, we need to find the nodes that are visible when looking at the tree from the top.

    • Start from the root node and assign it a horizontal distance of 0.

    • Traverse the tree using a queue and keep track of the horizontal distance of each node.

    • For each horizontal distance, only keep the node with the smallest level in the result.

    • Repeat the process for left and right child nodes, updating the

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Questions related to iOS and swift basics
  • Q2. Design NotificationCenter
  • Ans. 

    NotificationCenter is a system that enables communication between different parts of an application.

    • NotificationCenter allows components of an application to communicate without having direct references to each other.

    • It uses the observer pattern where objects register themselves as observers for specific notifications.

    • Notifications can be posted to the NotificationCenter with optional data.

    • Observers can then receive an...

  • Answered by AI
Round 4 - Technical 

(1 Question)

  • Q1. Design twitter feed & solid principles
  • Ans. 

    Design a Twitter feed using SOLID principles

    • Separate classes for each responsibility (Single Responsibility Principle)

    • Use interfaces to define behavior and allow for easy swapping of implementations (Open/Closed Principle)

    • Dependency Injection to decouple components and make testing easier (Dependency Inversion Principle)

    • Liskov Substitution Principle to ensure derived classes can be substituted for their base classes wi...

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

(2 Questions)

  • Q1. It was hiring manger rounds .. Behavioural questions
  • Q2. First occurence of given number in sorted array
  • Ans. 

    Find the first occurrence of a given number in a sorted array.

    • Use binary search to efficiently find the first occurrence of the number.

    • Keep track of the index of the first occurrence as you search through the array.

    • Return the index of the first occurrence once found.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare your DSA skilles in deep level and practice questions because in the interviews they want full working code and practice dry run as well.

Skills evaluated in this interview

Interview questions from similar companies

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
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
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
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
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company

Round 1 - Technical 

(1 Question)

  • Q1. They asked me about the frameworks and overall architecture in iOS, how to implement tables, create views and auto layout.

Interview Preparation Tips

Topics to prepare for Globant IOS Developer interview:
  • IOS
  • uikit
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
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
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. 1.Explain delegate and protocol 2.Explain Mvc 3.Explain arc
  • Ans. 

    Answers to questions related to IOS development concepts.

    • Delegate and protocol are used for communication between objects in IOS. Delegate is a design pattern that allows one object to send messages to another object when a specific event occurs. Protocol is a set of methods that a class can implement to provide a specific behavior.

    • MVC is a design pattern used in IOS development. It separates the application into three...

  • Answered by AI
  • Q2. Explain mvc design pattern
  • Ans. 

    MVC is a design pattern that separates an application into three interconnected components: Model, View, and Controller.

    • Model represents the data and business logic of the application

    • View is responsible for displaying the data to the user

    • Controller acts as an intermediary between the Model and View, handling user input and updating the Model and View accordingly

    • MVC promotes separation of concerns and modularity, making...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - All the best for interview. Be confident and tell your answers

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

Adobe Interview FAQs

How many rounds are there in Adobe IOS Application Developer interview?
Adobe interview process usually has 5 rounds. The most common rounds in the Adobe interview process are One-on-one Round, Technical and Resume Shortlist.
What are the top questions asked in Adobe IOS Application Developer interview?

Some of the top questions asked at the Adobe IOS Application Developer interview -

  1. first occurence of given number in sorted ar...read more
  2. design twitter feed & solid princip...read more
  3. top view of given binary t...read more

Tell us how to improve this page.

Adobe IOS Application Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
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
 • 529 Interviews
Zoho Interview Questions
4.3
 • 512 Interviews
SAP Interview Questions
4.2
 • 304 Interviews
Salesforce Interview Questions
4.0
 • 270 Interviews
24/7 Customer Interview Questions
3.5
 • 175 Interviews
View all
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
261 salaries
unlock blur

₹8.5 L/yr - ₹26.8 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