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 Test Module Lead Interview Questions, Process, and Tips

Updated 23 Feb 2021

Persistent Systems Test Module Lead Interview Experiences

1 interview found

Interview Questionnaire 

10 Questions

  • Q1. Explain your automation framework
  • Ans. 

    Our automation framework is a hybrid framework that combines data-driven and keyword-driven approaches.

    • We use Excel sheets to store test data and test cases.

    • We have a set of reusable functions that are stored in a separate library.

    • We use Selenium WebDriver for web automation and Appium for mobile automation.

    • We have a reporting mechanism that generates reports in HTML format.

    • We use Jenkins for continuous integration and...

  • Answered by AI
  • Q2. Explain control flow of the automation framework
  • Ans. 

    Control flow of automation framework refers to the sequence in which the test cases are executed.

    • The framework follows a predefined sequence of steps to execute test cases

    • It includes steps like test case selection, test data preparation, test case execution, and result reporting

    • The control flow can be linear or non-linear depending on the framework design

    • Example: In a linear control flow, test cases are executed one af

  • Answered by AI
  • Q3. Reporting used in framework
  • Ans. 

    Reporting is an essential part of any framework to track and analyze test results.

    • Reporting helps in identifying the test cases that have failed and the reasons behind the failure.

    • It also helps in tracking the progress of testing and identifying areas that need improvement.

    • Reporting can be done using various tools such as TestNG, JUnit, Extent Reports, etc.

    • Reports can be generated in various formats such as HTML, PDF, ...

  • Answered by AI
  • Q4. Explain experience in bdd framework
  • Q5. Java program to count frequency of characters in string
  • Ans. 

    Java program to count frequency of characters in string

    • Create a HashMap to store character and its frequency

    • Convert the string to char array

    • Iterate through the char array and update the frequency in HashMap

    • Print the HashMap

  • Answered by AI
  • Q6. What is interface and why is it used
  • Ans. 

    An interface is a contract between two components that defines the communication between them.

    • Interfaces provide a way to achieve abstraction and loose coupling in software design.

    • They allow different components to communicate with each other without knowing the implementation details.

    • Interfaces are used in object-oriented programming to define a set of methods that a class must implement.

    • Examples of interfaces in Java...

  • Answered by AI
  • Q7. Overloading and overriding
  • Q8. Webelement methods
  • Q9. Window handle and handles
  • Q10. Array list and linked list

Skills evaluated in this interview

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Jun 2021. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. There were 4 rounds. 1st round on technical questions, 2nd round was taken by client and it was based on both technical and scenario based and 3rd round was managerial round and then finally HR round.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and be well aware of your previous work and projects.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(7 Questions)

  • Q1. Appium architecture
  • Q2. Java oops concepts n where did u apply that in automation framework
  • Ans. 

    Java OOPs concepts are used in automation framework design for better code organization and reusability.

    • Encapsulation: Used to hide the internal implementation details of classes and provide access through methods.

    • Inheritance: Allows for code reuse by creating parent-child relationships between classes.

    • Polymorphism: Enables methods to behave differently based on the object they are called on.

    • Abstraction: Helps in defin...

  • Answered by AI
  • Q3. How to handle otp
  • Ans. 

    OTP can be handled by generating, sending, and verifying it in automated tests.

    • Generate OTP using a random number generator

    • Send OTP to the user via email, SMS, or any other communication channel

    • Verify OTP entered by the user against the generated OTP

  • Answered by AI
  • Q4. How start appium in automation
  • Ans. 

    To start Appium in automation, you need to install Appium server, set up desired capabilities, and run the server.

    • Install Appium server using npm install -g appium

    • Set up desired capabilities in your test script

    • Start the Appium server using the command appium

  • Answered by AI
  • Q5. What are the types of mobile apps
  • Ans. 

    Types of mobile apps include native apps, web apps, and hybrid apps.

    • Native apps are developed for specific platforms like iOS or Android

    • Web apps are accessed through a web browser and do not need to be downloaded from an app store

    • Hybrid apps combine elements of both native and web apps

    • Examples include Instagram (native), Twitter (web), and Uber (hybrid)

  • Answered by AI
  • Q6. Program to remove duplicate letters in a string
  • Ans. 

    Program to remove duplicate letters in a string

    • Iterate through the string and keep track of seen characters in a set

    • Append characters to a new string only if they are not already in the set

    • Return the new string without duplicate letters

  • Answered by AI
  • Q7. How to perform swipe action in mobile devices
  • Ans. 

    Swipe action in mobile devices can be performed using swipe() method in Appium or TouchAction class in Selenium.

    • Use swipe() method in Appium to perform swipe action in mobile devices

    • Alternatively, use TouchAction class in Selenium for swipe action

    • Specify the start and end coordinates for the swipe action

    • Adjust the duration and speed of the swipe as needed

  • 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 Naukri.com and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. ETL tetsing methods, schema, SCD types, string function, some query based on scenario
  • Q2. L2 round - rank, dense rank, rownumber, types of fact, dimensions, duplicate query

Interview Preparation Tips

Interview preparation tips for other job seekers - Questions was easy, need to have knowledge of concepts and hands of experience on sql queries

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. Coding questions about c programming
  • Q2. Errors faced and resolution done
  • Ans. 

    I have faced errors related to compatibility issues with software versions, and resolved them by updating the software to the latest version.

    • Identified the specific software versions causing compatibility issues

    • Researched and found the latest version of the software

    • Updated the software to the latest version to resolve the compatibility issues

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Salary negotitation
  • Q2. Joining date preference
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

Mixed questions from aptitude, reasoning and english questions.

Round 2 - Technical 

(1 Question)

  • Q1. Basic questions from Manual Testing and SQL
Round 3 - HR 

(1 Question)

  • Q1. Basic interview and salary discussion
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
4
Good
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Aptitude Test 

20 aptitude questions and 50 technical questions

Round 2 - One-on-one 

(10 Questions)

  • Q1. Tell me about your self
  • Q2. Explain automation framework
  • Ans. 

    Automation framework is a set of guidelines, rules, and tools that help in creating and executing automated tests.

    • Automation framework provides structure and guidelines for creating automated tests

    • It helps in organizing test scripts, data, and results

    • Frameworks can be data-driven, keyword-driven, or hybrid

    • Examples of automation frameworks include Selenium WebDriver, TestNG, and Robot Framework

  • Answered by AI
  • Q3. Java code for sorting without using built in function
  • Ans. 

    Sorting array of strings in Java without using built-in functions

    • Create a custom sorting algorithm like bubble sort, selection sort, or insertion sort

    • Compare each pair of strings and swap them if necessary to sort in ascending order

    • Repeat the process until the array is fully sorted

  • Answered by AI
  • Q4. Explain testng annotations and how will we use annotation in our framework
  • Ans. 

    TestNG annotations are used to control the flow of test methods and provide additional information about the test methods.

    • TestNG annotations are used to mark methods as test methods, setup methods, teardown methods, etc.

    • Annotations like @Test, @BeforeMethod, @AfterMethod, @BeforeClass, @AfterClass, @BeforeSuite, @AfterSuite are commonly used in TestNG framework.

    • Annotations help in organizing and prioritizing test metho...

  • Answered by AI
  • Q5. What is testng listener
  • Ans. 

    TestNG listener is an interface that allows users to customize the test execution process.

    • TestNG listeners can be used to perform actions before or after a test method is run.

    • Listeners can be used to generate logs, take screenshots, or perform other custom actions during test execution.

    • Examples of TestNG listeners include ITestListener, ISuiteListener, and IInvokedMethodListener.

  • Answered by AI
  • Q6. What is overriding and where it is used in automation framework
  • Ans. 

    Overriding is a concept in object-oriented programming where a subclass provides a specific implementation of a method that is already provided by its superclass.

    • Overriding allows a subclass to provide a specific implementation of a method that is already provided by its superclass

    • It is used in automation frameworks to customize or extend the functionality of existing methods or classes

    • In automation testing, overriding...

  • Answered by AI
  • Q7. Explain bdd hooks and tags
  • Ans. 

    BDD hooks and tags are used in Behavior-Driven Development to set up preconditions and execute actions before or after scenarios, and to categorize and filter scenarios.

    • BDD hooks are used to set up preconditions and execute actions before or after scenarios

    • Tags are used to categorize and filter scenarios based on certain criteria

    • Hooks can be used to perform setup and teardown actions, such as initializing test data or ...

  • Answered by AI
  • Q8. Explain bdd background keyword
  • Ans. 

    BDD background keyword is used to define common preconditions for all scenarios in a feature file.

    • Used at the beginning of a feature file to define common preconditions

    • Helps in setting up the initial state for all scenarios in the feature file

    • Reduces duplication of steps in scenarios by defining them once in the background

  • Answered by AI
  • Q9. Explain ci/cd pipeline using jenkins
  • Ans. 

    CI/CD pipeline using Jenkins automates the process of integrating code changes and deploying them to production.

    • Jenkins is a popular automation server used for CI/CD

    • CI/CD stands for Continuous Integration/Continuous Deployment

    • In a CI/CD pipeline, code changes are automatically built, tested, and deployed

    • Jenkins pipelines can be defined using a Jenkinsfile which specifies the stages and steps of the pipeline

    • Example: Che...

  • Answered by AI
  • Q10. Explain rest assured and write a code for post and verify the response
  • Ans. 

    Rest Assured is a Java library for testing RESTful APIs. It simplifies API testing by providing a fluent interface to make HTTP requests and validate responses.

    • Rest Assured is commonly used in API automation testing to validate the functionality of RESTful APIs.

    • It allows testers to easily make HTTP requests, set headers, parameters, and body, and validate the response.

    • Here is an example code snippet for posting data an...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Please prepare all concepts in framwork

Skills evaluated in this interview

Persistent Systems Interview FAQs

What are the top questions asked in Persistent Systems Test Module Lead interview?

Some of the top questions asked at the Persistent Systems Test Module Lead interview -

  1. Java program to count frequency of characters in stri...read more
  2. What is interface and why is it u...read more
  3. Explain control flow of the automation framew...read more

Tell us how to improve this page.

Join Persistent Systems See Beyond, Rise Above

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.1k Interviews
Infosys Interview Questions
3.7
 • 7.4k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.7k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
LTIMindtree Interview Questions
3.9
 • 2.8k Interviews
DXC Technology Interview Questions
3.7
 • 797 Interviews
Mphasis Interview Questions
3.4
 • 781 Interviews
Nagarro Interview Questions
4.0
 • 754 Interviews
View all
Persistent Systems Test Module Lead Salary
based on 16 salaries
₹8.4 L/yr - ₹11.4 L/yr
26% less than the average Test Module Lead Salary in India
View more details

Persistent Systems Test Module Lead Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

5.0

Skill development

5.0

Work-Life balance

5.0

Salary & Benefits

4.0

Job Security

4.0

Company culture

4.0

Promotions/Appraisal

4.0

Work Satisfaction

Explore 1 Review and Rating
Software Engineer
4.3k salaries
unlock blur

₹2.5 L/yr - ₹9.4 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.4 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