Upload Button Icon Add office photos

Adobe

Compare button icon Compare button icon Compare

Filter interviews by

Adobe Interview Questions, Process, and Tips

Updated 5 Mar 2025

Top Adobe Interview Questions and Answers

View all 364 questions

Adobe Interview Experiences

Popular Designations

234 interviews found

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

I applied via Referral and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Coding + DS/Algo + Problem Solving
Round 2 - One-on-one 

(1 Question)

  • Q1. LLD + Project Discussion

Computer Scientist 2 Interview Questions asked at other Companies

Q1. encode and decode string without using any delimiter
View answer (1)

HCL Healthcare

Rated 4.5 for Work-Life Balance by our employees on AmbitionBox

Success to our employee's well-being? A work-life balance that's simply unbeatable.

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

I applied via LinkedIn and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Scenario based questions
  • Q2. Previous project related que
  • Q3. Asset and workflow related que
Round 2 - Technical 

(2 Questions)

  • Q1. Asset or wf que
  • Q2. Sling resolver case scenario
  • Ans. 

    Sling resolver case scenario involves resolving resource paths in Apache Sling.

    • Understand how Sling resolves resource paths based on the request URL

    • Know how Sling uses ResourceResolver to map URLs to resources

    • Be familiar with Sling's resource resolution algorithm

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Basic info about myself and profile
  • Q2. Expectations about salary
  • Ans. 

    Salary expectations should be based on industry standards, experience, and qualifications.

    • Research industry standards for the position

    • Consider your level of experience and qualifications

    • Be prepared to negotiate based on the job responsibilities and benefits offered

  • Answered by AI

Technical Consultant Interview Questions asked at other Companies

Q1. Oops C and java difference Query for selecting all columns from a table 10 uses of a pen Personal questions like the place we belong to What do you know about our company The interview was not really good ,I got selected 😅 for role of tech... read more
View answer (1)
Adobe Interview Questions and Answers for Freshers
illustration image
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Coding question based on stacks
  • Q2. Java and Spring Boot questions..too much grilling

Top Adobe Software Engineer Interview Questions and Answers

Q1. given sudoku as id array of size . in a given empty cell find the possible numbers that could be possible. Asked me to write code for it
View answer (1)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (196)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
No response
Round 1 - Technical 

(2 Questions)

  • Q1. Describe layers of OSI model
  • Ans. 

    The OSI model is a conceptual framework that standardizes the functions of a telecommunication or computing system into seven different layers.

    • Physical Layer: Deals with physical connections and transmission of raw data over a physical medium (e.g. cables, switches)

    • Data Link Layer: Responsible for node-to-node communication, error detection, and framing (e.g. Ethernet switches)

    • Network Layer: Manages routing of data pac...

  • Answered by AI
  • Q2. What is cookies? and how to implement OAuth
  • Ans. 

    Cookies are small pieces of data stored on a user's device by a website, used for tracking and authentication. OAuth is a protocol for authorization.

    • Cookies are used to store user information on the client side, such as login credentials or preferences

    • OAuth is implemented by registering an application with the OAuth provider, obtaining client credentials, and redirecting users to the provider for authentication

    • After au...

  • Answered by AI

Skills evaluated in this interview

Cyberark Security Analyst Interview Questions asked at other Companies

Q1. Biggest challenge during upgradation & migration
View answer (2)

Adobe interview questions for popular designations

 Software Developer

 (19)

 Product Intern

 (10)

 Computer Scientist

 (8)

 Member Technical Staff

 (6)

 Software Engineer

 (6)

 Software Developer Intern

 (6)

 Computer Scientist 2

 (6)

 Product Manager

 (5)

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

Coding questions were easy and aptitude questions were a bit hard

Round 2 - Technical 

(2 Questions)

  • Q1. Binary search based on 2 eggs
  • Q2. Two candles which were of random size, and what is the time to burn one candle completely
  • Ans. 

    The time to burn one candle completely depends on the size of the candles and the rate at which they burn.

    • The time to burn one candle completely is directly proportional to the size of the candle.

    • The rate at which a candle burns can vary based on factors like the material of the candle, the wick, and the environment.

    • For example, a larger candle may take longer to burn completely compared to a smaller candle, even if th

  • Answered by AI

Skills evaluated in this interview

Software Engineer Intern Interview Questions asked at other Companies

Q1. Check if Two Trees are Mirror Given two arbitrary binary trees, your task is to determine whether these two trees are mirrors of each other. Explanation: Two trees are considered mirror of each other if: The roots of both the trees are the... read more
View answer (1)

Get interview-ready with Top Adobe Interview Questions

Software Developer Interview Questions & Answers

user image swetha shanmugam

posted on 11 Jun 2024

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

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

Round 1 - Coding Test 

Leet code questions. Basic Questions was easy

Round 2 - One-on-one 

(2 Questions)

  • Q1. Give an array of integers arr1, find a new array where array[i] = multiplication of all entries arr1 except arr1[i] without using division operator
  • Ans. 

    To find a new array where each element is the product of all elements in the original array except the element at that index without using division operator.

    • Iterate through the array and calculate the product of all elements to the left of the current index for each element.

    • Iterate through the array in reverse and calculate the product of all elements to the right of the current index for each element.

    • Multiply the resu...

  • Answered by AI
  • Q2. Given a wholly sorted two dimensional array , find the index of given element or return -1 if not present
  • Ans. 

    Search for an element in a sorted 2D array and return its index if found

    • Start from the top right corner and compare the target element with the current element

    • If the target is smaller, move left; if larger, move down

    • Repeat until the element is found or all elements are checked

  • Answered by AI

Skills evaluated in this interview

Top Adobe Software Developer Interview Questions and Answers

Q1. Delete the Middle Node from a Singly Linked List Given a singly linked list of integers, the task is to remove the middle node from this list. Input: The first line of input includes an integer 'T' which denotes the number of test cases. Ea... read more
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)

Jobs at Adobe

View all
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Case Study 

Review with a demanding customer
customer dashboard Red, Amber, Green and how to deal with the same both for SMB and enterprise customers

Interview Preparation Tips

Interview preparation tips for other job seekers - go prepared with case studies, and with real time customer examples of dealing with customer escalations
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Basic maths , physics and core subjects and e.t.c

Round 2 - Coding Test 

Basic coding array, strings , linked list , stack , queue

Top Adobe Software Developer Interview Questions and Answers

Q1. Delete the Middle Node from a Singly Linked List Given a singly linked list of integers, the task is to remove the middle node from this list. Input: The first line of input includes an integer 'T' which denotes the number of test cases. Ea... read more
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)
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 Jul 2024. There was 1 interview round.

Round 1 - Coding Test 

Find the max followers, delete a node in DLL, find distance bw 2 nodes of a BT

Interview Preparation Tips

Topics to prepare for Adobe Computer Scientist 2 interview:
  • DSA
Interview preparation tips for other job seekers - They looked for accurate code and syntax.

Computer Scientist 2 Interview Questions asked at other Companies

Q1. encode and decode string without using any delimiter
View answer (1)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Online coding test on dsa and algo

Round 2 - Technical 

(2 Questions)

  • Q1. Tree based ques
  • Q2. Subarray Based ques
Round 3 - One-on-one 

(2 Questions)

  • Q1. Behavioral ques
  • Q2. Past project discussion

Computer Scientist 2 Interview Questions asked at other Companies

Q1. encode and decode string without using any delimiter
View answer (1)
Contribute & help others!
anonymous
You can choose to be anonymous

Adobe Interview FAQs

How many rounds are there in Adobe interview?
Adobe interview process usually has 2-3 rounds. The most common rounds in the Adobe interview process are One-on-one Round, Technical and Coding Test.
How to prepare for Adobe 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 Adobe. The most common topics and skills that interviewers at Adobe expect are Adobe, Javascript, Python, HTML and Product Management.
What are the top questions asked in Adobe interview?

Some of the top questions asked at the Adobe interview -

  1. There are N cities spread in the form of circle. There is road connectivity b/w...read more
  2. Write a client server simple code. How will you handle multiple requests? Will ...read more
  3. Suppose there is an unsorted array. What will be the maximum window size, such ...read more
How long is the Adobe interview process?

The duration of Adobe interview process can vary, but typically it takes about less than 2 weeks to complete.

Recently Viewed

PHOTOS

InsuranceDekho

3 office photos

LIST OF COMPANIES

Credit Bajaar

Overview

COMPANY BENEFITS

Mahindra Finance

No Benefits

COMPANY BENEFITS

Mahindra Finance

No Benefits

SALARIES

Apollo Hospitals

No Salaries

SALARIES

Apollo Hospitals

No Salaries

SALARIES

Apollo Hospitals

SALARIES

Apollo Hospitals

COMPANY BENEFITS

Shapoorji Pallonji Group

No Benefits

JOBS

Shapoorji Pallonji Group

No Jobs

Tell us how to improve this page.

Adobe Interview Process

based on 156 interviews

Interview experience

4.1
  
Good
View more

Sun Pharmaceutical Industries

Join us and thrive in a company culture that inspires and empowers.

Explore Interview Questions and Answers for Top Skills at Adobe

Interview Questions from Similar Companies

IBM Interview Questions
4.0
 • 2.3k Interviews
Oracle Interview Questions
3.7
 • 846 Interviews
SAP Interview Questions
4.2
 • 283 Interviews
Salesforce Interview Questions
4.0
 • 221 Interviews
VMware Software Interview Questions
4.4
 • 145 Interviews
ServiceNow Interview Questions
4.1
 • 120 Interviews
Intuit Interview Questions
3.5
 • 77 Interviews
Autodesk Interview Questions
4.2
 • 38 Interviews
Gen Interview Questions
4.0
 • 17 Interviews
View all

Adobe Reviews and Ratings

based on 1.1k reviews

3.9/5

Rating in categories

3.7

Skill development

3.9

Work-life balance

3.8

Salary

3.8

Job security

3.9

Company culture

3.2

Promotions

3.5

Work satisfaction

Explore 1.1k Reviews and Ratings
Member of Technical Staff 2

Noida

2-5 Yrs

₹ 14-41 LPA

Software Development Engineer

Bangalore / Bengaluru

5-8 Yrs

Not Disclosed

Executive Assistant

Bangalore / Bengaluru

8-10 Yrs

Not Disclosed

Explore more jobs
Computer Scientist
441 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Consultant
278 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
254 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Computer Scientist 2
231 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Technical Consultant
204 salaries
unlock blur

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