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

Updated 1 Mar 2025

Top Persistent Systems Interview Questions and Answers

View all 435 questions

Persistent Systems Interview Experiences

Popular Designations

596 interviews found

Lead Engineer Interview Questions & Answers

user image Anonymous

posted on 25 Jun 2024

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

(3 Questions)

  • Q1. Solid Principle
  • Q2. Some scenario based question
  • Q3. String palindrom program
Round 2 - Technical 

(2 Questions)

  • Q1. Agile methodology
  • Q2. Project based question

Top Persistent Systems Lead Engineer Interview Questions and Answers

Q1. What is the default connection pooling in Spring Boot, and how can it be customized?
View answer (1)

Lead Engineer Interview Questions asked at other Companies

Q1. What is the resistance value of tripping & closing coil of vcb?
View answer (8)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

You need to be very sharp. The question can be based on any DSA topic.

Round 2 - Technical 

(5 Questions)

  • Q1. The question will be related to your technology that you mention in your resume.
  • Q2. First question was related to tree.
  • Q3. It can be related to database.
  • Q4. Software engineering
  • Q5. Programming language

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 (196)
Persistent Systems Interview Questions and Answers for Freshers
illustration image
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Coding test was mainly based on some easy level leetcode questions

Round 2 - Technical 

(1 Question)

  • Q1. Technical was sql quesries , few questions around linkedlist, few around graphs and trees

Top Persistent Systems Senior Software Engineer Interview Questions and Answers

Q1. K Largest Elements Problem Statement You are given an integer k and an array of integers that contain numbers in random order. Write a program to find the k largest numbers from the given array. You need to save them in an array and return ... read more
View answer (1)

Senior Software Engineer Interview Questions asked at other Companies

Q1. K Largest Elements Problem Statement You are given an integer k and an array of integers that contain numbers in random order. Write a program to find the k largest numbers from the given array. You need to save them in an array and return ... read more
View answer (1)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Sql questions were asked
  • Q2. Project questions were asked

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 (196)

Persistent Systems interview questions for popular designations

 Software Engineer

 (126)

 Senior Software Engineer

 (36)

 Software Developer

 (35)

 Lead Engineer

 (31)

 Lead Software Engineer

 (30)

 Project Lead

 (19)

 Java Developer

 (14)

 Salesforce Developer

 (11)

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

(1 Question)

  • Q1. Java Coding questions
Round 2 - Technical 

(1 Question)

  • Q1. Java coding questions related to Array and strings

Senior Automation Engineer Interview Questions asked at other Companies

Q1. 1. Print numbers from 1 to 100 without using any loop ? 2. How do you take out duplicate values from array without using any set ? if you iterate the array and take out unique values , how do you do it for 2lakh items in less time? 3. Diffe... read more
View answer (1)

Get interview-ready with Top Persistent Systems Interview Questions

Senior Java Developer Interview Questions & Answers

user image Bazegha Tabassum

posted on 27 Aug 2024

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-

I was interviewed in Jul 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Find the longest substring without repeating characters
  • Ans. 

    Find the longest substring without repeating characters in a given string.

    • Use a sliding window approach to iterate through the string and keep track of the characters seen so far.

    • Update the start index of the window when a repeating character is encountered.

    • Keep track of the longest substring length and characters seen in a hashmap.

  • Answered by AI
  • Q2. Given a time array, check if the user can attend all meeting. Array had pairs - start time and end time

Skills evaluated in this interview

Senior Java Developer Interview Questions asked at other Companies

Q1. Remove the Kth Node from the End of a Linked List You are given a singly Linked List with 'N' nodes containing integer data and an integer 'K'. Your task is to delete the Kth node from the end of this Linked List. Input: The first line of ... read more
View answer (1)

Jobs at Persistent Systems

View all

Senior Developer Interview Questions & Answers

user image Abbas Kather Meeran

posted on 17 Nov 2024

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

Medium algos
Micro services questions
Java questions

Senior Developer Interview Questions asked at other Companies

Q1. What is your current CTC and what is your expected CTC?
View answer (1)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

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

Round 1 - Technical 

(3 Questions)

  • Q1. What is difference between List and Tuple in python?
  • Ans. 

    List is mutable, Tuple is immutable in Python.

    • List can be modified after creation, Tuple cannot be modified.

    • List uses square brackets [], Tuple uses parentheses ().

    • List is used for collections of items that may need to be changed, Tuple is used for collections of items that should not change.

    • Example: list_example = [1, 2, 3], tuple_example = (4, 5, 6)

  • Answered by AI
  • Q2. Get min and max from a list without using function
  • Ans. 

    Find min and max from a list without using function

    • Iterate through the list and compare each element with current min and max values

    • Update min and max values accordingly

  • Answered by AI
  • Q3. Explain iterator, generator and lambdas
  • Ans. 

    Iterators are objects that allow iteration over a sequence, generators are functions that yield values one at a time, and lambdas are anonymous functions.

    • Iterators are objects that implement the iterator protocol, with methods like __iter__() and __next__().

    • Generators are functions that use the yield keyword to return values one at a time, pausing execution between each yield.

    • Lambdas are anonymous functions defined usi...

  • Answered by AI

Skills evaluated in this interview

Senior Python Developer Interview Questions asked at other Companies

Q1. Update tuple in list of tuples ? can we update? How about tuple of lists
View answer (3)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. How to enable data factory
  • Ans. 

    To enable data factory, you need to create a data factory resource in Azure and configure it with linked services, datasets, and pipelines.

    • Create a data factory resource in Azure portal

    • Configure linked services to connect to data sources and destinations

    • Define datasets to represent the data you want to process

    • Create pipelines to orchestrate the movement and transformation of data

    • Monitor and manage the data factory usin

  • Answered by AI
  • Q2. How to disable data factory
  • Ans. 

    To disable data factory, you can stop or delete the data factory resources.

    • Stop or delete the data factory pipelines and triggers

    • Deallocate or delete the data factory linked services

    • Disable or delete the data factory datasets and data flows

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. Ggtgvhlkhgyubjojghhjj
  • Q2. Hgfgjkingyhyujiokknjjjj
Round 3 - HR 

(2 Questions)

  • Q1. Salary discussand discussion
  • Q2. How much your expecting

Skills evaluated in this interview

Project Engineer Interview Questions asked at other Companies

Q1. Triangle Star Pattern Task Your task is to print a triangle pattern using stars (*) for a given integer N, which represents the number of rows. Input: Integer N (Total number of rows) Output: The triangle pattern printed over N lines Exampl... read more
View answer (11)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Mar 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

It was Aptitude+Coding test for the fundamentals of Computers related topics such as CN,OS,SDLC,OOPS,DBMS,etc

Round 2 - Technical 

(1 Question)

  • Q1. It is technical1 and basically it was depends on your working technology such as python(MY ONE),OOPS concepts ,SQL as well as basic coding in data structures like Linked list,Searching techniques and too m...
Round 3 - Technical 

(1 Question)

  • Q1. It is technical2 and precisely on Some HR as well as project oriented questions to check our programming skills application in real-life.
Round 4 - HR 

(1 Question)

  • Q1. Tell me about yourself? Tell me your hobbies? Why we choose you? Why persistent?

Interview Preparation Tips

Topics to prepare for Persistent Systems Software Engineer interview:
  • Computer Networking
  • Python
  • DSA
  • OS
  • SDLC
Interview preparation tips for other job seekers - Do more basics and be honest.

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 (196)
Contribute & help others!
anonymous
You can choose to be anonymous

Persistent Systems Interview FAQs

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

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

  1. What is nodejs and difference between nodejs and javascr...read more
  2. Java 8 features, disadvantages of microservices, difference between RDBMS and N...read more
  3. 7. what is public and private IP. how are they differ...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.

Recently Viewed

PHOTOS

InsuranceDekho

3 office photos

LIST OF COMPANIES

Credit Bajaar

Overview

DESIGNATION

DESIGNATION

DESIGNATION

JOBS

Tech Mahindra

No Jobs

JOBS

TELUS Digital

No Jobs

INTERVIEWS

Punjab National Bank

No Interviews

DESIGNATION

Tell us how to improve this page.

Persistent Systems Interview Process

based on 541 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

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.5k 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
 • 2.9k Interviews
DXC Technology Interview Questions
3.7
 • 795 Interviews
Mphasis Interview Questions
3.4
 • 790 Interviews
Cyient Interview Questions
3.6
 • 283 Interviews
View all

Persistent Systems Reviews and Ratings

based on 3.9k 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.2

Work satisfaction

Explore 3.9k Reviews and Ratings
Qliksense Developer

Hyderabad / Secunderabad,

Pune

+1

4-8 Yrs

Not Disclosed

Network Security Engineer

Bangalore / Bengaluru

6-8 Yrs

Not Disclosed

Tableau Developer

Mumbai,

Pune

+1

4-8 Yrs

Not Disclosed

Explore more jobs
Software Engineer
4.4k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
3.9k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Lead Engineer
3.2k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Lead Software Engineer
3k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Project Lead
1.9k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Persistent Systems with

Cognizant

3.7
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