Upload Button Icon Add office photos

Adobe

Compare button icon Compare button icon Compare

Filter interviews by

Adobe Interview Questions and Answers

Updated 27 May 2025
Popular Designations

334 Interview questions

A Senior Computer Scientist was asked 2mo ago
Q. What are the steps involved in designing a configuration store?
Ans. 

Designing a configuration store involves defining requirements, selecting storage, ensuring security, and implementing access controls.

  • Define requirements: Identify what configurations need to be stored, e.g., application settings, user preferences.

  • Choose storage solution: Decide between databases (e.g., SQL, NoSQL) or file-based systems (e.g., JSON, XML).

  • Ensure security: Implement encryption for sensitive data an...

View all Senior Computer Scientist interview questions
A Senior Computer Scientist was asked 2mo ago
Q. What is the process to identify the largest number in a stream of bytes using a max heap data structure?
Ans. 

Use a max heap to efficiently track the largest number in a stream of bytes.

  • Initialize a max heap to store the bytes as they are received.

  • For each byte received, insert it into the max heap.

  • The largest number can be accessed in O(1) time from the root of the max heap.

  • To maintain the heap property, the insertion operation takes O(log n) time.

  • Example: If the stream is [3, 1, 4, 1, 5], the max heap will be structured...

View all Senior Computer Scientist interview questions
A Senior Software Engineer 2 was asked 3mo ago
Q. What is the behavior of a stack data structure?
Ans. 

A stack is a linear data structure that follows Last In First Out (LIFO) principle for adding and removing elements.

  • Elements are added and removed from the top of the stack.

  • Common operations include push (adding) and pop (removing).

  • Example: In a stack of plates, you can only add or remove the top plate.

  • Stacks are used in function call management in programming languages.

  • They are also used in undo mechanisms in app...

View all Senior Software Engineer 2 interview questions
A Senior Financial Analyst was asked 3mo ago
Q. What are the key variables to consider before building a forecasting model?
Ans. 

Key variables for forecasting models include historical data, market trends, seasonality, and external factors.

  • Historical Data: Analyze past performance to identify trends (e.g., sales data from previous years).

  • Market Trends: Consider industry growth rates and economic indicators (e.g., GDP growth, inflation rates).

  • Seasonality: Account for seasonal fluctuations in demand (e.g., holiday sales spikes).

  • External Facto...

View all Senior Financial Analyst interview questions
A Senior Financial Analyst was asked 3mo ago
Q. How do you approach budgeting and forecasting in a Software as a Service (SaaS) environment?
Ans. 

I utilize data-driven insights and strategic planning for effective budgeting and forecasting in a SaaS environment.

  • Understand key metrics: Focus on MRR (Monthly Recurring Revenue) and ARR (Annual Recurring Revenue) to gauge financial health.

  • Customer acquisition costs: Analyze CAC to ensure sustainable growth and profitability.

  • Churn rate analysis: Monitor and forecast churn to adjust budgets and strategies accordi...

View all Senior Financial Analyst interview questions
A Service Support Manager was asked 4mo ago
Q. How do you prioritize incidents when you receive multiple requests simultaneously?
Ans. 

I prioritize incidents based on impact, urgency, and SLA requirements.

  • Assess the impact of each incident on business operations

  • Determine the urgency of resolving each incident

  • Consider any SLA requirements for specific incidents

  • Use a ticketing system to track and prioritize incidents

  • Communicate with stakeholders to understand priorities

View all Service Support Manager interview questions
A Product Intern was asked 5mo ago
Q. Given a knapsack with a maximum weight capacity W and a set of items, each with a weight wi and a value vi, determine the maximum total value of items that can be placed in the knapsack. You can take multip...
Ans. 

Modified unbounded knapsack problem involves maximizing the value of items with unlimited quantities and weight constraints.

  • Consider items with values and weights, along with a weight constraint

  • Dynamic programming can be used to solve this problem efficiently

  • Examples: Given items with values [60, 100, 120] and weights [10, 20, 30], and a weight constraint of 50, maximize the value

View all Product Intern interview questions
Are these interview questions helpful?
A Computer Teacher was asked 7mo ago
Q. Explain the substring method in Java.
Ans. 

Java's substring method extracts a portion of a string based on specified indices.

  • The method signature is: String substring(int beginIndex, int endIndex).

  • Example: 'Hello'.substring(1, 4) returns 'ell'.

  • If only one parameter is provided, like 'Hello'.substring(2), it returns 'llo'.

  • Indices are zero-based, meaning the first character is at index 0.

  • If beginIndex is greater than endIndex, it throws StringIndexOutOfBound...

View all Computer Teacher interview questions
A Lead Software Engineer was asked 8mo ago
Q. Describe your process for debugging a bug.
Ans. 

Debugging a bug process involves identifying, isolating, and fixing issues in software code.

  • Identify the bug by reproducing the issue and analyzing error messages.

  • Isolate the bug by narrowing down the code where the issue occurs.

  • Fix the bug by making necessary code changes and testing the solution.

  • Verify the fix by retesting the software to ensure the bug is resolved.

View all Lead Software Engineer interview questions
A Lead Software Engineer was asked 8mo ago
Q. What features should be added to a pen to make it the best pen on the market?
Ans. 

The best pen in the market should have a comfortable grip, smooth writing experience, long-lasting ink, and a stylish design.

  • Comfortable grip for extended use

  • Smooth writing experience for effortless writing

  • Long-lasting ink to avoid frequent refills

  • Stylish design to appeal to customers

View all Lead Software Engineer interview questions

Adobe Interview Experiences

247 interviews found

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

I applied via Campus Placement and was interviewed before Sep 2022. There were 2 interview rounds.

Round 1 - Coding Test 

DSA SHOULD BE DONE DEEPLY AND

Round 2 - Technical 

(5 Questions)

  • Q1. WHAT IS OOPS WHY OOPS WHY NOT OOPS
  • Ans. 

    OOPS stands for Object-Oriented Programming. It is a programming paradigm that uses objects and classes for code organization and reusability.

    • OOPS allows for better code organization and reusability through the use of classes and objects.

    • Encapsulation, inheritance, and polymorphism are key principles of OOPS.

    • Examples of OOPS languages include Java, C++, and Python.

  • Answered by AI
  • Q2. WHAT IS DBMS WHY DBMS WHY NOT DBMS
  • Ans. 

    DBMS stands for Database Management System. It is used to manage and organize data efficiently. It provides data security, integrity, and easy access.

    • DBMS helps in organizing and managing data efficiently.

    • It ensures data security and integrity by providing access control and data encryption.

    • DBMS allows for easy retrieval and manipulation of data through query languages like SQL.

    • Examples of DBMS include MySQL, Oracle, a...

  • Answered by AI
  • Q3. WHAT IS AMBITION BOX WHY NOT THEY PROVODING CONTENT FOR FREE
  • Ans. 

    Ambition Box is a platform for employee reviews and insights, monetizing content to sustain operations and provide quality services.

    • Ambition Box aggregates employee reviews and company insights, helping job seekers make informed decisions.

    • The platform offers premium content and features, which require funding to maintain and improve.

    • By charging for certain content, Ambition Box can invest in better tools and resources ...

  • Answered by AI
  • Q4. WHAT IS DSA WHAT IS WEB DEVELOPMENT
  • Ans. 

    DSA stands for Data Structures and Algorithms. Web development is the process of creating websites and web applications.

    • DSA involves organizing and storing data efficiently for quick access and manipulation

    • Web development includes front-end (client-side) and back-end (server-side) development

    • Examples of DSA include arrays, linked lists, and sorting algorithms

    • Examples of web development technologies include HTML, CSS, J...

  • Answered by AI
  • Q5. WHAT IS SIEVE OF ERATOSTHENESE
  • Ans. 

    Sieve of Eratosthenes is an algorithm for finding all prime numbers up to a given limit.

    • Algorithm eliminates multiples of each prime number starting from 2

    • Remaining numbers are prime

    • Example: Finding prime numbers up to 30 - 2, 3, 5, 7, 11, 13, 17, 19, 23, 29

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Adobe Software Developer interview:
  • DSA
  • REACT
  • Web Technologies
Interview preparation tips for other job seekers - BE GOOD WITH HOW TO FOOL THIS COMMENT BOX AND NEVER FORET TO KEEP ELABPRATING UNTIL YOU FIND OUT THE AMAZING SECTION IN THE RIGHT MOST BOTTOM CORNER OF THE BOX IT HAS NOT COME YET SO I AM TYPING STILL

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Group Discussion 

Discussion on General Topics

Round 2 - Aptitude Test 

General Aptitude test

Round 3 - Technical 

(2 Questions)

  • Q1. Technical Questions on Windows and Mac
  • Q2. Troubleshooting Shooting on different scenarios
  • Ans. 

    Troubleshooting shooting on different scenarios involves identifying the root cause and implementing solutions.

    • Identify the specific issue or problem

    • Gather relevant information and data

    • Analyze possible causes

    • Implement solutions and test them

    • Document the troubleshooting process and outcome

  • Answered by AI
Round 4 - Technical 

(1 Question)

  • Q1. More Aggressive Questions on Troubleshooting
Round 5 - One-on-one 

(1 Question)

  • Q1. One On One With the Hiring Manager

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 26 Nov 2024

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
-

I applied via Company Website and was interviewed in Oct 2024. There were 4 interview rounds.

Round 1 - Coding Test 

Basic Python, SQL, and Bash questions

Round 2 - One-on-one 

(4 Questions)

  • Q1. SQL questions with operations that include changing from string to array. Tip: stick to RDBMS-specific dialects only (like Postgres), I used Spark SQL
  • Q2. Simple Python questions with a follow-up to optimise it
  • Q3. Bash script-based questions, are pretty basic.
  • Q4. Data pipeline design and best practices.
  • Ans. 

    Data pipeline design involves creating a system to efficiently collect, process, and analyze data.

    • Understand the data sources and requirements before designing the pipeline.

    • Use tools like Apache Kafka, Apache NiFi, or AWS Glue for data ingestion and processing.

    • Implement data validation and error handling mechanisms to ensure data quality.

    • Consider scalability and performance optimization while designing the pipeline.

    • Doc...

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

(3 Questions)

  • Q1. Easy to medium Leetcode-based question. With moderate difficulty.
  • Q2. Simple Python-based question with optimisation.
  • Q3. Design specific questions based on Data pipelines.
Round 4 - Behavioral 

(3 Questions)

  • Q1. SQL-based question with moderate difficulty.
  • Q2. Python-based questions, follow questions with some optimisations.
  • Q3. Bash-script based round.

Skills evaluated in this interview

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

I appeared for an interview in Jan 2025.

Round 1 - Group Discussion 

Social media impact on younger generations.

Round 2 - Group Discussion 

Social media usag in impacting businesses

Round 3 - One-on-one 

(2 Questions)

  • Q1. How do you prioritize incidents when you receive multiple requests simultaneously?
  • Ans. 

    I prioritize incidents based on impact, urgency, and SLA requirements.

    • Assess the impact of each incident on business operations

    • Determine the urgency of resolving each incident

    • Consider any SLA requirements for specific incidents

    • Use a ticketing system to track and prioritize incidents

    • Communicate with stakeholders to understand priorities

  • Answered by AI
  • Q2. What is your approach to conducting Root Cause Analysis (RCA) after a critical incident?
  • Ans. 

    I approach Root Cause Analysis by gathering data, identifying contributing factors, analyzing trends, and implementing preventive measures.

    • Gather all relevant data related to the incident

    • Identify contributing factors through interviews, documentation review, and analysis

    • Analyze trends to determine common themes or patterns

    • Implement preventive measures to address root causes and prevent future incidents

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

Patterns, quiz, game questions.

Round 2 - Technical 

(2 Questions)

  • Q1. Code Singleton. OS questions. Print the middle level of a binary tree.
  • Q2. Modified unbounded knapsack.
  • Ans. 

    Modified unbounded knapsack problem involves maximizing the value of items with unlimited quantities and weight constraints.

    • Consider items with values and weights, along with a weight constraint

    • Dynamic programming can be used to solve this problem efficiently

    • Examples: Given items with values [60, 100, 120] and weights [10, 20, 30], and a weight constraint of 50, maximize the value

  • Answered by AI

Interview Questions & Answers

user image Anonymous

posted on 6 Oct 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
No response

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. 3Sum (no. of triplets whose sum is <= target)
  • Ans. 

    Find number of triplets in array whose sum is less than or equal to target.

    • Sort the array in ascending order.

    • Use three pointers to iterate through the array and find triplets.

    • Update pointers based on sum of triplets and target value.

  • Answered by AI
  • Q2. Questions based on Data Structures that can be used to store specific information
Round 2 - One-on-one 

(2 Questions)

  • Q1. Question based on Binary Search
  • Q2. Frontend questions like what is WebTree, how can 2 children communicate efficiently, etc.

Skills evaluated in this interview

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

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Scenario based questions on project management.
  • Q2. People management again scenario based questions
Round 2 - One-on-one 

(2 Questions)

  • Q1. Cleint and stakeholder management
  • Q2. Agile and project management processes.
Round 3 - One-on-one 

(2 Questions)

  • Q1. PRoject management drilling on processes.
  • Ans. 

    Project management drilling on processes involves closely monitoring and improving project workflows.

    • Regularly review and analyze project processes to identify bottlenecks and inefficiencies

    • Implement process improvements based on data-driven insights

    • Ensure team members are following established processes and provide training as needed

  • Answered by AI
  • Q2. Client management and retaining the client.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Sep 2024.

Round 1 - One-on-one 

(2 Questions)

  • Q1. How do you approach budgeting and forecasting in a Software as a Service (SaaS) environment?
  • Ans. 

    I utilize data-driven insights and strategic planning for effective budgeting and forecasting in a SaaS environment.

    • Understand key metrics: Focus on MRR (Monthly Recurring Revenue) and ARR (Annual Recurring Revenue) to gauge financial health.

    • Customer acquisition costs: Analyze CAC to ensure sustainable growth and profitability.

    • Churn rate analysis: Monitor and forecast churn to adjust budgets and strategies accordingly.

    • ...

  • Answered by AI
  • Q2. What are the key variables to consider before building a forecasting model?
  • Ans. 

    Key variables for forecasting models include historical data, market trends, seasonality, and external factors.

    • Historical Data: Analyze past performance to identify trends (e.g., sales data from previous years).

    • Market Trends: Consider industry growth rates and economic indicators (e.g., GDP growth, inflation rates).

    • Seasonality: Account for seasonal fluctuations in demand (e.g., holiday sales spikes).

    • External Factors: E...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare thoroughly on Adobe's financials as well as the provided job description.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

2medium level questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. Project discussion for 30 mins
  • Q2. Dsa problem medium level
Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Right view of Binary Tree
  • Ans. 

    The right view of a binary tree shows the nodes that are visible when looking at the tree from the right side.

    • The right view of a binary tree can be obtained by performing a level order traversal and keeping track of the rightmost node at each level.

    • Nodes that are visible from the right side are the ones that are the rightmost at their level.

    • Example: For the binary tree [1, 2, 3, null, 5, null, 4], the right view would...

  • Answered by AI
  • Q2. Encode and decode string without using any delimiter
  • Ans. 

    Encode and decode a string without using any delimiter.

    • Use a unique character to represent the start and end of each string in the array.

    • Keep track of the length of each string to properly decode it.

    • Example: ['hello', 'world'] can be encoded as '#hello#world#' without using delimiters.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well with Tree traversals and Arrays(Strings).

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I appeared for an interview in Apr 2025, where I was asked the following questions.

  • Q1. Why you want to work in adobe
  • Ans. 

    I want to work at Adobe to contribute to innovative projects that empower creativity and enhance user experiences globally.

    • Adobe is a leader in creative software, and I admire its commitment to innovation, such as the development of Adobe Creative Cloud.

    • I am passionate about design and technology, and working at Adobe would allow me to combine these interests to create impactful solutions.

    • The collaborative culture at A...

  • Answered by AI
  • Q2. Why you want change or move?
  • Ans. 

    I seek new challenges and opportunities for growth that align with my career goals and personal development.

    • Desire for professional growth: I want to expand my skill set and take on more complex projects.

    • Cultural fit: I'm looking for a company culture that values innovation and collaboration, similar to my previous experience at XYZ Corp.

    • Career advancement: I'm eager to move into a role with more leadership responsibil...

  • Answered by AI
  • Q3. Why should we hire you
  • Ans. 

    I bring a unique blend of technical skills, problem-solving abilities, and a passion for software development that aligns with your team's goals.

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

    • Strong proficiency in multiple programming languages, including Python and Java, allowing me to adapt to your tech stack quickly.

    • Excellent teamwork and communicati...

  • Answered by AI

Top trending discussions

View All
Office Jokes
1w
an executive
CTC ≠ Confidence Transfer Credit
Ab toh aisa lagta hai, chillar jaise salary ke liye main kaju katli ban ke jaa rahi hoon. Samajh nahi aata, main zyada ready ho ke jaa rahi hoon ya ye mujhe kam pay kar rahe hain? #CorporateLife #OfficeJokes #UnderpaidButWellDressed
FeedCard Image
Got a question about Adobe?
Ask anonymously on communities.

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, Product Management and HTML.
What are the top questions asked in Adobe interview?

Some of the top questions asked at the Adobe interview -

  1. There is a clock at the bottom of the hill and a clock at the top of the hill. ...read more
  2. He then asked me a question that had been asked in Round 4, written test:Descri...read more
  3. There are N cities spread in the form of circle. There is road connectivity b/w...read more
What are the most common questions asked in Adobe HR round?

The most common HR questions asked in Adobe interview are -

  1. What are your salary expectatio...read more
  2. Share details of your previous j...read more
  3. Why are you looking for a chan...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.

Tell us how to improve this page.

Overall Interview Experience Rating

4.2/5

based on 168 interview experiences

Difficulty level

Easy 13%
Moderate 75%
Hard 12%

Duration

Less than 2 weeks 65%
2-4 weeks 26%
4-6 weeks 5%
6-8 weeks 1%
More than 8 weeks 3%
View more

Explore Interview Questions and Answers for Top Skills at Adobe

Interview Questions from Similar Companies

Oracle Interview Questions
3.7
 • 892 Interviews
Zoho Interview Questions
4.3
 • 533 Interviews
Amdocs Interview Questions
3.7
 • 529 Interviews
SAP Interview Questions
4.2
 • 291 Interviews
Salesforce Interview Questions
4.0
 • 233 Interviews
24/7 Customer Interview Questions
3.5
 • 179 Interviews
Dassault Systemes Interview Questions
3.9
 • 176 Interviews
View all

Adobe Reviews and Ratings

based on 1.2k reviews

3.9/5

Rating in categories

3.7

Skill development

3.9

Work-life balance

3.8

Salary

3.8

Job security

4.0

Company culture

3.2

Promotions

3.6

Work satisfaction

Explore 1.2k Reviews and Ratings
Computer Scientist-II

Noida

6-12 Yrs

₹ 20-60 LPA

Member of Technical Staff II (C++)

Noida

2-4 Yrs

₹ 14-35 LPA

Computer Scientist-II (C++)

Noida

6-12 Yrs

₹ 20-60 LPA

Explore more jobs
Computer Scientist
490 salaries
unlock blur

₹22.7 L/yr - ₹70 L/yr

Technical Consultant
311 salaries
unlock blur

₹7.5 L/yr - ₹28.5 L/yr

Computer Scientist 2
293 salaries
unlock blur

₹28 L/yr - ₹102 L/yr

Software Engineer
277 salaries
unlock blur

₹8.1 L/yr - ₹30 L/yr

Senior Software Engineer
248 salaries
unlock blur

₹12 L/yr - ₹44.1 L/yr

Explore more salaries
Compare Adobe with

Salesforce

4.0
Compare

Oracle

3.7
Compare

Microsoft Corporation

3.9
Compare

Amazon

4.0
Compare
write
Share an Interview