i
Persistent
Systems
Work with us
Filter interviews by
As a Senior Executive, I oversee strategic initiatives, drive operational efficiency, and lead cross-functional teams to achieve organizational goals.
Develop and implement strategic plans to align with company vision and objectives.
Lead cross-functional teams to enhance collaboration and drive project success, such as launching a new product line.
Monitor key performance indicators (KPIs) to assess organizational p...
Microservices are a software architecture style that structures applications as a collection of loosely coupled services.
Microservices are independently deployable services that communicate over a network.
Each microservice focuses on a specific business capability, e.g., user authentication or payment processing.
They often use lightweight protocols like HTTP/REST or messaging queues for inter-service communication...
Spring Boot uses various annotations to simplify configuration and enhance functionality in Java applications.
@SpringBootApplication: Combines @Configuration, @EnableAutoConfiguration, and @ComponentScan.
@RestController: Indicates that the class is a controller where every method returns a domain object instead of a view.
@RequestMapping: Maps HTTP requests to handler methods of MVC and REST controllers.
@Autowired:...
I address attrition by fostering a positive work environment, enhancing employee engagement, and implementing retention strategies.
Conduct regular one-on-one meetings to understand employee concerns and career aspirations.
Implement employee recognition programs to celebrate achievements, such as 'Employee of the Month' awards.
Provide opportunities for professional development through training and workshops, like p...
Urgency refers to the speed of response needed, while priority indicates the importance of the issue in ITIL processes.
Urgency is about how quickly a resolution is needed; for example, a system outage may be urgent.
Priority is determined by the impact on the business; for instance, a critical application failure has high priority.
An urgent issue might not always be high priority; e.g., a minor bug affecting a non-...
KRA (Key Result Area) and KPI (Key Performance Indicator) are metrics used to evaluate performance and success in various roles.
KRA defines the specific areas where an employee is expected to achieve results, e.g., sales targets.
KPI measures the performance against the KRA, e.g., percentage of sales target achieved.
KRA is broader and focuses on outcomes, while KPI is specific and quantifiable.
Example of KRA: Custo...
ITIL is a framework for IT service management that aligns IT services with business needs.
ITIL stands for Information Technology Infrastructure Library.
It provides best practices for delivering IT services effectively.
The framework is divided into five stages: Service Strategy, Service Design, Service Transition, Service Operation, and Continual Service Improvement.
For example, in Service Design, organizations cre...
Using a map data structure can efficiently solve various problems by storing key-value pairs for quick access and manipulation.
Maps allow O(1) average time complexity for lookups, e.g., retrieving a user's profile by user ID.
They can handle duplicate keys by storing values in a list, e.g., mapping a student ID to multiple course enrollments.
Maps can be used to count occurrences, e.g., counting the frequency of wor...
JDK is a development kit, JRE is a runtime environment, and JVM is the virtual machine for executing Java bytecode.
JDK (Java Development Kit) includes tools for developing Java applications, such as compilers and debuggers.
JRE (Java Runtime Environment) provides the libraries and components necessary to run Java applications but does not include development tools.
JVM (Java Virtual Machine) is the engine that execu...
Method overloading allows multiple methods with the same name but different parameters; overriding replaces a method in a subclass.
Method Overloading: Same method name, different parameter types or counts. Example: 'add(int a, int b)' and 'add(double a, double b)'.
Method Overriding: Redefining a method in a subclass that already exists in the parent class. Example: 'void display()' in both parent and child.
Overloa...
I appeared for an interview in Feb 2025, where I was asked the following questions.
Functional testing verifies that software functions according to specified requirements and performs its intended tasks.
Identify requirements: Gather functional specifications and user stories to understand what the software should do.
Create test cases: Develop test cases that cover all functional aspects, such as input validation and user interactions.
Execute tests: Run the test cases on the application to ensure it b...
Writing test cases involves defining objectives, identifying requirements, and detailing steps for validation.
Understand the requirements: Gather functional and non-functional requirements from specifications.
Define test objectives: Clearly state what each test case aims to validate, e.g., 'Verify user login functionality.'
Identify test conditions: Determine the scenarios to be tested, such as 'Valid credentials' and '...
API testing involves validating the functionality, reliability, and performance of APIs using various status codes.
Use tools like Postman or SoapUI for manual testing and automation frameworks like RestAssured for automated tests.
Status code 200 indicates a successful request, e.g., retrieving user data.
Status code 201 means a resource was successfully created, e.g., adding a new user.
Status code 404 indicates that the...
I appeared for an interview in Jan 2025.
The Java Virtual Machine (JVM) is an abstract computing machine that enables a computer to run Java programs.
JVM is platform-independent and converts Java bytecode into machine code.
It consists of class loader, runtime data areas, execution engine, and native method interface.
JVM memory is divided into method area, heap, stack, and PC register.
Examples of JVM implementations include Oracle HotSpot, OpenJ9, and GraalVM.
The default connection pooling in Spring Boot is HikariCP, which can be customized through properties in the application.properties file.
HikariCP is the default connection pooling library in Spring Boot, known for its high performance and low overhead.
To customize the connection pooling, you can modify properties like 'spring.datasource.hikari.*' in the application.properties file.
For example, you can set maximum pool ...
Best practices for optimizing a Spring Boot application
Use Spring Boot Actuator to monitor and manage application performance
Implement caching mechanisms like Spring Cache to reduce database calls
Optimize database queries and indexes for better performance
Use asynchronous processing with Spring's @Async annotation for non-blocking operations
Profile and analyze application performance using tools like VisualVM or JProfi...
A heap dump is a snapshot of the memory usage of a Java application at a specific point in time.
Heap dumps can be generated using tools like jmap or VisualVM.
They provide detailed information about objects in memory, their sizes, and references.
Analyzing a heap dump can help identify memory leaks by pinpointing objects that are consuming excessive memory.
Common signs of memory leaks in a heap dump include a large numbe...
Diagonally iterate through and print elements of a 2D array of strings.
Use nested loops to iterate through rows and columns of the 2D array.
Calculate the diagonal elements by incrementing row and column indices together.
Print the elements as you iterate through the diagonal of the array.
I appeared for an interview in Feb 2025.
Flattening an array involves converting a multi-dimensional array into a single-dimensional array without using the flat method.
Use reduce: You can use the reduce method to iterate through the array and concatenate elements. Example: `arr.reduce((acc, val) => acc.concat(val), [])`.
Use recursion: Create a function that checks if an element is an array and flattens it recursively. Example: `function flatten(arr) { ret...
Implementing a counter in React without useState can be achieved using refs for mutable state management.
Using useRef: You can create a mutable reference using useRef to store the counter value, which persists across renders.
Example: const countRef = useRef(0); to initialize the counter.
Updating the Counter: Use a function to increment the value, e.g., countRef.current += 1; to update the counter.
Triggering Re-renders:...
Using Context API to manage API data in a React application.
Create a Context using React.createContext().
Build a Provider component that fetches data from an API.
Use useEffect to make the API call when the component mounts.
Store the fetched data in a state variable using useState.
Pass the data and any necessary functions through the Provider's value.
Consume the context in child components using useContext.
I applied via Walk-in and was interviewed in Nov 2024. There were 3 interview rounds.
It's walkin, so they conducted 1 technical mcqs round.
HashMap in Java is a data structure that stores key-value pairs and uses hashing to efficiently retrieve values based on keys.
HashMap uses an array of buckets to store key-value pairs.
Keys are hashed to determine the index in the array where the key-value pair will be stored.
In case of hash collisions, a linked list or a balanced tree is used to store multiple key-value pairs in the same bucket.
HashMap allows null keys...
Function to find and return all non-repeating characters in an array of strings.
Iterate through the array and count the occurrences of each character using a HashMap.
Then iterate through the array again and check if the count of each character is 1, if so add it to the result list.
Return the list of non-repeating characters.
To find the 3rd highest salary in a database, we can use a SQL query with the 'LIMIT' and 'OFFSET' keywords.
Use a SQL query with 'ORDER BY salary DESC' to sort the salaries in descending order.
Use 'LIMIT 1 OFFSET 2' to skip the first two highest salaries and retrieve the third highest salary.
Example: SELECT salary FROM employees ORDER BY salary DESC LIMIT 1 OFFSET 2;
A qualifier in Java is used to specify additional information about a primary, which is the main data type or variable.
A primary in Java is the main data type or variable, while a qualifier provides additional information about the primary.
Qualifiers can be used to modify the behavior or characteristics of a primary.
For example, in Java, 'final' is a qualifier that can be used to make a variable constant.
The main difference is that @RestController is a specialized version of @Controller that is used for RESTful web services.
Both @Controller and @RestController are used in Spring MVC to handle HTTP requests, but @RestController is specifically used for RESTful web services.
@Controller is used to create web pages, while @RestController is used to return data in JSON or XML format.
@RestController is a convenience annotati...
OOP concepts include inheritance, encapsulation, polymorphism, and abstraction.
Inheritance: Allows a class to inherit properties and behavior from another class. Example: class Dog extends Animal.
Encapsulation: Bundling data and methods that operate on the data into a single unit. Example: private variables with public getter and setter methods.
Polymorphism: Ability for objects to be treated as instances of their paren...
Microservices communicate with each other through various communication protocols like HTTP, messaging queues, and gRPC.
Microservices can communicate over HTTP using RESTful APIs.
Messaging queues like RabbitMQ or Kafka can be used for asynchronous communication between microservices.
gRPC is a high-performance, open-source RPC framework that can be used for communication between microservices.
Service discovery mechanism...
Microservice endpoints can be accessed using HTTP requests with the appropriate URL
Use HTTP methods like GET, POST, PUT, DELETE to interact with the microservice
Construct the URL with the base URL of the microservice and the specific endpoint path
Include any necessary headers or parameters in the request for authentication or data filtering
Microservices allow for modular, scalable, and flexible software development by breaking down applications into smaller, independent services.
Microservices enable easier maintenance and updates as each service can be developed, deployed, and scaled independently.
They improve fault isolation, as failures in one service do not necessarily affect the entire application.
Microservices promote agility and faster time-to-mark...
I applied via Naukri.com and was interviewed in Dec 2024. There were 3 interview rounds.
Use Java Streams to find pairs in an array that sum to 11.
Use IntStream.range to iterate through the array indices.
For each element, check if there's a complement (11 - current element) in the array.
Use a Set to store seen numbers for efficient lookup.
Example: For array [1, 10, 2, 9, 3, 8], pairs are (10, 1), (9, 2), (8, 3).
I appeared for an interview in Jan 2025.
In Linux shell scripting, use the -e flag to check if a file exists.
Use the command: if [ -e $filename ]; then echo 'File exists'; fi
The -e flag checks for the existence of a file or directory.
You can also use -f for regular files: if [ -f $filename ]; then echo 'Regular file exists'; fi
For directories, use -d: if [ -d $dirname ]; then echo 'Directory exists'; fi
This task involves removing a specified number of characters from a string based on asterisks indicating the count.
Identify the number of asterisks in the string to determine how many characters to remove.
Use string slicing to remove the specified characters from the original string.
Example: For 'Persis****', remove 4 characters to get 'Pe'.
Consider edge cases, such as when the number of asterisks exceeds the length of...
I applied via Naukri.com and was interviewed in Oct 2024. There were 2 interview rounds.
I approach difficult stakeholders with empathy, clear communication, and a focus on collaboration to find mutually beneficial solutions.
Listen actively to understand their concerns and motivations.
Establish common goals to align interests, e.g., improving product adoption.
Communicate transparently about project progress and challenges.
Use data and evidence to support decisions, e.g., user feedback or market research.
Bu...
A simple JOIN SQL query combines rows from two or more tables based on a related column.
JOIN is used to combine records from two tables based on a common field.
Example: SELECT * FROM Customers JOIN Orders ON Customers.CustomerID = Orders.CustomerID;
INNER JOIN returns records with matching values in both tables.
LEFT JOIN returns all records from the left table and matched records from the right table.
Example of LEFT JOI...
Business Analyst (BA) focuses on understanding business needs and requirements, while Product Owner (PO) focuses on defining and prioritizing product features.
BA analyzes business processes and systems to identify areas for improvement, while PO works closely with stakeholders to define product features and prioritize the product backlog.
BA typically works on multiple projects simultaneously, while PO is dedicated to a...
I appeared for an interview in Jan 2025.
A Java program to find and replace specified characters with corresponding numbers in an array of strings.
Iterate through each string in the array
Count the occurrences of specified characters
Replace the characters with corresponding numbers
Return the modified array of strings
Separate even and odd numbers in an array, placing even numbers on the right side and odd numbers on the left side.
Iterate through the array and check if each element is even or odd.
Create two separate arrays to store even and odd numbers.
Append even numbers to one array and odd numbers to another.
Finally, combine the two arrays with even numbers on the right and odd numbers on the left.
I applied via Naukri.com and was interviewed in Aug 2024. There were 2 interview rounds.
I am a Senior Data Engineer with experience in developing data pipelines and optimizing data storage for various projects.
Developed data pipelines using Apache Spark for real-time data processing
Optimized data storage using technologies like Hadoop and AWS S3
Worked on a project to analyze customer behavior and improve marketing strategies
My day-to-day job in the project involved designing and implementing data pipelines, optimizing data workflows, and collaborating with cross-functional teams.
Designing and implementing data pipelines to extract, transform, and load data from various sources
Optimizing data workflows to improve efficiency and performance
Collaborating with cross-functional teams including data scientists, analysts, and business stakeholde...
DAGs handle fault tolerance by rerunning failed tasks and maintaining task dependencies.
DAGs rerun failed tasks automatically to ensure completion.
DAGs maintain task dependencies to ensure proper sequencing.
DAGs can be configured to retry failed tasks a certain number of times before marking them as failed.
Shuffling is the process of redistributing data across partitions in a distributed computing environment.
Shuffling is necessary when data needs to be grouped or aggregated across different partitions.
It can be handled efficiently by minimizing the amount of data being shuffled and optimizing the partitioning strategy.
Techniques like partitioning, combiners, and reducers can help reduce the amount of shuffling in MapRed...
Repartition increases or decreases the number of partitions in a DataFrame, while Coalesce only decreases the number of partitions.
Repartition can increase or decrease the number of partitions in a DataFrame, leading to a shuffle of data across the cluster.
Coalesce only decreases the number of partitions in a DataFrame without performing a full shuffle, making it more efficient than repartition.
Repartition is typically...
Incremental data is handled by identifying new data since the last update and merging it with existing data.
Identify new data since last update
Merge new data with existing data
Update data warehouse or database with incremental changes
SCD stands for Slowly Changing Dimension, a concept in data warehousing to track changes in data over time.
SCD is used to maintain historical data in a data warehouse.
There are three types of SCD - Type 1, Type 2, and Type 3.
Type 1 SCD overwrites old data with new data.
Type 2 SCD creates a new record for each change, preserving history.
Type 3 SCD maintains both old and new values in the same record.
SCD is important for...
Reverse a string using SQL and Python codes.
In SQL, use the REVERSE function to reverse a string.
In Python, use slicing with a step of -1 to reverse a string.
Use Spark and SQL to find the top 5 countries with the highest population.
Use Spark to load the data and perform data processing.
Use SQL queries to group by country and sum the population.
Order the results in descending order and limit to top 5.
Example: SELECT country, SUM(population) AS total_population FROM table_name GROUP BY country ORDER BY total_population DESC LIMIT 5
To find different records for different joins using two tables
Use the SQL query to perform different joins like INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN
Identify the key columns in both tables to join on
Select the columns from both tables and use WHERE clause to filter out the different records
A catalyst optimizer is a query optimization tool used in Apache Spark to improve performance by generating an optimal query plan.
Catalyst optimizer is a rule-based query optimization framework in Apache Spark.
It leverages rules to transform the logical query plan into a more optimized physical plan.
The optimizer applies various optimization techniques like predicate pushdown, constant folding, and join reordering.
By o...
Used query optimization techniques to improve performance in database queries.
Utilized indexing to speed up search queries.
Implemented query caching to reduce redundant database calls.
Optimized SQL queries by restructuring joins and subqueries.
Utilized database partitioning to improve query performance.
Used query profiling tools to identify and optimize slow queries.
Merging two schemas in PySpark involves combining DataFrames with different structures into a unified format.
Use the `unionByName()` method to merge DataFrames with different column names.
Example: df1.unionByName(df2, allowMissingColumns=True) merges df1 and df2, filling missing columns with nulls.
For schema evolution, use `mergeSchema` option when reading from Parquet files.
Example: spark.read.option('mergeSchema', 't...
Use the len() function to check the length of the data frame.
Use len() function to get the number of rows in the data frame.
If the length is 0, then the data frame is empty.
Example: if len(df) == 0: print('Data frame is empty')
Cores and worker nodes are decided based on the workload requirements and scalability needs of the data processing system.
Consider the size and complexity of the data being processed
Evaluate the processing speed and memory requirements of the tasks
Take into account the parallelism and concurrency needed for efficient data processing
Monitor the system performance and adjust cores and worker nodes as needed
Enforcing schema ensures that data conforms to a predefined structure and rules.
Ensures data integrity by validating incoming data against predefined schema
Helps in maintaining consistency and accuracy of data
Prevents data corruption and errors in data processing
Can lead to rejection of data that does not adhere to the schema
I appeared for an interview in Jun 2025, where I was asked the following questions.
Experienced Project Manager with a focus on delivering complex projects on time and within budget while navigating various challenges.
Managing diverse teams: Coordinating efforts among team members with different skill sets and backgrounds can be challenging.
Stakeholder communication: Ensuring all stakeholders are aligned and informed can lead to conflicts if not handled properly.
Resource allocation: Balancing limited ...
I address attrition by fostering a positive work environment, enhancing employee engagement, and implementing retention strategies.
Conduct regular one-on-one meetings to understand employee concerns and career aspirations.
Implement employee recognition programs to celebrate achievements, such as 'Employee of the Month' awards.
Provide opportunities for professional development through training and workshops, like projec...
I applied via Recruitment Consulltant and was interviewed in Dec 2024. There was 1 interview round.
GitHub Actions automates workflows, while Octopus Deploy focuses on deployment automation, both integrating well with AWS.
GitHub Actions allows CI/CD workflows to be defined in YAML files within the repository.
Example: A workflow can be triggered on push events to build and test code automatically.
Octopus Deploy specializes in deployment automation, managing releases, and promoting them through environments.
Example: De...
Terraform daily tasks involve infrastructure provisioning, configuration management, and automation.
Creating and managing infrastructure using Terraform scripts
Updating and modifying existing infrastructure as needed
Automating deployment processes for applications
Implementing version control for Terraform configurations
Monitoring and troubleshooting Terraform deployments
What people are saying about Persistent Systems
Some of the top questions asked at the Persistent Systems interview -
The duration of Persistent Systems interview process can vary, but typically it takes about less than 2 weeks to complete.
based on 603 interview experiences
Difficulty level
Duration
based on 4.5k reviews
Rating in categories
Senior Software Engineer
4.7k
salaries
| ₹6.8 L/yr - ₹18.8 L/yr |
Software Engineer
4.6k
salaries
| ₹4.5 L/yr - ₹11.2 L/yr |
Lead Software Engineer
3.8k
salaries
| ₹9.2 L/yr - ₹17.5 L/yr |
Lead Engineer
3.6k
salaries
| ₹13.8 L/yr - ₹25.3 L/yr |
Project Lead
2.3k
salaries
| ₹21.4 L/yr - ₹36 L/yr |
Cognizant
TCS
IBM
LTIMindtree