i
Finastra
Filter interviews by
I appeared for an interview before Jun 2016.
Deadlock is a situation where two or more processes are unable to proceed because each is waiting for the other to release a resource.
Deadlock occurs when two or more processes are stuck in a circular dependency, where each process is waiting for a resource held by another process.
It can happen in multi-threaded or multi-process environments.
Deadlock can be caused by resource contention, improper synchronization, or pr...
Performance testing focuses on evaluating the speed, responsiveness, and stability of a system, while performance engineering involves designing and optimizing the system for optimal performance.
Performance testing is the process of testing the performance characteristics of a system under specific conditions.
Performance engineering is the proactive approach of designing, building, and optimizing a system for optimal p...
Memory leak is a software issue where allocated memory is not released, leading to memory consumption and performance degradation.
Memory leak occurs when a program fails to deallocate memory that is no longer needed.
It can happen due to programming errors like not freeing allocated memory or losing references to it.
Memory leaks can cause the program to consume excessive memory, leading to performance issues and crashes...
Performance bottleneck can occur in various areas of an application.
Database queries and indexing
Network latency and bandwidth
CPU and memory usage
Code inefficiencies and poor algorithms
Third-party integrations
Hardware limitations
User load and concurrency
Application architecture
Caching and session management
Security measures
External factors such as weather or power outages
CPU bottleneck can be handled by optimizing code, upgrading hardware, and load balancing.
Identify the root cause of the CPU bottleneck through performance monitoring tools.
Optimize the code by identifying and fixing inefficient algorithms or resource-intensive operations.
Upgrade hardware by adding more powerful CPUs or increasing the number of cores.
Implement load balancing techniques to distribute the workload across ...
JVM is a virtual machine that executes Java bytecode. It manages memory, provides runtime environment, and enables platform independence.
JVM stands for Java Virtual Machine.
It is responsible for interpreting and executing Java bytecode.
JVM manages memory allocation and garbage collection.
It provides a runtime environment for Java applications.
JVM enables platform independence by abstracting the underlying hardware and ...
Load balancing is the process of distributing network traffic across multiple servers to optimize performance and prevent overload.
Load balancing improves scalability and availability of applications.
It ensures that no single server is overwhelmed with traffic.
Load balancers can use various algorithms to distribute traffic, such as round-robin, least connections, or IP hash.
Examples of load balancing technologies inclu...
Performance engineering is the process of designing, implementing, and optimizing systems to meet performance requirements.
Performance engineering involves analyzing and understanding performance requirements
It includes designing and implementing systems to meet those requirements
Optimizing systems through load testing, stress testing, and performance tuning
Performance engineering also involves monitoring and analyzing...
Yes
During load testing of a web application, memory usage gradually increased over time
Identified the memory leak by monitoring memory consumption using performance testing tools
Investigated the code and found a section where objects were not being properly released
Fixed the memory leak by implementing proper object disposal and memory management techniques
One innovation idea I came up with is implementing AI-driven performance testing tools.
Developing machine learning algorithms to predict performance bottlenecks
Utilizing natural language processing for test script generation
Implementing self-learning capabilities to optimize test scenarios
I can join within 2 weeks of receiving an offer.
I can start within 2 weeks of receiving an offer.
I need to give notice to my current employer.
I may need time to relocate if necessary.
My expected CTC is negotiable based on the job responsibilities, company size, and industry standards.
My expected CTC is based on my experience, skills, and qualifications.
I have researched the market rates for Performance Testers in similar roles and industries.
I am open to discussing the compensation package and benefits offered by the company.
I believe in a fair and competitive salary that aligns with my expertise a...
I want to join Misys because of their reputation for innovation and their commitment to excellence in the field of performance testing.
Misys is known for their cutting-edge technology and solutions in the financial services industry
I am impressed by Misys' track record of delivering high-quality products and services to their clients
I believe that Misys offers a great opportunity for professional growth and development
I can join within 2 weeks of receiving an offer.
I can start within 2 weeks of receiving an offer.
My current notice period is 2 weeks.
I am available to start immediately.
I appeared for an interview in Sep 2024.
C programming and java
Advanced coding on c
I chose this company because of its innovative projects, strong company culture, and opportunities for growth.
Innovative projects that challenge me and allow me to learn new skills
Strong company culture that values teamwork and collaboration
Opportunities for growth and advancement within the company
My aim is to continuously improve my technical skills, contribute to innovative projects, and eventually become a technical leader in the field.
Continuous learning and skill development
Contribution to innovative projects
Becoming a technical leader in the field
I applied via Approached by Company
Sort the arr, fetch element from array
Sorting in a linked list involves rearranging the elements in ascending or descending order based on a certain criteria.
Use a sorting algorithm like bubble sort, selection sort, or merge sort to rearrange the elements in the linked list.
Traverse the linked list and compare each element with the next one to determine the order in which they should be sorted.
Update the pointers of the nodes in the linked list to reflect ...
Calculate the number of children and grandchildren
Count the number of direct children of a person
Count the number of grandchildren of a person
Use recursion to count all descendants
Consider only living descendants
Exclude step-children and adopted children
I applied via Campus Placement and was interviewed in Jun 2021. There was 1 interview round.
Partition even and odd numbers in an array
Iterate through the array and check if each number is even or odd
Create two separate arrays for even and odd numbers
Combine the two arrays to get the final partitioned array
Find leaders in an array of strings
Leaders are elements that are greater than all elements to their right
Traverse array from right to left and keep track of maximum element
Add maximum element to result if it is a leader
I appeared for an interview before May 2021.
Round duration - 90 minutes
Round difficulty - Medium
Given 'N' students standing in a row with specific heights, your task is to find the length of the longest strictly increasing subsequence of their heights...
Find the length of the longest strictly increasing subsequence of heights of students in a row.
Iterate through the heights array and for each element, find the length of the longest increasing subsequence ending at that element.
Use dynamic programming to keep track of the longest increasing subsequence length for each element.
Return the maximum length found as the result.
You are given the start and end times of 'N' intervals. Write a function to determine if any two intervals overlap.
If an interval ends at time T and anothe...
Given start and end times of intervals, determine if any two intervals overlap.
Iterate through intervals and check if any two intervals overlap by comparing their start and end times
Sort intervals based on start times for efficient comparison
Consider edge cases where intervals end and start at the same time
Various SQL queries related to data manipulation and retrieval were asked during the interview.
Basic SELECT queries to retrieve data from a single table
JOIN queries to retrieve data from multiple tables based on a common column
Aggregate functions like COUNT, SUM, AVG, etc. to perform calculations on data
Subqueries to retrieve data based on the result of another query
UPDATE queries to modify existing data in a table
DELE...
Round duration - 60 Minutes
Round difficulty - Medium
Given a string STR
of size N
and an integer M
representing the number of rows in the zig-zag pattern, return the string formed by concatenating all rows when the string ST...
Arrange a string in zig-zag pattern with given number of rows and concatenate the rows.
Iterate through the string and distribute characters to rows based on zig-zag pattern
Concatenate the characters in each row to get the final result
Handle edge cases like when number of rows is 1 or equal to the length of the string
You are given a permutation of 'N' integers. A sequence of 'N' integers is considered a permutation if it includes all integers from 1 to 'N' exactly once. Your task is ...
The task is to rearrange a given permutation of 'N' integers to form the lexicographically next greater permutation.
Iterate from right to left to find the first element that is smaller than the element to its right.
Swap this element with the smallest element to its right that is greater than it.
Reverse the elements to the right of the swapped element to get the lexicographically next greater permutation.
Round duration - 60 Minutes
Round difficulty - Medium
Given a string S, your task is to recursively remove all consecutive duplicate characters from the string.
String S
Output string
Recursively remove consecutive duplicate characters from a string.
Use recursion to check if the current character is the same as the next character, if so skip the next character
Base case: if the string is empty or has only one character, return the string
Example: Input: 'aaabcc', Output: 'abc'
Given an input string 'S', you are tasked with finding and returning all possible permutations of the input string.
The first and only line of input ...
Return all possible permutations of a given input string.
Use recursion to generate all possible permutations of the input string.
Swap characters at different positions to generate permutations.
Handle duplicate characters in the input string by using a set to store unique permutations.
Round duration - 60 Minutes
Round difficulty - Medium
Design an e-commerce website similar to Flipkart or Amazon.
Implement user-friendly interface for easy navigation
Include search functionality with filters for products
Incorporate secure payment gateway for transactions
Provide personalized recommendations based on user behavior
Include customer reviews and ratings for products
Implement order tracking and delivery status updates
Offer various payment options like credit/deb
Tip 1 : Prepare DSA well. Standard Leetcode-type questions will be asked.
Tip 2 : You should be crystal clear about your project/s as any question would be asked and you should be able to answer it.
Tip 3 : Prepare CS fundaments like OS, OOPs, DBMS, etc.
Tip 1 : Clearly mention the tech. stack you have worked on in the project/s
Tip 2 : As a fresher, you should add your coding profiles on CodeChef, Codeforces, etc. so as to make the resume shortlisting easy
C++ program to reverse a string
Use a loop to iterate through the string
Swap the characters at the beginning and end of the string
Continue swapping until the middle of the string is reached
I applied via Naukri.com and was interviewed in Apr 2021. There was 1 interview round.
I appeared for an interview before Sep 2020.
Round duration - 90 minutes
Round difficulty - Medium
It was Technical + Aptitude MCQ round.The technical section consisted if MCQ related to DSA,OS,DBMS.The aptitude section consisted of questions related to basic mathematics.
Prateek is a kindergarten teacher with a mission to distribute candies to students based on their performance. Each student must get at least one candy, and if two s...
The task is to distribute candies to students based on their performance while minimizing the total candies distributed.
Create an array to store the minimum candies required for each student.
Iterate through the students' ratings array to determine the minimum candies needed based on the given criteria.
Consider the ratings of adjacent students to decide the number of candies to distribute.
Calculate the total candies req...
Round duration - 30 minutes
Round difficulty - Medium
It was a technical interview testing the basic skills of OS and DBMS of candidates along with few project discussions from your CV.
List of 15 Linux commands with their functions
ls - list directory contents
pwd - print working directory
cd - change directory
mkdir - make a new directory
rm - remove files or directories
cp - copy files and directories
mv - move or rename files and directories
grep - search for patterns in files
chmod - change file permissions
ps - display information about running processes
top - display and update sorted information about pr...
DDL is used to define the structure of database objects, while DML is used to manipulate data within those objects.
DDL includes commands like CREATE, ALTER, DROP to define database objects like tables, indexes, etc.
DML includes commands like INSERT, UPDATE, DELETE to manipulate data within tables.
Example of DDL: CREATE TABLE employees (id INT, name VARCHAR(50));
Example of DML: INSERT INTO employees VALUES (1, 'John Doe
Tip 1 : Be clear about the concepts of Linux and shell scripting.
Tip 2 : Learn about the basics of Data structures and Algorithm.
Tip 3 : Be prepared to explain your projects mentioned in your CV.
Tip 1 : Use professional Keywords in your resume.
Tip 2 : Don't mention anything you are not confident in.
Software Engineer
332
salaries
| ₹4.9 L/yr - ₹16.7 L/yr |
Senior Software Engineer
324
salaries
| ₹9 L/yr - ₹30 L/yr |
Associate Software Engineer
165
salaries
| ₹5 L/yr - ₹10 L/yr |
QA Engineer
88
salaries
| ₹5.5 L/yr - ₹11.5 L/yr |
Senior QA Engineer
86
salaries
| ₹7.2 L/yr - ₹24.4 L/yr |
24/7 Customer
Microsoft Corporation
SAP
Thomson Reuters