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.8k Reviews

Filter interviews by

Persistent Systems Qa Module Lead Interview Questions and Answers

Updated 6 Mar 2024

Persistent Systems Qa Module Lead Interview Experiences

1 interview found

Qa Module Lead Interview Questions & Answers

user image Ravi Mahajan

posted on 25 Jan 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before Jan 2023.

Round 1 - Technical 

(1 Question)

  • Q1. How many years experience tou have
Round 2 - Technical 

(1 Question)

  • Q1. What is your strength
Round 3 - Technical 

(1 Question)

  • Q1. Tell me about yourself
Round 4 - HR 

(2 Questions)

  • Q1. What is your weakness
  • Q2. Why should we hire you
Round 5 - One-on-one 

(1 Question)

  • Q1. Why should we hire you
Round 6 - One-on-one 

(1 Question)

  • Q1. Tel me situation when you have overcome an difficult situation
Round 7 - Coding Test 

About the tools you worked on

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong on your technical skill

Interview questions from similar companies

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

Interview Questionnaire 

17 Questions

  • Q1. What is Liskov Principle?
  • Ans. 

    Liskov Principle is a principle of object-oriented programming that states that objects of a superclass should be replaceable with objects of its subclasses without affecting the correctness of the program.

    • Named after Barbara Liskov, a computer scientist who introduced the principle in 1987

    • Also known as Liskov Substitution Principle (LSP)

    • Helps in designing classes that are easy to extend and maintain

    • Violation of LSP ca...

  • Answered by AI
  • Q2. Explain Factory Design Pattern
  • Ans. 

    Factory Design Pattern is a creational pattern that provides an interface for creating objects in a superclass, but allows subclasses to alter the type of objects that will be created.

    • Factory Design Pattern is used to create objects without exposing the creation logic to the client.

    • It provides a way to delegate the instantiation logic to child classes.

    • It promotes loose coupling by eliminating the need to bind applicati...

  • Answered by AI
  • Q3. What is runtime polymorphism and how do you achieve it?
  • Ans. 

    Runtime polymorphism is the ability of an object to take on multiple forms during runtime.

    • It is achieved through inheritance and method overriding.

    • The method called depends on the actual object type at runtime.

    • Example: Animal class with a speak() method, and Dog and Cat classes that inherit from Animal and override the speak() method.

    • When a Dog object calls speak(), the overridden method in the Dog class is executed.

    • Wh...

  • Answered by AI
  • Q4. What is dependency injection and what are the benefits?
  • Ans. 

    Dependency injection is a design pattern where objects are passed as dependencies rather than being created within a class.

    • Reduces coupling between classes

    • Increases testability and maintainability

    • Allows for easier swapping of dependencies

    • Examples: Constructor injection, Setter injection, Interface injection

  • Answered by AI
  • Q5. Have you ever worked with nUnit framework?
  • Ans. 

    Yes, I have worked with nUnit framework.

    • I have used nUnit for unit testing in C# projects.

    • I am familiar with its syntax and assertions.

    • I have integrated nUnit with Visual Studio for continuous testing.

    • I have used nUnit to test both simple and complex scenarios.

    • For example, I used nUnit to test a payment processing system.

    • I also used nUnit to test a complex algorithm for data analysis.

  • Answered by AI
  • Q6. What are the endpoints in WebAPI
  • Ans. 

    Endpoints are URLs that clients use to access resources in a WebAPI.

    • Endpoints are the entry points for a WebAPI.

    • They define the resources that can be accessed by clients.

    • Endpoints are identified by a URL and HTTP method.

    • Examples of endpoints include /api/users and /api/products.

    • Endpoints can have parameters that are passed in the URL or request body.

  • Answered by AI
  • Q7. Explain the difference b/w WebService vs WebApi
  • Ans. 

    WebService is a software system designed to support interoperable machine-to-machine interaction over a network. WebApi is a framework for building HTTP services that can be consumed by a broad range of clients.

    • WebService uses SOAP protocol for communication while WebApi uses HTTP protocol.

    • WebService is platform-independent while WebApi is platform-dependent.

    • WebService supports only XML format while WebApi supports XML...

  • Answered by AI
  • Q8. Singleton vs static
  • Ans. 

    Singleton and static are both design patterns used to create objects with global access, but they differ in their implementation.

    • Singleton restricts the instantiation of a class to a single object, while static allows multiple instances.

    • Singleton provides a global point of access to the object, while static members are accessed through the class name.

    • Singleton can be lazy-loaded, while static members are initialized at...

  • Answered by AI
  • Q9. IOC
  • Q10. Entity framework to join and pull details from joinee table. Left/Right join in Entity framework
  • Ans. 

    Entity framework supports left/right join to pull details from joinee table.

    • Use LINQ to perform left/right join in Entity framework

    • Use DefaultIfEmpty() method to perform left join

    • Use join...into statement to perform right join

    • Example: var result = from employee in context.Employees

    • join department in context.Departments on employee.DepartmentId equals department.Id into empDept

    • from department in empDept.DefaultIfEmpty()

  • Answered by AI
  • Q11. Extension Methods
  • Q12. Various patterns to achieve DI (Method, Constructor, Property level)
  • Ans. 

    DI can be achieved through method, constructor, and property level patterns.

    • Method level DI involves passing dependencies as method parameters.

    • Constructor level DI involves passing dependencies as constructor parameters.

    • Property level DI involves setting dependencies as properties of an object.

    • Examples of DI frameworks that use these patterns include Spring and Unity.

    • Choosing the appropriate pattern depends on the spec

  • Answered by AI
  • Q13. Select alternate rows from SQL
  • Ans. 

    Select alternate rows from SQL

    • Use the modulo operator to filter alternate rows

    • Add a WHERE clause with the modulo operator

    • Example: SELECT * FROM table WHERE id % 2 = 0

    • Example: SELECT * FROM table WHERE MOD(id, 2) = 0

  • Answered by AI
  • Q14. Clustered Index vs Non-clustered Index
  • Ans. 

    Clustered index determines physical order of data while non-clustered index has separate structure.

    • Clustered index determines the physical order of data in a table while non-clustered index has a separate structure.

    • Clustered index is faster for retrieval of data while non-clustered index is faster for retrieval of specific data.

    • A table can have only one clustered index while multiple non-clustered indexes can be create...

  • Answered by AI
  • Q15. React Lifecycle (componentWillMount, DidMount, UnMount, WillUnmount)
  • Q16. Agile
  • Q17. Little bit of Azure ( Mentioned BusServices, Functions, Blobs)

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview was simple. Basically if you are an experienced person they will not look into basic details much. There will only be a sanity check. Usually if you are serving a notice period for

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. What is email studio and how will you send an email ?
  • Ans. 

    Email Studio is a Salesforce tool for creating and sending personalized emails to targeted audiences.

    • Create an email in Email Studio using drag-and-drop tools or HTML coding

    • Select a targeted audience using Salesforce data

    • Preview and test the email before sending

    • Schedule or send the email to the selected audience

    • Track email performance and engagement metrics

  • Answered by AI
  • Q2. What is journey builder and what are the elements on it?

Interview Preparation Tips

Interview preparation tips for other job seekers - There will be mainly 2 rounds.

1st - Basic tech. based question according to the JD. Interviewer was really helpful. Don't be afraid & nervous.

2nd- It was Managerial round ( Cultural Round ) . If you have cleared your 1st round then it will be more easy for you. In this round they will just check that if you are valuable to company or not.
They will be focusing on interpersonal Skills and you are flexible or not .

After these rounds you will get mail for onboarding if you will clear the round.

Just wait for a week and you will get everything.!!!!!

Best of luck...

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed in Sep 2021. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. More technical questions of which you are working. And details of project , your role in project
  • Q2. Be prepare more on technology which you are working

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared more on technology which you are working, and tell confidently what you have worked

Interview Questionnaire 

10 Questions

  • Q1. WHat is omnichannel?
  • Ans. 

    Omnichannel is a marketing strategy that provides a seamless and integrated customer experience across all channels.

    • Omnichannel focuses on creating a consistent brand experience across all channels

    • It involves integrating online and offline channels such as social media, email, mobile, and physical stores

    • Customers can interact with the brand through any channel and receive a consistent experience

    • Examples include Starbuc...

  • Answered by AI
  • Q2. What is web to case?
  • Ans. 

    Web to Case is a Salesforce feature that allows customers to submit support cases through a web form.

    • Web to Case creates a case record in Salesforce from information submitted through a web form.

    • The web form can be customized to include specific fields and validation rules.

    • Web to Case can be integrated with email-to-case to ensure all customer inquiries are captured in Salesforce.

    • Examples of industries that use Web to ...

  • Answered by AI
  • Q3. What is the difference between with sharing and without sharing?
  • Ans. 

    With sharing and without sharing are keywords used in Apex to specify sharing rules for a class.

    • With sharing enforces the sharing rules of the current user, while without sharing ignores them.

    • With sharing is used for classes that access or modify data that belongs to multiple users, while without sharing is used for utility classes or classes that only access data owned by the current user.

    • With sharing is the default b...

  • Answered by AI
  • Q4. Where do we use without sharing keyword?
  • Ans. 

    Without sharing keyword is used in Apex to bypass sharing rules and access all data.

    • Used in classes that need to access all data regardless of sharing rules

    • Can be used in batch classes, trigger handlers, and unit tests

    • Should be used with caution as it can compromise data security

    • Example: Database.delete([SELECT Id FROM Account], false);

  • Answered by AI
  • Q5. Where do we use static and transient keyword?
  • Ans. 

    Static and transient keywords are used in Java programming language for different purposes.

    • Static keyword is used to create class-level variables and methods that can be accessed without creating an instance of the class.

    • Transient keyword is used to indicate that a variable should not be serialized when the object is converted to a byte stream.

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

  • Answered by AI
  • Q6. What are the ways to maintain field level securities in the Aura component?
  • Ans. 

    Field level securities in Aura components

    • Use Lightning Data Service to enforce CRUD and FLS

    • Use Apex to enforce additional security logic

    • Use Lightning Design System to control visibility of fields

    • Use custom validation rules to enforce business logic

    • Use sharing rules to control record access

  • Answered by AI
  • Q7. How can we maintain field-level security without LDS?
  • Ans. 

    Field-level security can be maintained using profiles, permission sets, and sharing rules.

    • Profiles can be used to restrict access to fields for a group of users.

    • Permission sets can be used to grant additional access to specific fields for certain users.

    • Sharing rules can be used to extend access to fields beyond the default sharing settings.

    • Validation rules can also be used to enforce data integrity and security at the

  • Answered by AI
  • Q8. What is LDS?
  • Ans. 

    LDS stands for Local Data Store.

    • LDS is a database that stores data locally on a device.

    • It is commonly used in mobile applications to store data offline.

    • LDS can be used to store user preferences, cached data, and other information.

    • Examples of LDS include SQLite and Realm.

  • Answered by AI
  • Q9. What are the benefits of force:createRecord?
  • Ans. 

    force:createRecord allows creation of records without Apex code.

    • Saves time and effort by eliminating the need for Apex code

    • Allows for easy creation of records from custom or standard objects

    • Can be used in Lightning Experience, Salesforce mobile app, and Communities

    • Can prepopulate fields with default values

    • Can be used with custom Lightning components

    • Example: Creating a new Account record from a custom Lightning componen

  • Answered by AI
  • Q10. Recent pages you have created in

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Jul 2021. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Internal working of Hashmap, linkedlist
  • Ans. 

    Hashmap uses hashing to store key-value pairs, while linkedlist is a data structure used to store a collection of elements.

    • Hashmap uses a hash function to map keys to indices in an array, where the values are stored.

    • Linkedlist is a collection of nodes, where each node contains a value and a reference to the next node.

    • Hashmap can have collisions, where multiple keys map to the same index, which is resolved using separat...

  • Answered by AI
  • Q2. Explain framework
  • Ans. 

    A framework is a set of rules, guidelines, and standards that provide a structure for developing software applications.

    • A framework provides a foundation for building software applications

    • It includes pre-written code and libraries that can be reused

    • Frameworks can be used to speed up development time and improve code quality

    • Examples of popular frameworks include React, Angular, and Django

  • Answered by AI
  • Q3. Overall Java and selenium questions

Interview Preparation Tips

Interview preparation tips for other job seekers - 2 technical rounds , 1 from Indian team and another Indian+client mixed . Client was cool.

Skills evaluated in this interview

Interview Questionnaire 

4 Questions

  • Q1. There were 3 rounds of interview 1. Technical 2. Managerial 3.HR
  • Q2. Technical round was all about basic questions related to testing including types, methodologies,defect management,SDLC,STLC, example based questions etc. Do study basic testing questions.
  • Q3. Managerial round was all about how you deal with a team, criticality based scenario, do's and don'ts in a project
  • Q4. Usual HR questions on salary expectation

Module Lead Interview Questions & Answers

Mphasis user image Shubham Goswami

posted on 14 Sep 2021

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

(2 Questions)

  • Q1. Microservices architecture
  • Q2. And other question related to

Interview Questionnaire 

5 Questions

  • Q1. Angular basic questions
  • Q2. Role in project?
  • Q3. How you will improve performance of application?
  • Ans. 

    Improving application performance

    • Identify and optimize slow database queries

    • Minimize network requests and optimize data transfer

    • Use caching to reduce server load and improve response time

    • Optimize code by removing unnecessary loops and improving algorithms

    • Use a content delivery network (CDN) to improve page load times

    • Implement load balancing to distribute traffic evenly across servers

    • Use profiling tools to identify perf...

  • Answered by AI
  • Q4. How you can secure application?
  • Ans. 

    Application security can be ensured through various measures.

    • Implementing secure coding practices

    • Using encryption for sensitive data

    • Regularly updating software and patches

    • Implementing access controls and authentication mechanisms

    • Conducting regular security audits and testing

    • Using firewalls and intrusion detection systems

    • Training employees on security best practices

    • Implementing a disaster recovery plan

    • Performing regular

  • Answered by AI
  • Q5. Challenges faced while working and you overcome?

Skills evaluated in this interview

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.

Persistent Systems Interview FAQs

How many rounds are there in Persistent Systems Qa Module Lead interview?
Persistent Systems interview process usually has 7 rounds. The most common rounds in the Persistent Systems interview process are Technical, One-on-one Round and Coding Test.

Tell us how to improve this page.

Persistent Systems Qa Module Lead Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Join Persistent Systems See Beyond, Rise Above

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
DXC Technology Interview Questions
3.7
 • 805 Interviews
Mphasis Interview Questions
3.4
 • 801 Interviews
Nagarro Interview Questions
4.0
 • 776 Interviews
View all
Persistent Systems Qa Module Lead Salary
based on 5 salaries
₹8.1 L/yr - ₹10 L/yr
39% less than the average Qa Module Lead Salary in India
View more details

Persistent Systems Qa Module Lead Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

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

₹2.8 L/yr - ₹9.5 L/yr

Senior Software Engineer
3.8k salaries
unlock blur

₹5 L/yr - ₹15.1 L/yr

Lead Engineer
3.1k salaries
unlock blur

₹9.9 L/yr - ₹30 L/yr

Lead Software Engineer
2.9k salaries
unlock blur

₹7.1 L/yr - ₹18.2 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.0
Compare

Wipro

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