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 Senior Java Developer Interview Questions and Answers

Updated 27 Aug 2024

Persistent Systems Senior Java Developer Interview Experiences

3 interviews found

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

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

(2 Questions)

  • Q1. Core Java, Spring boot
  • Q2. Kafka, java8 programs

Senior Java Developer Interview Questions Asked at Other Companies

asked in Amdocs
Q1. Remove the Kth Node from the End of a Linked List You are given a ... read more
asked in Amdocs
Q2. Intersection of Linked List Problem You are provided with two sin ... read more
asked in Amdocs
Q3. Merge Two Sorted Linked Lists Problem Statement You are provided ... read more
asked in Amdocs
Q4. LRU Cache Design Question Design a data structure for a Least Rec ... read more
Q5. When to use abstract class and when should we use interfaces in J ... read more
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Dec 2021. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Collections list set map , comparison of objects
  • Q2. Java 8 features stream functional I nterfaces

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared well on core concepts of java and basics on spring, security, database.

Interview questions from similar companies

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

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

Round 1 - Technical 

(3 Questions)

  • Q1. What are intermediate and terminal operations
  • Q2. Predefined functional interface
  • Q3. Ways to create Thread

Interview Preparation Tips

Interview preparation tips for other job seekers - It was moderate level of interview
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(5 Questions)

  • Q1. Comparable and comparator
  • Q2. Singleton class
  • Q3. Springboot questions were asked
  • Q4. Java class loader
  • Q5. Java 8 coding questions

Interview Preparation Tips

Topics to prepare for Coforge Senior Java Developer interview:
  • Java
  • Spring Boot
Interview preparation tips for other job seekers - Prepare well for java 8 coding questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I was interviewed in Sep 2024.

Round 1 - Assignment 

There were MCQ questions consists of different sections like Design Pattern,Java 8

Round 2 - Technical 

(2 Questions)

  • Q1. Questions related to Multithreading,Design patterns
  • Q2. Java coding questions
Round 3 - Technical 

(2 Questions)

  • Q1. Questions related to Multithreading
  • Q2. Java coding questions
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected
Round 1 - Technical 

(1 Question)

  • Q1. Java 8, exception handling for method overriding, collections basic on HashMap , hash set, blocking queue. Transient volatile

Interview Preparation Tips

Topics to prepare for Virtusa Consulting Services Senior Java Developer interview:
  • Java 8
  • exception handling
  • coding questions
Interview preparation tips for other job seekers - The 1st technical round was fine but the 2nd one was overwhelming since 4-5 people came to interview with cameras on so please be prepared.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(4 Questions)

  • Q1. What is Executer Service?
  • Ans. 

    ExecutorService is an interface in Java that provides a way to manage and control the execution of threads in a multithreaded environment.

    • It is part of the java.util.concurrent package.

    • It provides methods to submit tasks for execution, manage thread pools, and control the execution of tasks.

    • It allows for the execution of tasks asynchronously and provides features like scheduling, cancellation, and monitoring of tasks.

    • E...

  • Answered by AI
  • Q2. What is the use of JPA?
  • Ans. 

    JPA is a Java specification for mapping Java objects to relational databases.

    • JPA stands for Java Persistence API

    • It provides a way to map Java objects to database tables and vice versa

    • JPA simplifies the development of data access layer in Java applications

    • It supports object-relational mapping (ORM) and allows developers to work with entities, relationships, and queries in a more object-oriented way

  • Answered by AI
  • Q3. Explain about PreparedStatement
  • Ans. 

    PreparedStatement is used in Java to execute parameterized SQL queries to prevent SQL injection attacks.

    • PreparedStatement is a subinterface of Statement in Java.

    • It is used to execute parameterized SQL queries.

    • It helps prevent SQL injection attacks by automatically escaping special characters.

    • Example: PreparedStatement pstmt = connection.prepareStatement("SELECT * FROM users WHERE username = ?");

  • Answered by AI
  • Q4. Program to find the missing numbers from Array
  • Ans. 

    Program to find missing numbers from Array

    • Iterate through the array and store each number in a HashSet

    • Then iterate from 1 to the length of the array and check if each number exists in the HashSet

    • If a number is not found in the HashSet, it is a missing number

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Write a spring boot rest controller
  • Ans. 

    A Spring Boot REST controller is used to handle incoming HTTP requests and return appropriate responses.

    • Create a new Java class annotated with @RestController

    • Define request mapping annotations like @GetMapping, @PostMapping, @PutMapping, @DeleteMapping

    • Inject dependencies using @Autowired annotation

    • Return response using ResponseEntity or directly as method return value

  • Answered by AI
  • Q2. Write a code for get a reverse String having a comma separated value in java
  • Ans. 

    Code to reverse a comma separated string in Java

    • Split the input string by comma to get an array of strings

    • Iterate through the array in reverse order and append each element to a new string with a comma

    • Return the reversed comma separated string

  • Answered by AI

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Feb 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Java Springboot Microservices
Round 2 - Technical 

(1 Question)

  • Q1. Questions on Java spring AWS and Kafka
Round 3 - HR 

(1 Question)

  • Q1. Current salary? Expected salary?

Persistent Systems Interview FAQs

How many rounds are there in Persistent Systems Senior Java Developer interview?
Persistent Systems interview process usually has 1-2 rounds. The most common rounds in the Persistent Systems interview process are Technical and Resume Shortlist.
How to prepare for Persistent Systems Senior Java 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 Hibernate, Agile, J2Ee, JDBC and Java.
What are the top questions asked in Persistent Systems Senior Java Developer interview?

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

  1. Find the longest substring without repeating charact...read more
  2. Given a time array, check if the user can attend all meeting. Array had pairs -...read more
  3. Collections list set map , comparison of obje...read more

Tell us how to improve this page.

Persistent Systems Senior Java Developer Interview Process

based on 3 interviews

Interview experience

3.3
  
Average
View more
Join Persistent Systems See Beyond, Rise Above
Persistent Systems Senior Java Developer Salary
based on 24 salaries
₹6.9 L/yr - ₹20 L/yr
19% less than the average Senior Java Developer Salary in India
View more details

Persistent Systems Senior Java Developer Reviews and Ratings

based on 3 reviews

2.6/5

Rating in categories

2.1

Skill development

2.1

Work-life balance

2.1

Salary

1.6

Job security

2.6

Company culture

1.6

Promotions

1.6

Work satisfaction

Explore 3 Reviews and Ratings
Software Engineer
4.4k salaries
unlock blur

₹2.5 L/yr - ₹9.5 L/yr

Senior Software Engineer
3.8k salaries
unlock blur

₹5 L/yr - ₹13 L/yr

Lead Engineer
3k salaries
unlock blur

₹9.8 L/yr - ₹30 L/yr

Lead Software Engineer
2.9k salaries
unlock blur

₹7.2 L/yr - ₹18.4 L/yr

Project Lead
1.8k salaries
unlock blur

₹13.2 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