AmbitionBox

AmbitionBox

Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
  • Home
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Awards 2024
  • Campus Placements
  • Practice Test
  • Compare Companies
+ Contribute
notification
notification
Login
  • Home
  • Communities
  • Companies
    • Companies

      Discover best places to work

    • Compare Companies

      Compare & find best workplace

    • Add Office Photos

      Bring your workplace to life

    • Add Company Benefits

      Highlight your company's perks

  • Reviews
    • Company reviews

      Read reviews for 6L+ companies

    • Write a review

      Rate your former or current company

  • Salaries
    • Browse salaries

      Discover salaries for 6L+ companies

    • Salary calculator

      Calculate your take home salary

    • Are you paid fairly?

      Check your market value

    • Share your salary

      Help other jobseekers

    • Gratuity calculator

      Check your gratuity amount

    • HRA calculator

      Check how much of your HRA is tax-free

    • Salary hike calculator

      Check your salary hike

  • Interviews
    • Company interviews

      Read interviews for 40K+ companies

    • Share interview questions

      Contribute your interview questions

  • Jobs
  • Awards
    pink star
    VIEW WINNERS
    • ABECA 2025
      VIEW WINNERS

      AmbitionBox Employee Choice Awards - 4th Edition

    • ABECA 2024

      AmbitionBox Employee Choice Awards - 3rd Edition

    • AmbitionBox Best Places to Work 2022

      2nd Edition

    Participate in ABECA 2026 right icon dark
For Employers
Upload Button Icon Add office photos
logo
Employer? Claim Account for FREE

Adobe

Compare button icon Compare button icon Compare
3.9

based on 1.2k Reviews

Play video Play video Video summary
  • About
  • Reviews
    1.2k
  • Salaries
    10.9k
  • Interviews
    248
  • Jobs
    191
  • Benefits
    191
  • Photos
    3
  • Posts
    2

Filter interviews by

Adobe Interview Questions and Answers

Updated 10 Jul 2025
Popular Designations

339 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 4mo 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

What people are saying about Adobe

View All
optimistickulfi
Verified Icon
1w (edited)
ex -
V2Solutions
Day 9 to being laid off from work
I was on a contract role since last 3 months for a technical image Moderation project whose client was Adobe and worked from office in Vashi, Navi Mumbai I was low key hoping that my contract will converted to full-time position but on the 23rd of June while I was doing night shift at work, was told to leave early and meet HR next morning where I was finally told that the client didn't want to continue my career with them And from then on, I've been at home relentlessly applying for roles but nothing works so great So stressed out don't know what to do as I see only a dark road ahead with zero hope
Got a question about Adobe?
Ask anonymously on communities.
A Senior Financial Analyst was asked 4mo 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 Service Support Manager was asked 4mo ago
Q. 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

View all Service Support Manager interview questions
Are these interview questions helpful?
A Product Intern was asked 6mo 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
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
1 2 3 4 5 6 7

Adobe Interview Experiences

248 interviews found

Associate Executive Interview Questions & Answers

user image naveed khan

posted on 18 Feb 2025

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
  • Add your answer
  • 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
    Add your answer
Round 4 - Technical 

(1 Question)

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

(1 Question)

  • Q1. One On One With the Hiring Manager
  • Add your answer
Anonymous

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
  • Add your answer
  • Q2. Simple Python questions with a follow-up to optimise it
  • Add your answer
  • Q3. Bash script-based questions, are pretty basic.
  • Add your answer
  • 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
    Add your answer
Round 3 - One-on-one 

(3 Questions)

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

(3 Questions)

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

Skills evaluated in this interview

Anonymous

Service Support Manager Interview Questions & Answers

user image Anonymous

posted on 25 Feb 2025

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
    Add your answer
  • 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
    Add your answer
Anonymous

Product Intern Interview Questions & Answers

user image Anonymous

posted on 10 Jan 2025

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.
  • Add your answer
  • 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
    Add your answer
Anonymous

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
    Add your answer
  • Q2. Questions based on Data Structures that can be used to store specific information
  • Add your answer
Round 2 - One-on-one 

(2 Questions)

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

Skills evaluated in this interview

Anonymous

Senior Project Manager Interview Questions & Answers

user image Anonymous

posted on 2 Sep 2024

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.
  • Add your answer
  • Q2. People management again scenario based questions
  • Add your answer
Round 2 - One-on-one 

(2 Questions)

  • Q1. Cleint and stakeholder management
  • Add your answer
  • Q2. Agile and project management processes.
  • Add your answer
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
    Add your answer
  • Q2. Client management and retaining the client.
  • Add your answer
Anonymous

Senior Financial Analyst Interview Questions & Answers

user image Anonymous

posted on 5 Mar 2025

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
    Add your answer
  • 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
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare thoroughly on Adobe's financials as well as the provided job description.
Anonymous

Software Developer Interview Questions & Answers

user image Anonymous

posted on 1 Oct 2024

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
  • Add your answer
  • Q2. Dsa problem medium level
  • Add your answer
Anonymous

Computer Scientist 2 Interview Questions & Answers

user image Anonymous

posted on 5 Sep 2024

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
    Add your answer
  • 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
    Add your answer

Interview Preparation Tips

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

Skills evaluated in this interview

Anonymous

Software Developer Interview Questions & Answers

user image Anonymous

posted on 17 May 2025

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
    Add your answer
  • 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
    Add your answer
  • 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
    Add your answer
Anonymous
More about working at Adobe
  • HQ - San Jose,California, United States
  • Software Product
  • 5k-10k Employees (India)
  • Public
  • Internet
  • IT Services & Consulting

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.

Adobe Interviews By Designations

  • Adobe Software Developer Interview Questions
  • Adobe Product Intern Interview Questions
  • Adobe Computer Scientist Interview Questions
  • Adobe Member Technical Staff Interview Questions
  • Adobe Software Engineer Interview Questions
  • Adobe Software Developer Intern Interview Questions
  • Adobe Computer Scientist 2 Interview Questions
  • Adobe Product Manager Interview Questions
  • Show more
  • Adobe Technical Consultant Interview Questions
  • Adobe Senior Technical Consultant Interview Questions

Interview Questions for Popular Designations

  • Software Developer Interview Questions
  • Product Intern Interview Questions
  • Computer Scientist Interview Questions
  • Software Engineer Interview Questions
  • Computer Scientist 2 Interview Questions
  • Member Technical Staff Interview Questions
  • Software Developer Intern Interview Questions
  • Product Manager Interview Questions
  • Show more
  • Technical Consultant Interview Questions
  • Senior Technical Consultant Interview Questions

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 64%
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

Algorithms Interview Questions & Answers
250 Questions
Data Structures Interview Questions & Answers
250 Questions
Operating Systems Interview Questions & Answers
250 Questions

Interview Questions from Similar Companies

Oracle
Oracle Interview Questions
3.7
 • 894 Interviews
Microsoft Corporation
Microsoft Corporation Interview Questions
3.9
 • 576 Interviews
Zoho
Zoho Interview Questions
4.3
 • 537 Interviews
Amdocs
Amdocs Interview Questions
3.7
 • 532 Interviews
SAP
SAP Interview Questions
4.2
 • 291 Interviews
Automatic Data Processing (ADP)
Automatic Data Processing (ADP) Interview Questions
4.0
 • 258 Interviews
Salesforce
Salesforce Interview Questions
4.0
 • 234 Interviews
24/7 Customer
24/7 Customer Interview Questions
3.5
 • 179 Interviews
Dassault Systemes
Dassault Systemes Interview Questions
3.9
 • 177 Interviews
OpenText Technologies
OpenText Technologies Interview Questions
3.6
 • 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.7

Job security

3.9

Company culture

3.1

Promotions

3.6

Work satisfaction

Explore 1.2k Reviews and Ratings
Jobs at Adobe
Adobe
MTS2

Noida

2-7 Yrs

Not Disclosed

Adobe
Computer Scientist - II

Bangalore / Bengaluru

7-12 Yrs

₹ 26.5-65 LPA

Adobe
Member of Technical Staff - II

Bangalore / Bengaluru

3-8 Yrs

Not Disclosed

Explore more jobs
Adobe Salaries in India
Computer Scientist
493 salaries
unlock blur

₹35 L/yr - ₹60.5 L/yr

Technical Consultant
316 salaries
unlock blur

₹12.8 L/yr - ₹24 L/yr

Computer Scientist 2
298 salaries
unlock blur

₹47.7 L/yr - ₹80 L/yr

Software Engineer
283 salaries
unlock blur

₹13.4 L/yr - ₹25 L/yr

Senior Software Engineer
244 salaries
unlock blur

₹22.9 L/yr - ₹42.8 L/yr

Explore more salaries
Compare Adobe with
Salesforce

Salesforce

4.0
Compare
Oracle

Oracle

3.7
Compare
Microsoft Corporation

Microsoft Corporation

3.9
Compare
Amazon

Amazon

4.0
Compare
Popular Calculators
Are you paid fairly?
Monthly In-hand Salary Calculator
Gratuity Calculator
HRA Calculator
Salary Hike Calculator
  • Home >
  • Interviews >
  • Adobe Interview Questions
write
Share an Interview
Stay ahead in your career. Get AmbitionBox app
Awards Banner

Trusted by over 1.5 Crore job seekers to find their right fit company

80 Lakh+

Reviews

4 Crore+

Salaries

10 Lakh+

Interviews

1.5 Crore+

Users

Contribute
Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
Users/Jobseekers
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Practice Test
  • Compare Companies
Employers
  • Create a new company
  • Update company information
  • Respond to reviews
  • Invite employees to review
  • AmbitionBox Offering for Employers
  • AmbitionBox Employers Brochure
AmbitionBox Awards
  • ABECA 2025 winners awaited tag
  • Participate in ABECA 2026
  • Invite employees to rate
AmbitionBox
  • About Us
  • Our Team
  • Email Us
  • Blog
  • FAQ
  • Credits
  • Give Feedback
Terms & Policies
  • Privacy
  • Grievances
  • Terms of Use
  • Summons/Notices
  • Community Guidelines
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2025 Info Edge (India) Ltd.

Follow Us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter