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

Filter interviews by

Persistent Systems Interview Questions, Process, and Tips for Experienced

Updated 10 Apr 2025

Top Persistent Systems Interview Questions and Answers for Experienced

View all 198 questions

Persistent Systems Interview Experiences for Experienced

Popular Designations

280 interviews found

Architect Interview Questions & Answers

user image Anonymous

posted on 22 Mar 2024

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

I applied via Approached by Company and was interviewed in Sep 2023. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Resume based questions
Round 2 - Technical 

(1 Question)

  • Q1. Resume based and experience based questions
Round 3 - Client Interview 

(1 Question)

  • Q1. Resume based experience based
Round 4 - Client Interview 

(1 Question)

  • Q1. Experience based

Architect Interview Questions asked at other Companies

Q1. How do you find the resources available on a server if it is on premise?
View answer (2)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is a constructor?
  • Ans. 

    A constructor is a special method in a class that is automatically called when an instance of the class is created.

    • Constructors have the same name as the class they belong to.

    • They can be used to initialize the object's state or perform any necessary setup.

    • Constructors do not have a return type.

    • Example: public class Person { public Person() { // constructor code here } }

  • Answered by AI

Skills evaluated in this interview

DOT NET Developer Interview Questions asked at other Companies

Q1. What is the difference between windows application development and web based development?
View answer (12)

Project Lead Interview Questions & Answers

user image Anonymous

posted on 10 Oct 2024

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

I applied via Naukri.com and was interviewed before Oct 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Explain how backpropogation works
  • Ans. 

    Backpropagation is a method used in neural networks to update the weights of the network by calculating the gradient of the loss function.

    • Backpropagation involves calculating the gradient of the loss function with respect to each weight in the network.

    • The gradients are then used to update the weights in the network in order to minimize the loss function.

    • This process is repeated iteratively until the network converges t...

  • Answered by AI
  • Q2. Implement convolution working in c++
  • Ans. 

    Implementing convolution in C++

    • Use nested loops to iterate over the input and kernel matrices

    • Apply the convolution operation by multiplying corresponding elements and summing them up

    • Handle edge cases by padding the input matrix if necessary

    • Consider using libraries like OpenCV for optimized implementations

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Always attend client interview round before joining or else you'll be slacked to bench after joining. There are no projects too.

Skills evaluated in this interview

Top Persistent Systems Project Lead Interview Questions and Answers

Q1. 1. What is API Testing 2. HTTP error codes 3. How to test API 4. Types of API 5. Questions on JAVA, oops concept 6. Sudo code for prime number 7. Questions on Performance Testing 8. How you are doing performance testing 9. How to analyse pe... read more
View answer (1)

Project Lead Interview Questions asked at other Companies

Q1. PowerBuilder 1. How to build app in one click? 2. How to read data from web page? 3. Have you used any PDF tools 4. How to save data from datawindow to XML 5. How to read mail from Outlook 6. How you migrate to new version.net SQL 1. Perfor... read more
View answer (1)
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Complete recruitment cycle
  • Q2. Joiner per month

Senior Talent Acquisition Specialist Interview Questions asked at other Companies

Q1. What is product based and service based company?
View answer (1)

Persistent Systems interview questions for popular designations

 Software Engineer

 (127)

 Senior Software Engineer

 (36)

 Software Developer

 (35)

 Lead Engineer

 (32)

 Lead Software Engineer

 (31)

 Project Lead

 (19)

 Java Developer

 (15)

 Salesforce Developer

 (11)

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

Easy level leetcode with aptitude and mcqs on DBMS, OS, Networking, OOPs.

Round 2 - Technical 

(1 Question)

  • Q1. One basic questions around printing a pattern
Round 3 - HR 

(1 Question)

  • Q1. Basically it was test to check if you fit in company's values.

Top Persistent Systems Software Engineer Interview Questions and Answers

Q1. Index of First Occurrence Problem Statement Given two strings A and B, determine the index of the first occurrence of A in B. If A is not present in B, return -1. Example: Input: A = "bc", B = "abcddbc" Output: 1 Explanation: The string A a... read more
View answer (2)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (225)

Get interview-ready with Top Persistent Systems Interview Questions

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. SOC roles and responsibilities

Senior Security Analyst Interview Questions asked at other Companies

Q1. Tell me about Security incident response framework that you have worked on ?
View answer (1)

Jobs at Persistent Systems

View all
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Dependency injection, package.json
Round 2 - HR 

(1 Question)

  • Q1. Salary discussion

Top Persistent Systems Software Engineer Interview Questions and Answers

Q1. Index of First Occurrence Problem Statement Given two strings A and B, determine the index of the first occurrence of A in B. If A is not present in B, return -1. Example: Input: A = "bc", B = "abcddbc" Output: 1 Explanation: The string A a... read more
View answer (2)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (225)
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. OOPs concepts, explain polymorphism, inheritance, etc
  • Ans. 

    Polymorphism is the ability of an object to take on many forms. Inheritance is the process of creating new classes from existing ones.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • Inheritance allows a class to inherit properties and methods from another class.

    • Polymorphism and inheritance are key concepts in object-oriented programming (OOP).

    • Example of polymorphism: A s...

  • Answered by AI
  • Q2. Multithreading related questions, difference between Thread.start() and run() method

Top Persistent Systems Java Developer Interview Questions and Answers

Q1. Request mapping annotation syntax and how and where we use it
View answer (1)

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size N containing only integers 0 and 1, implement a function to sort this array. The solution should scan the array only once without using any additional arrays. Input: The firs... read more
View answer (4)

Module Lead Interview Questions & Answers

user image Anonymous

posted on 25 Jul 2024

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

(2 Questions)

  • Q1. Basic questions
  • Q2. Past experience

Module Lead Interview Questions asked at other Companies

Q1. 1) describe the Cloud architecture for the azure storage, blob , cloud services? 2) describe the integration of Web API related questions for email and sms applications? 3) describe the .net core aspects for solid programming implementation... read more
View answer (2)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. What parameters you will consider while design a system
  • Ans. 

    Parameters considered while designing a system

    • Functional requirements

    • Performance requirements

    • Scalability

    • Security

    • Maintainability

    • Cost

    • User experience

    • Integration with existing systems

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be specific on answers and should have clarity why we are using this and that. Must have proper insight about your decision.

Skills evaluated in this interview

Senior Architect Interview Questions asked at other Companies

Q1. What is a typical cladding material. What are the types and how are they applicable for specific buildings.
View answer (2)

Persistent Systems Interview FAQs

How many rounds are there in Persistent Systems interview for experienced candidates?
Persistent Systems interview process for experienced candidates usually has 2-3 rounds. The most common rounds in the Persistent Systems interview process for experienced candidates are Technical, HR and Resume Shortlist.
How to prepare for Persistent Systems interview for experienced candidates?
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 Java, Javascript, Python, SQL and AWS.
What are the top questions asked in Persistent Systems interview for experienced candidates?

Some of the top questions asked at the Persistent Systems interview for experienced candidates -

  1. What is nodejs and difference between nodejs and javascr...read more
  2. What is Difference between let var con...read more
  3. How do you define 'many-to-many' relationship in Hibernate when there are no co...read more
How long is the Persistent Systems interview process?

The duration of Persistent Systems interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Persistent Systems Interview Process for Experienced

based on 189 interviews

Interview experience

3.9
  
Good
View more

Explore Interview Questions and Answers for Top Skills at Persistent Systems

Join Persistent Systems See Beyond, Rise Above

Interview Questions from Similar Companies

LTIMindtree Interview Questions
3.7
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 807 Interviews
DXC Technology Interview Questions
3.7
 • 802 Interviews
Nagarro Interview Questions
4.0
 • 763 Interviews
NTT Data Interview Questions
3.8
 • 627 Interviews
Publicis Sapient Interview Questions
3.5
 • 621 Interviews
GlobalLogic Interview Questions
3.6
 • 593 Interviews
View all

Persistent Systems Reviews and Ratings

based on 4.1k reviews

3.5/5

Rating in categories

3.5

Skill development

3.5

Work-life balance

3.3

Salary

3.1

Job security

3.5

Company culture

3.0

Promotions

3.3

Work satisfaction

Explore 4.1k Reviews and Ratings
Senior Salesforce Business Analyst

Bangalore / Bengaluru

10-12 Yrs

Not Disclosed

Snowflake Developer

Hyderabad / Secunderabad,

Pune

+1

5-10 Yrs

Not Disclosed

React JS Developer

Pune,

Ahmedabad

+1

8-10 Yrs

Not Disclosed

Explore more jobs
Software Engineer
4.4k salaries
unlock blur

₹2.5 L/yr - ₹9.6 L/yr

Senior Software Engineer
4k salaries
unlock blur

₹5 L/yr - ₹15.8 L/yr

Lead Engineer
3.2k salaries
unlock blur

₹10 L/yr - ₹30 L/yr

Lead Software Engineer
3.1k salaries
unlock blur

₹7.3 L/yr - ₹18.6 L/yr

Project Lead
1.9k salaries
unlock blur

₹13 L/yr - ₹39 L/yr

Explore more salaries
Compare Persistent Systems with

Cognizant

3.7
Compare

TCS

3.7
Compare

IBM

4.0
Compare

LTIMindtree

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