Premium Employer

i

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

Persistent Systems Verified Tick

Compare button icon Compare button icon Compare
3.5

based on 3.7k Reviews

Filter interviews by

Persistent Systems QA Engineer Interview Questions and Answers

Updated 16 Jan 2025

Persistent Systems QA Engineer Interview Experiences

5 interviews found

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 4 Jun 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. What is rest assured
  • Ans. 

    Rest Assured is a Java library used for testing RESTful APIs.

    • Rest Assured is an open-source Java library that provides a domain-specific language for writing powerful, maintainable tests for RESTful APIs.

    • It simplifies the process of sending HTTP requests and validating responses.

    • Rest Assured can be integrated with popular testing frameworks like JUnit and TestNG.

    • It supports various authentication methods, request and r...

  • Answered by AI
  • Q2. What is json file
  • Ans. 

    JSON file is a lightweight data interchange format used to store and transmit data in a structured way.

    • JSON stands for JavaScript Object Notation.

    • It is easy for humans to read and write, and easy for machines to parse and generate.

    • JSON is language-independent and is commonly used in web development for APIs.

    • Example: {"name": "John Doe", "age": 30, "city": "New York"}

  • Answered by AI

Skills evaluated in this interview

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 5 Jul 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Real time test cases

QA Engineer Interview Questions Asked at Other Companies

Q1. 80 pairs of socks in a dark room, 40 black, 40 white, how many mi ... read more
Q2. Suppose your manager gave you one task which has to be complete i ... read more
Q3. how to access amazon page directly directly with out using driver ... read more
Q4. 100 apples in 5 consecutive days, each day 6 more than the previo ... read more
Q5. 7)how do you drive your data in automation , how do you validate ... read more

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 18 Jun 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed before Jun 2023. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Your Introduction
  • Q2. Technical and Project related questions
  • Q3. Your Framework related questions

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 16 Jan 2025

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

I applied via LinkedIn and was interviewed before Jan 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Recently worked project and QA related questions
Round 2 - Technical 

(1 Question)

  • Q1. About sprint planning and scenario based questions

Persistent Systems interview questions for designations

 Senior QA Engineer

 (1)

 QA Lead

 (1)

 Qa Module Lead

 (1)

 Quality Engineer

 (2)

 Junior Engineer

 (1)

 Software Engineer

 (134)

 Lead Engineer

 (30)

 Devops Engineer

 (8)

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 18 Jan 2022

I applied via Campus Placement and was interviewed in Dec 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. They ask very easy question to you.. you have to learn basic of all i listed here Python, DSA, Linux, Computer Network, DBMS

Interview Preparation Tips

Interview preparation tips for other job seekers - It's not too tough. Basics will help to clear interview

Interview questions from similar companies

QA Engineer Interview Questions & Answers

ITC Infotech user image Mamta Balakrishna

posted on 13 Dec 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
-

I applied via Approached by Company and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Java program to split alpha-numeric values without using the split method
  • Ans. 

    Split alpha-numeric values in Java without using split method

    • Iterate through each character in the input string

    • Check if the character is a digit or a letter using Character.isDigit() and Character.isLetter() methods

    • Create separate strings for digits and letters and store them in an array

  • Answered by AI
  • Q2. SQL query to add a new column to a table and the column value should have a default value and never be null
  • Ans. 

    Use ALTER TABLE statement to add a new column with a default value and set it to NOT NULL

    • Use ALTER TABLE table_name ADD column_name data_type DEFAULT default_value NOT NULL;

    • Example: ALTER TABLE employees ADD hire_date DATE DEFAULT '2022-01-01' NOT NULL;

  • Answered by AI
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. Selenium vs cypress
  • Ans. 

    Selenium is a widely used open-source tool for web automation testing, while Cypress is a newer tool known for its fast and reliable testing capabilities.

    • Selenium is more established and has a larger community support

    • Cypress is known for its fast test execution times

    • Cypress has built-in support for modern web technologies like React and Angular

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

    • Cy...

  • Answered by AI
  • Q2. How do you install cypress
  • Ans. 

    Cypress can be installed using npm package manager.

    • Install Node.js if not already installed

    • Open terminal and run 'npm install cypress'

    • Once installation is complete, run 'npx cypress open' to open Cypress Test Runner

  • Answered by AI
  • Q3. Reverse a string in Javascript
  • Ans. 

    Reverse a string in Javascript

    • Use the split() method to convert the string into an array of characters

    • Use the reverse() method to reverse the order of the characters

    • Use the join() method to convert the array back into a string

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Constructor design
  • Q2. Xpath locators page object model
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

They told to write java program in string and collections

Round 2 - One-on-one 

(2 Questions)

  • Q1. Different between test cases and test scenario
  • Ans. 

    Test cases are specific conditions or inputs to test a particular functionality, while test scenarios are a sequence of test cases to test a broader functionality.

    • Test cases are detailed steps to test a specific functionality, while test scenarios are a collection of test cases to test a broader functionality.

    • Test cases are more granular and focus on individual functionalities, while test scenarios are more high-level ...

  • Answered by AI
  • Q2. Write a program to read from excel
  • Ans. 

    A program to read data from an Excel file using a programming language.

    • Use a library or module that supports reading Excel files, such as pandas in Python or Apache POI in Java.

    • Open the Excel file and select the specific sheet or range of cells to read data from.

    • Iterate through the rows and columns to extract the data and store it in an array of strings.

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Why you want to switch company
  • Ans. 

    Seeking new challenges and growth opportunities in a more innovative environment.

    • Desire for new challenges and learning opportunities

    • Seeking a more innovative work environment

    • Looking for career growth and advancement

    • Interested in working with new technologies or methodologies

  • Answered by AI

Skills evaluated in this interview

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

I applied via Job Portal and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Bubble sort algo, String manipulation

Round 2 - Technical 

(2 Questions)

  • Q1. API testing using restAssured
  • Q2. STLC bug life cuycle

Interview Preparation Tips

Interview preparation tips for other job seekers - preapare interview on CV

Persistent Systems Interview FAQs

How many rounds are there in Persistent Systems QA Engineer interview?
Persistent Systems interview process usually has 1 rounds. The most common rounds in the Persistent Systems interview process are Technical and One-on-one Round.
How to prepare for Persistent Systems QA Engineer 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 Persistent Systems. The most common topics and skills that interviewers at Persistent Systems expect are Automation Testing, QA, Selenium, Quality Assurance Engineering and Cucumber.
What are the top questions asked in Persistent Systems QA Engineer interview?

Some of the top questions asked at the Persistent Systems QA Engineer interview -

  1. What is rest assu...read more
  2. What is json f...read more
  3. They ask very easy question to you.. you have to learn basic of all i listed he...read more

Tell us how to improve this page.

Persistent Systems QA Engineer Interview Process

based on 4 interviews in last 1 year

1 Interview rounds

  • Technical Round
View more

People are getting interviews through

based on 3 Persistent Systems interviews
Job Portal
Campus Placement
33%
33%
34% candidates got the interview through other sources.
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates
Join Persistent Systems See Beyond, Rise Above
Persistent Systems QA Engineer Salary
based on 111 salaries
₹2.1 L/yr - ₹11.1 L/yr
8% more than the average QA Engineer Salary in India
View more details

Persistent Systems QA Engineer Reviews and Ratings

based on 11 reviews

4.2/5

Rating in categories

4.2

Skill development

4.1

Work-Life balance

4.1

Salary & Benefits

3.8

Job Security

4.3

Company culture

3.9

Promotions/Appraisal

4.0

Work Satisfaction

Explore 11 Reviews and Ratings
Software Engineer
4.3k salaries
unlock blur

₹2.5 L/yr - ₹9.5 L/yr

Senior Software Engineer
3.7k salaries
unlock blur

₹5 L/yr - ₹13 L/yr

Lead Engineer
3k salaries
unlock blur

₹7.2 L/yr - ₹30 L/yr

Lead Software Engineer
2.9k salaries
unlock blur

₹7.3 L/yr - ₹21 L/yr

Project Lead
1.8k salaries
unlock blur

₹13 L/yr - ₹38.8 L/yr

Explore more salaries
Compare Persistent Systems with

Cognizant

3.8
Compare

TCS

3.7
Compare

IBM

4.1
Compare

Wipro

3.7
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