Upload Button Icon Add office photos

Filter interviews by

Adobe Software Engineer II Interview Questions and Answers

Updated 9 May 2021

Adobe Software Engineer II Interview Experiences

1 interview found

I applied via Recruitment Consultant and was interviewed before May 2020. There were 5 interview rounds.

Interview Questionnaire 

7 Questions

  • Q1. Basic data structures.
  • Q2. Array , Linked list, Java
  • Q3. MCQ
  • Q4. Java
  • Q5. Analytical
  • Q6. Data Structure and Problem solving
  • Q7. Managerial

Interview Preparation Tips

Interview preparation tips for other job seekers - Be true with you resume.
Don't add any skill which you are not aware of.

Interview questions from similar companies

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 

(4 Questions)

  • Q1. Depends on the role they hire, technical round will be there
  • Q2. Java Concepts and At least one program they will ask to write
  • Q3. Manual and automation related questions
  • Q4. SQL concepts questions
Round 3 - Behavioral 

(1 Question)

  • Q1. Manager will check capability and will ask managerial questions
Round 4 - HR 

(1 Question)

  • Q1. Some HR questions and Package discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare according to the role applied and attend the interview
Round 1 - Aptitude Test 

It was easy

Round 2 - Technical 

(2 Questions)

  • Q1. Nice question based on core java
  • Q2. Opps, new keyword, immutable class, exception
Round 3 - HR 

(3 Questions)

  • Q1. What is your family background?
  • Q2. Share details of your previous job.
  • Q3. Why should we hire you?
Round 4 - HR 

(2 Questions)

  • Q1. What are your strengths and weaknesses?
  • Q2. Strengths and weaknesses

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice work, nice one to one, nice to know about company is good
Round 1 - Coding Test 

Dynamic programming questions were asked
1) convert stack to queue
2) replace special characters in a string

Round 2 - Technical 

(1 Question)

  • Q1. Dynamic programming - two questions were asked

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn more of DS & Algo
Do leet code
Practise linked list, trees, graphs and Dynamic programming
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at National Institute of Technology (NIT), Raipur and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Coding Test 

The coding test consists of multiple-choice questions and one medium-hard level coding question.

Round 2 - Technical 

(5 Questions)

  • Q1. Given three jugs with different capacities and no measuring tools, how can you measure out a specific amount of water using the jugs you have?
  • Q2. What is the angle between the minute and hour hand of a clock at 3:45?
  • Q3. What is indexing in Database Management Systems (DBMS)?
  • Q4. What is the lifecycle of a React component?
  • Q5. How you delete entry in mongodb database
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Dayananda Sagar College of Engineering, Bangalore and was interviewed in Oct 2024. There were 4 interview rounds.

Round 1 - Coding Test 

3 coding dsa question
Difficulty is On your luck
My friends got easy level
I got medium level
Some got hard questions as well

Round 2 - Aptitude Test 

Ssh round , quant and logical
Tip: bring your calculator

Round 3 - Technical 

(3 Questions)

  • Q1. Two Puzzle : bulb switching and candle
  • Q2. Dsa questions such as string reverse, binary search
  • Q3. Dbms and os core subject questions
Round 4 - HR 

(2 Questions)

  • Q1. How are you better than others
  • Q2. Why should we hire you

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are a girl, the interview rounds will be much easier for you as this company promotes diversity hiring.
The main differing factor is technical round interview which totally depends on the interviewer's mood .
Girls do get priority in this round, they are asked easier questions and will be selected if able to answer 60-70% of the questions.
Note:- it's not like they will hire any girl but a bit easier comparatively
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Jan 2024. There were 4 interview rounds.

Round 1 - Coding Test 

Easy test, oops, logic.

Round 2 - Technical 

(2 Questions)

  • Q1. Java oops, static members
  • Q2. Polymorphism, overloading, inheritance in depth.
Round 3 - One-on-one 

(2 Questions)

  • Q1. Puzzles, geometry
  • Q2. Bachelors project, masters project
Round 4 - One-on-one 

(2 Questions)

  • Q1. More puzzles
  • Q2. Behavorial
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Explain microservices.
  • Q2. OOPS

Interview Preparation Tips

Interview preparation tips for other job seekers - This was a contract-based position, so just 1 round of interviews was conducted.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
-

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

Round 1 - Technical 

(5 Questions)

  • Q1. Explain OOPS concept and how you apply it in your implementation
  • Ans. 

    OOPS is a programming paradigm based on the concept of objects, which can contain data in the form of fields and code in the form of procedures.

    • OOPS focuses on the concept of classes and objects

    • Encapsulation: bundling data and methods that operate on the data within a single unit

    • Inheritance: allows a class to inherit properties and behavior from another class

    • Polymorphism: ability to present the same interface for diffe...

  • Answered by AI
  • Q2. Difference between Comparable and Comparator. Difference between Abstract Class and Interface
  • Ans. 

    Comparable is an interface used for natural ordering, Comparator is an interface used for custom ordering. Abstract class can have method implementations, Interface cannot.

    • Comparable interface is used to define the natural ordering of objects. Example: String class implements Comparable interface for natural ordering based on alphabetical order.

    • Comparator interface is used to define custom ordering of objects. Example:...

  • Answered by AI
  • Q3. Given a string. Find the number of occurrences of each character
  • Ans. 

    Count occurrences of each character in a given string

    • Create an array to store the count of each character

    • Iterate through the string and increment the count of each character in the array

    • Return the array with counts for each character

  • Answered by AI
  • Q4. Given an array. Remove the number of duplicates
  • Ans. 

    Remove duplicates from an array of strings

    • Iterate through the array and store each element in a set to keep track of unique values

    • Create a new array with the unique values from the set

  • Answered by AI
  • Q5. Given a student object having name and grade data variables. Sort the object on the basis of highest grade.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Basic java fundamentals
  • Q2. Spring boot,sql
Round 2 - Technical 

(2 Questions)

  • Q1. Some technical questions from manager
  • Q2. Some challenges or scenario based questions
Round 3 - HR 

(2 Questions)

  • Q1. Salary discussion mostly
  • Q2. Benifts that they offer with TR

Adobe Interview FAQs

What are the top questions asked in Adobe Software Engineer II interview?

Some of the top questions asked at the Adobe Software Engineer II interview -

  1. Data Structure and Problem solv...read more
  2. Basic data structur...read more
  3. Array , Linked list, J...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Adobe interview
Recruitment Consultant
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

IBM Interview Questions
4.1
 • 2.4k Interviews
Oracle Interview Questions
3.7
 • 883 Interviews
Amdocs Interview Questions
3.8
 • 523 Interviews
Zoho Interview Questions
4.3
 • 502 Interviews
SAP Interview Questions
4.2
 • 302 Interviews
Salesforce Interview Questions
4.1
 • 265 Interviews
24/7 Customer Interview Questions
3.5
 • 174 Interviews
View all
Adobe Software Engineer II Salary
based on 35 salaries
₹6.5 L/yr - ₹23.5 L/yr
20% less than the average Software Engineer II Salary in India
View more details

Adobe Software Engineer II Reviews and Ratings

based on 6 reviews

3.9/5

Rating in categories

3.2

Skill development

2.9

Work-Life balance

3.6

Salary & Benefits

4.5

Job Security

4.0

Company culture

3.3

Promotions/Appraisal

2.8

Work Satisfaction

Explore 6 Reviews and Ratings
Computer Scientist
436 salaries
unlock blur

₹21.2 L/yr - ₹70.7 L/yr

Technical Consultant
289 salaries
unlock blur

₹11.5 L/yr - ₹27.5 L/yr

Software Engineer
256 salaries
unlock blur

₹7.5 L/yr - ₹25 L/yr

Computer Scientist 2
226 salaries
unlock blur

₹28 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.1
Compare

Oracle

3.7
Compare

Microsoft Corporation

4.1
Compare

Amazon

4.1
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview