Upload Button Icon Add office photos

Adobe

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Adobe Softwaretest Engineer Interview Questions and Answers

Updated 22 Aug 2024

Adobe Softwaretest Engineer Interview Experiences

1 interview found

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

I applied via Referral and was interviewed before Aug 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Written test on DSA - 3 questions on hackerrank

Round 2 - Coding Test 

F2F interview on DSA + automation

Interview questions from similar companies

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

I applied via Recruitment Consulltant and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Focus on coding, Question: find the duplicate string from list of string and the count of it(how many times it is repeated) Prepare oops and collections concepts.
  • Q2. Focus on method overriding
  • Q3. Difference between arraylist and LinkedInlist
  • Ans. 

    ArrayList is a resizable array implementation while LinkedList is a doubly linked list implementation.

    • ArrayList uses dynamic arrays to store elements, allowing fast random access but slower insertion and deletion.

    • LinkedList uses nodes with pointers to the next and previous elements, allowing fast insertion and deletion but slower random access.

    • Example: ArrayList - List names = new ArrayList<>(); LinkedList - List citie

  • Answered by AI
  • Q4. Use of static keyword
  • Ans. 

    The static keyword in programming is used to declare variables, methods, or classes that belong to the class itself rather than instances of the class.

    • Static variables are shared among all instances of a class.

    • Static methods can be called without creating an instance of the class.

    • Static classes cannot be instantiated and are used for grouping related methods and variables.

    • Example: public static int count = 0; // static

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. What is Regression Testing?
  • Ans. 

    Regression testing is the process of retesting a software application to ensure that new code changes have not adversely affected existing functionality.

    • Performed after code changes to ensure that existing features still work correctly

    • Helps in identifying and fixing any defects introduced by new code changes

    • Automated tools like Selenium can be used for regression testing

    • Examples: Testing a login feature after adding a

  • Answered by AI

Skills evaluated in this interview

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

DSA, puzzles, DBMS, OD, and networking

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 Resume tips
Round 2 - Technical 

(2 Questions)

  • Q1. Describe binary tree
  • Ans. 

    A binary tree is a hierarchical data structure in which each node has at most two children.

    • Consists of nodes connected by edges

    • Each node can have at most two children, referred to as left child and right child

    • The left child is smaller than the parent node, while the right child is greater

    • Used for efficient searching, sorting, and organizing data

  • Answered by AI
  • Q2. How to validate ip addres?
  • Ans. 

    To validate an IP address, check if it consists of four numbers separated by periods, each number being between 0 and 255.

    • Split the IP address string by periods to get an array of four numbers

    • Check if the array length is 4

    • Loop through each number in the array and check if it is between 0 and 255

    • If any number is outside the valid range, the IP address is invalid

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - learn about algorithm and data structure, you can choose interview programming language

Skills evaluated in this interview

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

(2 Questions)

  • Q1. What is Selenium?
  • Ans. 

    Selenium is a popular open-source tool used for automating web browsers.

    • Selenium supports multiple programming languages like Java, Python, and C#.

    • It can automate web browsers across different platforms like Windows, Mac, and Linux.

    • Selenium can be used for functional testing, regression testing, and browser compatibility testing.

    • It allows users to write test scripts in a variety of formats such as HTML, Java, C#, and P

  • Answered by AI
  • Q2. What is cucumber framework?
  • Ans. 

    Cucumber is a testing framework that supports Behavior Driven Development (BDD) by allowing tests to be written in plain text.

    • Cucumber uses Gherkin syntax to define test cases in a human-readable format

    • It allows collaboration between technical and non-technical team members

    • Cucumber tests are written in feature files with scenarios and steps

    • It integrates with various programming languages like Java, Ruby, etc.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare the basics, and your last company insights

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed before Jul 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Core JAVA in depth including Algorithms
Round 2 - Technical 

(1 Question)

  • Q1. Design patterns, Java basic in depth
Round 3 - HR 

(1 Question)

  • Q1. Why you want to Join
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jun 2023. There were 3 interview rounds.

Round 1 - Coding Test 

The test was conducted on Hackerrank platform. It had 2 sections. First section had 6 coding questions. Second section had 10 McQs that checked our CS fundamentals. Overall the difficulty level was moderate to hard level.

Round 2 - Technical 

(1 Question)

  • Q1. 1. Few questions on the projects like the purpose and tech stack. 2. Process concepts. 3. Segmentation and fragmentation. 4. Delete elements from linked list 5. Bit manipulation 6. little endian to big end...
Round 3 - HR 

(2 Questions)

  • Q1. Basic questions related to family and hobbies
  • Q2. Question from Resume based on skills and tools mentioned in it

Interview Preparation Tips

Topics to prepare for IBM Softwaretest Engineer interview:
  • Array
  • Linked list
  • OS
  • bit manipulation
Interview preparation tips for other job seekers - Be thorough in your fundamentals and confident enough while answering.

I applied via Recruitment Consulltant and was interviewed in Aug 2022. There were 2 interview rounds.

Round 1 - Group Discussion 

Self introduction
About the software companies how to development

Round 2 - HR 

(1 Question)

  • Q1. Explain the project details on college Why you intrest in this job

Interview Preparation Tips

Topics to prepare for IBM Softwaretest Engineer interview:
  • Social Media Marketing
  • Environment Management
Interview preparation tips for other job seekers - I am fresher and i don't know how to face that and it's my first interview so i advice to you and i hope you hiring me
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Explain your framework structure
  • Ans. 

    My framework structure is based on a modular approach with reusable components and clear separation of concerns.

    • Modular design with separate modules for different functionalities

    • Reusable components to avoid duplication of code

    • Clear separation of concerns for easy maintenance and scalability

  • Answered by AI
  • Q2. What are waits in selenium you use in your project
  • Ans. 

    Waits in Selenium are used to ensure that the automation script waits for a certain condition to be met before proceeding.

    • Implicit Wait: Waits for a certain amount of time before throwing a NoSuchElementException.

    • Explicit Wait: Waits for a certain condition to be met before proceeding.

    • Fluent Wait: Waits for a condition with a specified frequency of checking.

    • Thread.sleep(): Pauses the script execution for a specified am

  • Answered by AI

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

Adobe Interview FAQs

How many rounds are there in Adobe Softwaretest Engineer interview?
Adobe interview process usually has 2 rounds. The most common rounds in the Adobe interview process are Aptitude Test and Coding Test.

Recently Viewed

SALARIES

POSCO MAHARASHTRA STEEL

INTERVIEWS

ACC

No Interviews

SALARIES

POSCO MAHARASHTRA STEEL

INTERVIEWS

Tata Steel

No Interviews

INTERVIEWS

ACC

No Interviews

INTERVIEWS

JK Cement

No Interviews

DESIGNATION

SALARIES

JSW Bhushan Power & Steel

SALARIES

Vardhman Special Steels

SALARIES

ArcelorMittal

Tell us how to improve this page.

Adobe Softwaretest Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Adobe Softwaretest Engineer Salary
based on 38 salaries
₹3.8 L/yr - ₹14.2 L/yr
56% more than the average Softwaretest Engineer Salary in India
View more details

Adobe Softwaretest Engineer Reviews and Ratings

based on 2 reviews

3.2/5

Rating in categories

4.5

Skill development

3.2

Work-life balance

3.2

Salary

3.2

Job security

3.2

Company culture

2.1

Promotions

3.6

Work satisfaction

Explore 2 Reviews and Ratings
Computer Scientist
455 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Consultant
279 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
255 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Computer Scientist 2
245 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Technical Consultant
213 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