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.
Top trending discussions
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 ...
posted on 8 Apr 2021
posted on 19 May 2022
I appeared for an interview before May 2021.
Round duration - 60 Minutes
Round difficulty - Easy
Given a binary tree with 'N' nodes, your task is to print the nodes in spiral order traversal.
The binary tree is represented i...
Print nodes of a binary tree in spiral order traversal.
Use a queue to perform level order traversal of the binary tree.
Alternate between printing nodes from left to right and right to left at each level.
Handle null nodes represented by '-1' appropriately.
Example: For input '1 2 3 -1 -1 4 5 -1 -1 -1 -1', the output should be '1 3 2 4 5'.
Round duration - 60 Minutes
Round difficulty - Easy
You are given a list of N
strings called A
. Your task is to determine whether you can form a given target string by combining one or more strings from A
.
The strings from A
c...
Given a list of strings, determine if a target string can be formed by combining one or more strings from the list.
Iterate through all possible combinations of strings from the list to form the target string.
Use recursion to try different combinations of strings.
Check if the current combination forms the target string.
Return true if a valid combination is found, otherwise return false.
Round duration - 60 Minutes
Round difficulty - Easy
Design an elevator system for efficient vertical transportation.
Divide building into zones to optimize elevator usage.
Implement algorithms for efficient elevator scheduling.
Include safety features like emergency stop buttons and overload sensors.
Consider user interface for passengers to select floors and monitor elevator status.
Tip 1 : Never give up
Tip 2 : Practice
Tip 3 : Be positive
Tip 1 : Keep it short
Tip 2 : Highlight skills and achievements
posted on 4 Mar 2021
Learning programming languages is important for software engineers to effectively communicate with computers and develop software solutions.
Programming languages are the foundation of software development.
Learning multiple languages expands the range of problems a software engineer can solve.
Different languages have different strengths and are suited for different tasks.
Knowing multiple languages improves adaptability ...
I applied via Naukri.com and was interviewed in Apr 2020. There were 5 interview rounds.
I applied via Company Website and was interviewed before Jun 2020. There were 5 interview rounds.
I applied via Approached by Company and was interviewed before Jun 2021. There were 2 interview rounds.
Frameworks provide structure and pre-built components for software development, but can also limit flexibility and require learning curve.
Advantage: Provides structure and pre-built components for faster development
Advantage: Can improve code quality and maintainability
Disadvantage: Can limit flexibility and customization
Disadvantage: Requires learning curve and potential dependency issues
Example: ReactJS provides a fr...
Oops stands for Object-Oriented Programming. It is a programming paradigm that uses objects to represent real-world entities.
Advantages: code reusability, modularity, encapsulation, inheritance, polymorphism
Disadvantages: complexity, steep learning curve, performance overhead
Example: creating a class 'Car' with properties like 'make', 'model', and 'year', and methods like 'start_engine' and 'stop_engine'
I applied via Naukri.com and was interviewed before Oct 2019. There was 1 interview round.
Software Engineer
330
salaries
| ₹4.9 L/yr - ₹16.7 L/yr |
Senior Software Engineer
325
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