Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Pegasystems Team. If you also belong to the team, you can get access from here

Pegasystems Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Pegasystems Senior QA Engineer Interview Questions and Answers

Updated 21 Jan 2025

Interview questions from similar companies

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

It was some sorting question - 1 Hour JAVA

Round 2 - Technical 

(2 Questions)

  • Q1. Some selenium and java based question
  • Q2. How would kill the child process
  • Ans. 

    Use the kill command with the child process ID to terminate it

    • Find the child process ID using tools like ps or pgrep

    • Use the kill command with the appropriate signal (e.g. SIGTERM, SIGKILL) and the child process ID

    • Example: kill -9

Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Given a String contains only 0s, 1s and 2s, count the number of sub strings that have equal number of 0s, 1s, and 2s. Input : str = "0102010" output : 2. Very Hard question is being asked in interview for...
  • Ans. 

    Count the number of substrings with equal number of 0s, 1s, and 2s in a given string.

    • Iterate through the string and maintain counts of 0s, 1s, and 2s encountered so far.

    • Keep track of the counts in a hashmap and increment the count of substrings whenever counts of 0s, 1s, and 2s are equal.

    • Return the total count of substrings at the end.

  • Answered by AI
  • Q2. Group of anagrams together. input : ["eat", "tea", "tan", "ate", "nat", "bat"] output : [["eat" ,"tea", "ate"],["tan", "nat"],["bat"]] This is another hard level question is asked in interview for the QA p...
  • Ans. 

    Group anagrams together in an array of strings.

    • Create a hashmap to store sorted strings as keys and corresponding anagrams as values.

    • Iterate through the input array, sort each string, and add it to the hashmap.

    • Return the values of the hashmap as the grouped anagrams.

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Java related qs
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Technical 

(4 Questions)

  • Q1. Questions on whole QA Testing, Windows
  • Q2. Types of testing
  • Ans. 

    Types of testing include functional testing, non-functional testing, manual testing, automated testing, regression testing, and performance testing.

    • Functional testing: Testing the functionality of the software against the requirements.

    • Non-functional testing: Testing aspects like performance, usability, and security.

    • Manual testing: Testing performed manually by QA engineers.

    • Automated testing: Testing performed using aut...

  • Answered by AI
  • Q3. How to test a particular scenario
  • Ans. 

    To test a particular scenario, create test cases covering all possible inputs and expected outcomes.

    • Identify the specific scenario to be tested

    • Create test cases for different inputs and expected outcomes

    • Execute the test cases and analyze the results

    • Perform regression testing to ensure no new issues are introduced

  • Answered by AI
  • Q4. Bugs validation
Round 2 - Coding Test 

Simple coding on python

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. What is oops ?
  • Ans. 

    Object-oriented programming paradigm that focuses on objects and classes for code organization and reusability.

    • Encapsulation: bundling data and methods that operate on the data into a single unit (object)

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

    • Polymorphism: ability to present the same interface for different data types

    • Abstraction: hiding the complex implementation details an

  • Answered by AI
  • Q2. Method overloading and overriding
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is the STLC, bug severity priority, waits in selenium with syntax, Java oops question with example,
  • Ans. 

    STLC, bug severity priority, waits in Selenium, Java OOPs

    • STLC stands for Software Testing Life Cycle and includes phases like requirement analysis, test planning, test design, test execution, and test closure

    • Bug severity is the impact of a bug on the system, while bug priority is the order in which bugs should be fixed

    • Waits in Selenium are used to make the test script wait for a certain condition to be met before proce...

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. Programs on java agile process selenium webdriver methods and architecture
Round 2 - Technical 

(1 Question)

  • Q1. Scenario based questions
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
-

I was interviewed in Oct 2023.

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 

(3 Questions)

  • Q1. What is tdd in it
  • Ans. 

    TDD stands for Test-Driven Development, a software development process where tests are written before the code.

    • Tests are written before the actual code implementation

    • Code is then written to pass the tests

    • Helps in ensuring code quality and functionality

    • Promotes writing modular and testable code

  • Answered by AI
  • Q2. What is class inheritance
  • Ans. 

    Class inheritance is a concept in object-oriented programming where a class inherits attributes and methods from another class.

    • Allows a class to inherit properties and behaviors from another class

    • Promotes code reusability and reduces redundancy

    • Derived class can add new features or override existing ones

    • Example: Class 'Car' can inherit from class 'Vehicle' and inherit properties like 'color' and methods like 'drive'

  • Answered by AI
  • Q3. Why pytest fixtures are used
  • Ans. 

    Pytest fixtures are used to set up preconditions for tests, share resources, and reduce code duplication.

    • Fixtures help in setting up preconditions for tests, such as creating test data or initializing objects.

    • They allow for sharing resources across multiple tests, reducing code duplication.

    • Fixtures can be used to simulate real-world scenarios, like setting up a database connection or mocking external services.

    • They prov...

  • Answered by AI

Skills evaluated in this interview

QA Lead Interview Questions & Answers

UKG user image Anonymous

posted on 28 Nov 2023

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

I was interviewed in May 2023.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(3 Questions)

  • Q1. Testng priority and annotations
  • Q2. Multiple inheritance
  • Q3. Hashing concept

Interview Preparation Tips

Interview preparation tips for other job seekers - Work culture not good

Pegasystems Interview FAQs

How many rounds are there in Pegasystems Senior QA Engineer interview?
Pegasystems interview process usually has 1 rounds. The most common rounds in the Pegasystems interview process are One-on-one Round.

Tell us how to improve this page.

Pegasystems Senior QA Engineer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more
Pegasystems Senior QA Engineer Salary
based on 5 salaries
₹18 L/yr - ₹23 L/yr
62% more than the average Senior QA Engineer Salary in India
View more details
Software Engineer
203 salaries
unlock blur

₹7.8 L/yr - ₹26 L/yr

Senior Software Engineer
156 salaries
unlock blur

₹11 L/yr - ₹35 L/yr

Senior Solution Engineer
132 salaries
unlock blur

₹9.5 L/yr - ₹22.5 L/yr

Solution Engineer
104 salaries
unlock blur

₹7.8 L/yr - ₹19.5 L/yr

Principal Software Engineer
94 salaries
unlock blur

₹17.6 L/yr - ₹42 L/yr

Explore more salaries
Compare Pegasystems with

Salesforce

4.0
Compare

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare
Did you find this page helpful?
Yes No
write
Share an Interview