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

Clear (1)

Persistent Systems Software Developer Interview Questions, Process, and Tips

Updated 22 Dec 2024

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
  • Q2. What is dependency Injection, how can we implement multiple interference?
  • Q3. What is Oopps? Concept of polmorphism.
View all 28 questions

Persistent Systems Software Developer Interview Experiences

35 interviews found

Interview experience
4
Good
Difficulty level
-
Process Duration
Less than 2 weeks
Result
-

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. What is dependency Injection, how can we implement multiple interference?
  • Ans. 

    Dependency Injection is a design pattern where components are given their dependencies rather than creating them internally.

    • Dependency Injection helps in making components more modular, testable, and reusable.

    • It can be implemented using constructor injection, setter injection, or interface injection.

    • Multiple inheritance can be implemented in languages like C++ using virtual inheritance to avoid the diamond problem.

  • Answered by AI
  • Q2. Define SOLID Principles
  • Ans. 

    SOLID principles are a set of five design principles that help make software designs more understandable, flexible, and maintainable.

    • Single Responsibility Principle (SRP) - A class should have only one reason to change.

    • Open/Closed Principle (OCP) - Software entities should be open for extension but closed for modification.

    • Liskov Substitution Principle (LSP) - Objects of a superclass should be replaceable with objects o...

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Hard
Process Duration
-
Result
-

I was interviewed in Jul 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Content negotiation
  • Q2. What is sql injection
  • Ans. 

    SQL injection is a type of cyber attack where malicious SQL code is inserted into input fields to manipulate a database.

    • SQL injection occurs when a user input is not properly sanitized and allows an attacker to execute malicious SQL commands.

    • It can lead to unauthorized access to sensitive data, data loss, and even complete server takeover.

    • Example: Entering ' OR '1'='1' into a login form to bypass authentication and gai

  • Answered by AI

Skills evaluated in this interview

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
Q5. Find Duplicate in Array Problem Statement You are provided with a ... read more
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Jan 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude test along with a code. This was online.

Round 2 - Technical 

(2 Questions)

  • Q1. There were two technical interviews.
  • Q2. They asked to basically explain the logic and write the code.
Round 3 - HR 

(1 Question)

  • Q1. They asked about achievements and certifications.

Interview Preparation Tips

Topics to prepare for Persistent Systems Software Developer interview:
  • Java
  • MySQL
  • Communication Skills
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Nov 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic java dsa question aptitude question

Round 2 - Coding Test 

2 String question were asked of medium level.

Round 3 - Technical 

(6 Questions)

  • Q1. Oops concept and programming
  • Q2. What is encapsulation
  • Ans. 

    Encapsulation is the concept of bundling data and methods that operate on the data into a single unit.

    • Encapsulation helps in hiding the internal state of an object and restricting access to it.

    • It allows for better control over the data by preventing direct access from outside the class.

    • Encapsulation also helps in achieving data abstraction, where the internal details are hidden and only the necessary information is exp...

  • Answered by AI
  • Q3. What is 1 nf 2nf
  • Ans. 

    1NF and 2NF are normalization forms in database design to reduce redundancy and improve data integrity.

    • 1NF (First Normal Form) ensures that each column in a table contains atomic values and there are no repeating groups.

    • 2NF (Second Normal Form) builds on 1NF by ensuring that all non-key attributes are fully functional dependent on the primary key.

    • For example, if we have a table 'Orders' with columns 'OrderID', 'Product...

  • Answered by AI
  • Q4. Write a program to demonstrate virtual function
  • Ans. 

    A program demonstrating virtual function in C++

    • Create a base class with a virtual function

    • Create derived classes that override the virtual function

    • Instantiate objects of derived classes and call the virtual function

  • Answered by AI
  • Q5. One question to convert 1nf to 2nf
  • Ans. 

    To convert 1NF to 2NF, identify partial dependencies and move them to separate tables.

    • Identify the primary key in the 1NF table

    • Identify any non-key attributes that are dependent on only part of the primary key

    • Move these attributes to a new table with a composite key including the partial key and the original primary key

  • Answered by AI
  • Q6. One table was given and we had to identify whats the state of normalization

Skills evaluated in this interview

Persistent Systems interview questions for designations

 Senior Software Developer

 (5)

 Junior Software Developer

 (1)

 Software Developer fresher

 (1)

 Developer

 (1)

 Software Engineer

 (126)

 Software Specialist

 (1)

 Senior Software

 (1)

 Java Developer

 (14)

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Coding Test 

It was on LLD with limited time to solve by client. It took more time then .

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare properly for system design lld problems from leetcode.

Get interview-ready with Top Persistent Systems Interview Questions

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

Their was online test followed by 2 personal interview rounds. Each interview round was 1 hour long and had dsa questions on hash map , heap , queue

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

(2 Questions)

  • Q1. What is OOPs, What are OOPs pillers?
  • Ans. 

    OOPs stands for Object-Oriented Programming. The pillars of OOPs are Inheritance, Encapsulation, Abstraction, and Polymorphism.

    • OOPs is a programming paradigm based on the concept of objects, which can contain data in the form of fields and code in the form of procedures.

    • The four pillars of OOPs are Inheritance, Encapsulation, Abstraction, and Polymorphism.

    • Inheritance allows a class to inherit properties and behavior fr...

  • Answered by AI
  • Q2. One basic Array question(traverse a array )
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Basic mysql queries
  • Q2. Oops concept basic

Interview Preparation Tips

Interview preparation tips for other job seekers - do prepare well
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Easy must know basic aptitude

Round 2 - Coding Test 

Medium must parctice dsa questions

Round 3 - Technical 

(1 Question)

  • Q1. Medium question must prcatice dsa question
Round 4 - HR 

(1 Question)

  • Q1. Easy basic shl round
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Campus Placement and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Aptitude test was there and also 2nd part is coding

Round 2 - One-on-one 

(1 Question)

  • Q1. Basic oops concept ,os,sql queries

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare well the basics
Contribute & help others!
anonymous
You can choose to be anonymous

Persistent Systems Interview FAQs

How many rounds are there in Persistent Systems Software Developer interview?
Persistent Systems interview process usually has 2 rounds. The most common rounds in the Persistent Systems interview process are Technical, Aptitude Test and Coding Test.
How to prepare for Persistent Systems Software Developer 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, Design Patterns, JSON, Python and Rest.
What are the top questions asked in Persistent Systems Software Developer interview?

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

  1. What is oop, Will sorting the list for finding two lowest elements in list be a...read more
  2. What is dependency Injection, how can we implement multiple interferen...read more
  3. What is Oopps? Concept of polmorphi...read more
How long is the Persistent Systems Software Developer interview process?

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

Recently Viewed

INTERVIEWS

Hyundai Motor India Limited

No Interviews

SALARIES

MediaTek India Technology

INTERVIEWS

Persistent Systems

No Interviews

INTERVIEWS

Capital Numbers Infotech

No Interviews

INTERVIEWS

CitiusTech

No Interviews

INTERVIEWS

Capgemini

No Interviews

INTERVIEWS

Accenture

No Interviews

INTERVIEWS

Synechron

No Interviews

INTERVIEWS

Mountblue Technologies

No Interviews

CAMPUS PLACEMENT

College of Technology, Pantnagar

Tell us how to improve this page.

Persistent Systems Software Developer Interview Process

based on 32 interviews

3 Interview rounds

  • Technical Round - 1
  • Technical Round - 2
  • Technical Round - 3
View more
Join Persistent Systems See Beyond, Rise Above
Persistent Systems Software Developer Salary
based on 754 salaries
₹3.4 L/yr - ₹13.3 L/yr
At par with the average Software Developer Salary in India
View more details

Persistent Systems Software Developer Reviews and Ratings

based on 97 reviews

3.4/5

Rating in categories

3.4

Skill development

3.5

Work-life balance

3.1

Salary

2.9

Job security

3.3

Company culture

3.0

Promotions

3.0

Work satisfaction

Explore 97 Reviews and Ratings
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
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent