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

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

(2 Questions)

  • Q1. What are Linux Components
  • Q2. What is DNS DHCP

Support Engineer Interview Questions asked at other Companies

Q1. How to handle escalations/ your approach to solve any issues/ why do you want to join support when already you are working on development
View answer (2)

Programmer Interview Questions & Answers

user image Anonymous

posted on 29 Nov 2024

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

(2 Questions)

  • Q1. What is constructor
  • Ans. 

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

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

    • They are used to initialize the object's state.

    • Constructors can have parameters to customize the initialization process.

    • Example: public class Person { public Person(String name) { this.name = name; } }

  • Answered by AI
  • Q2. What is OOPS concepts
  • Ans. 

    OOPS concepts refer to Object-Oriented Programming concepts which include classes, objects, inheritance, polymorphism, and encapsulation.

    • Classes: Blueprint for creating objects with attributes and methods.

    • Objects: Instances of classes that contain data and behavior.

    • Inheritance: Ability to create new classes based on existing classes.

    • Polymorphism: Ability to use a single interface for different data types.

    • Encapsulation:...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Great Experience

Skills evaluated in this interview

Programmer Interview Questions asked at other Companies

Q1. What are the differences between Micro,Mini and Mainframe Computers?
View answer (2)
Persistent Systems Interview Questions and Answers for Freshers
illustration image

Software Engineer Interview Questions & Answers

user image nl vinay kumar

posted on 10 Nov 2024

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

Aptitude and two questions were there

Round 2 - Technical 

(2 Questions)

  • Q1. Oops concepts and sql
  • Q2. Coding questions was asked to solve

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)
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. What are microservices
  • Ans. 

    Microservices are a software development technique where applications are composed of small, independent services that communicate with each other.

    • Microservices are small, independent services that focus on specific business functions.

    • Each microservice runs its own process and communicates with other services through APIs.

    • Microservices can be developed, deployed, and scaled independently.

    • Examples of companies using mic

  • Answered by AI
  • Q2. What is containerisation
  • Ans. 

    Containerisation is a method of packaging, distributing, and running applications in isolated environments called containers.

    • Containers are lightweight, portable, and efficient units that encapsulate an application and its dependencies.

    • They provide a consistent environment for applications to run across different platforms.

    • Popular containerization platforms include Docker and Kubernetes.

    • Containerisation helps in achiev...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Make sure you get the correct JD you applied for, they asked me for .Net role and took interview for azure.

Skills evaluated in this interview

Azure Developer Interview Questions asked at other Companies

Q1. What is API Management service ? Logic apps? Data bricks?
View answer (2)

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 - One-on-one 

(2 Questions)

  • Q1. Project Management
  • Q2. Technical abilities
Round 2 - One-on-one 

(2 Questions)

  • Q1. Communication skills
  • Q2. Presentation skills
Round 3 - Client Interview 

(2 Questions)

  • Q1. Experience in agile setup
  • Ans. 

    Extensive experience in agile setup with proven track record of successful project deliveries.

    • Led multiple agile teams in various projects

    • Implemented agile methodologies such as Scrum and Kanban

    • Facilitated daily stand-up meetings, sprint planning, and retrospectives

    • Utilized tools like Jira and Trello for project management

    • Adapted quickly to changing requirements and priorities

  • Answered by AI
  • Q2. Experience working with multiple teams
Round 4 - HR 

(2 Questions)

  • Q1. Policy explanation
  • Q2. Expectations negotiations

Senior Technical Project Manager Interview Questions asked at other Companies

Q1. Have you worked on Request for Proposals (RFP) and Request for Information (RFI)? Do you have prior experience in building a technical team by organizing interviews?
View answer (1)

Get interview-ready with Top Persistent Systems Interview Questions

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Given an input string s ="aabbbcddbb". Write a java program to get output as a2b3c1d2b2
  • Ans. 

    Java program to count consecutive characters in a string

    • Iterate through the input string and compare each character with the next one

    • Use a StringBuilder to build the output string with character and count

    • Handle edge cases like empty string or single character input

  • Answered by AI
  • Q2. Find 3rd highest from a list using streams api.
  • Ans. 

    Use streams api to find 3rd highest number from a list.

    • Convert the list to a stream using list.stream()

    • Sort the stream in descending order using sorted(Comparator.reverseOrder())

    • Skip the first two elements using skip(2) and get the third element using findFirst().get()

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Write a Rest api to get employee details by employee id.
  • Ans. 

    A Rest api to get employee details by employee id

    • Create a GET endpoint with a path like '/employees/{employeeId}'

    • Retrieve employee details from a database using the employee id

    • Return the employee details in JSON format

  • Answered by AI
  • Q2. Exceptional handling?

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

Jobs at Persistent Systems

View all

Database Developer Interview Questions & Answers

user image Adarsh Chauhan

posted on 17 Oct 2024

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

(2 Questions)

  • Q1. Static and dynamic polymorphism
  • Q2. Code snipts related to prefix and postfix

Interview Preparation Tips

Interview preparation tips for other job seekers - language basics and intermediate level

Database Developer Interview Questions asked at other Companies

Q1. - Waterfall model - What is cursor in SQL - Normalization and denormalization - SDLC Lifecycle - Why we need SQL - Function and procedure in SQL - What are the main blocks of T-sql or Pl-sql - Column in left table is NULL and Column in righ... read more
View answer (1)

Business Analyst Interview Questions & Answers

user image Prathamesh Chavarkar

posted on 11 Oct 2024

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
-

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

Round 1 - Technical 

(2 Questions)

  • Q1. Use cases - Precondition and postcondition
  • Q2. Jira tool and explain
  • Ans. 

    Jira is a project management tool used for tracking and managing tasks, issues, and workflows.

    • Jira is commonly used in software development teams to track bugs, tasks, and user stories.

    • It allows for creating and assigning tasks, setting priorities, and tracking progress.

    • Jira integrates with other tools like Confluence and Bitbucket for seamless project management.

    • Users can create custom workflows, dashboards, and repor

  • Answered by AI

Business Analyst Interview Questions asked at other Companies

Q1. You have 10 boxes of balls (each ball weighing exactly10 gm) with one box with defective balls (each one of the defective balls weigh 9 gm). You are given an electronic weighing machine and only one chance at it. How will you find out which... read more
View answer (9)

Interview Questions & Answers

user image Indrani R

posted on 14 Jul 2024

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

I applied via Naukri.com and was interviewed in Jun 2024. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Asked to write framework for scenario and technical questions related to java selenium
Round 2 - Technical 

(1 Question)

  • Q1. Java and selenium, Health care domain knowledge and scenario based questions
Round 3 - Technical 

(1 Question)

  • Q1. Client round based on domain and work experience
Round 4 - HR 

(1 Question)

  • Q1. Introduction and experience related

Software Developer Interview Questions & Answers

user image Yashwant Patidar

posted on 15 Oct 2024

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

(2 Questions)

  • Q1. Oops concept and project details
  • Q2. Inheritance and Overriding and overloading

Top Persistent Systems Software Developer Interview Questions and Answers

Q1. What is oop, Will sorting the list for finding two lowest elements in list be an optimal solution, what are ACID properties
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)
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

JOBS

Tech Mahindra

No Jobs

JOBS

TELUS Digital

No Jobs

INTERVIEWS

Punjab National Bank

No Interviews

DESIGNATION

INTERVIEWS

Union Bank of India

No Interviews

JOBS

Atos

No Jobs

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