HSBC Group
Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards
Filter interviews by
Config server configuration steps
Install and set up the config server software
Configure the server with the necessary properties and settings
Define the repository for storing configuration files
Create and manage configuration files
Ensure proper security measures are in place
Test and validate the configuration
Monitor and maintain the config server
Patch mapping in Spring REST is used to partially update resources.
Patch mapping allows clients to send only the fields that need to be updated instead of sending the entire resource.
It is useful when updating large resources or when clients have limited bandwidth.
Spring provides the @PatchMapping annotation to handle patch requests.
The @PatchMapping annotation can be used with a specific URL or with a wildcard URL pat...
Bubble Sort is a simple sorting algorithm that repeatedly steps through the list, compares adjacent elements and swaps them if they are in the wrong order.
Bubble Sort works by repeatedly swapping adjacent elements if they are in the wrong order.
It is called Bubble Sort because smaller elements 'bubble' to the top of the list.
The algorithm continues until the entire list is sorted.
Bubble Sort has a time complexity of O(...
A program to convert a given number into words.
Create a function that takes a number as input
Use conditional statements to check the number's value and convert it into words
Break down the number into its individual digits and convert each digit into words
Combine the words for each digit to form the final word representation of the number
Strengths: Analytical thinking, attention to detail, quick learner. Weaknesses: Impatience, perfectionism, public speaking.
Strengths: Analytical thinking - able to break down complex problems, attention to detail - ensures accuracy in work, quick learner - able to adapt to new technologies quickly
Weaknesses: Impatience - may rush through tasks, perfectionism - may spend too much time on minor details, public speaking -...
Bubble Sort is a simple sorting algorithm that repeatedly steps through the list, compares adjacent elements and swaps them if they are in the wrong order.
Bubble Sort compares adjacent elements and swaps them if they are in the wrong order.
It continues this process until the entire list is sorted.
It is called Bubble Sort because smaller elements 'bubble' to the top of the list.
Bubble Sort has a time complexity of O(n^2...
A program to convert a given number into words.
Use a switch statement or if-else conditions to handle different cases
Break down the number into its individual digits and convert each digit into words
Handle special cases like numbers between 10 and 20
Consider adding a function to handle larger numbers with appropriate suffixes
posted on 10 Feb 2017
I appeared for an interview in Sep 2016.
I am a technology enthusiast with a strong background in analyzing and implementing innovative solutions.
Experienced in analyzing technology trends and identifying opportunities for improvement
Skilled in implementing software solutions to enhance business processes
Proficient in data analysis and problem-solving
Strong communication and teamwork skills
Certified in various technology platforms such as AWS and Microsoft Az
SDLC consists of several phases including planning, analysis, design, implementation, testing, deployment, and maintenance.
Planning: Defining project goals, scope, and requirements.
Analysis: Gathering and analyzing user requirements.
Design: Creating a detailed blueprint of the software solution.
Implementation: Writing code and developing the software.
Testing: Conducting various tests to ensure software quality.
Deployme...
I choose your company because of its reputation for innovation and commitment to employee growth.
Reputation for innovation in the technology industry
Commitment to employee growth and development
Positive reviews from current and former employees
Exciting projects and opportunities for career advancement
Before joining the company, I will learn about the company culture, technology stack, project methodologies, and industry trends.
Research the company's culture, values, and work environment
Familiarize myself with the technology stack used by the company
Understand the project methodologies followed by the company
Stay updated on the latest trends and developments in the industry
posted on 27 Aug 2017
I appeared for an interview in Aug 2017.
I am a technology enthusiast with a background in computer science and a passion for analyzing and predicting tech trends.
Background in computer science
Passionate about analyzing tech trends
Keen interest in emerging technologies
Experience in data analysis and research
Strong problem-solving skills
I have worked on various projects including developing mobile applications, implementing cloud solutions, and analyzing data for business insights.
Developed a mobile application for tracking fitness goals using React Native
Implemented a cloud-based CRM system for a small business using Salesforce
Analyzed customer data to identify trends and improve marketing strategies
I plan to pursue a Master's degree in Data Science to enhance my analytical skills and stay updated with the latest technology trends.
Pursue a Master's degree in Data Science
Enhance analytical skills
Stay updated with technology trends
JP Morgan is a leading financial institution with a strong reputation for innovation and technology in the industry.
JP Morgan has a history of investing heavily in technology and innovation.
The company has a strong track record of developing cutting-edge solutions for financial services.
JP Morgan's commitment to technology and digital transformation aligns with my career goals and interests.
I appeared for an interview before Mar 2021.
Round duration - 60 minutes
Round difficulty - Easy
This was a technical round with questions on DSA and OOPS.
An AVL tree is a self-balancing binary search tree where the heights of the two child subtrees of any node differ by at most one.
AVL trees are named after their inventors Adelson-Velsky and Landis.
They are used to maintain sorted data and ensure efficient search, insertion, and deletion operations.
Balancing in AVL trees is achieved through rotations to maintain the height balance factor.
Example: Inserting elements 1, 2...
Binary Search halves the search space in each iteration, leading to a time complexity of O(Log n).
Binary Search divides the array into two halves and compares the target value with the middle element.
If the target value is less than the middle element, it searches in the left half; otherwise, it searches in the right half.
This process continues until the target value is found or the subarray size becomes 0.
Since each c...
Ninja has been tasked with implementing a priority queue using a heap data structure. However, he is currently busy preparing for a tournament and has requested yo...
Implement a priority queue using a heap data structure by completing the provided class functions.
Implement push(), pop(), getMaxElement(), and isEmpty() functions in the given class structure.
Use a heap data structure to maintain the priority queue.
Handle different types of queries (push, pop, getMaxElement, isEmpty) as per the given instructions.
Ensure the functions return the correct values based on the type of quer...
Given an integer 'N', continue summing its digits until the result is a single-digit number. Your task is to determine the final value of 'N' after applying this operation ...
Given an integer, sum its digits until a single-digit number is obtained. Determine the final single-digit integer.
Iteratively sum the digits of the integer until a single-digit number is obtained
Output the final single-digit integer for each test case
Handle multiple test cases efficiently
Ensure the final value is less than 10
HashMap is a collection of key-value pairs, while HashSet is a collection of unique elements.
HashMap allows duplicate values but keys must be unique
HashSet does not allow duplicate elements
HashMap uses key-value pairs for storing data, while HashSet only stores individual elements
Example: HashMap<String, Integer> map = new HashMap<>(); HashSet<String> set = new HashSet<>();
Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.
Abstract class can have constructors, fields, and methods, while interface cannot have any implementation.
A class can only extend one abstract class, but can implement multiple interfaces.
Abstract classes are used to define common characteristics of subclasses, while interfaces are used to define a contract fo...
Virtual destructors are needed to ensure proper cleanup of resources in derived classes when using polymorphism.
Virtual destructors are necessary to ensure that the destructor of the most derived class is called when deleting a base class pointer to a derived class object.
Without virtual destructors, only the base class destructor would be called, leading to memory leaks and resource leaks in the derived class.
Virtual ...
Round duration - 60 minutes
Round difficulty - Medium
This was a technical round with questions on OS and OOPS. A design question was also discussed.
Round Robin Algorithm is a CPU scheduling algorithm where each process is assigned a fixed time slice in a cyclic manner.
Each process is given a small unit of time to execute, called a time slice or quantum.
Once a process's time slice expires, it is moved to the end of the ready queue.
The scheduler then moves to the next process in the queue and allocates it the CPU for its time slice.
This continues until all processes...
Design a system for users to subscribe to topics and receive notifications for new messages.
Create a user profile where they can select topics of interest to subscribe to.
Implement a messaging system that sends notifications to users when new messages are posted related to their subscribed topics.
Allow users to manage their subscriptions and preferences easily.
Utilize a database to store user subscriptions and messages...
Memory allocation in recursion involves creating a new stack frame for each recursive call.
Each recursive call creates a new stack frame to store local variables and function parameters.
Memory is allocated on the stack for each stack frame, which can lead to stack overflow if too many recursive calls are made.
Once a recursive call returns, its stack frame is deallocated to free up memory.
Example: Factorial function rec...
Threads are needed to allow a program to perform multiple tasks concurrently, improving performance and responsiveness.
Threads allow for parallel execution of tasks, utilizing multiple CPU cores efficiently.
Threads can improve responsiveness in applications by handling multiple tasks simultaneously.
Threads are essential for implementing features like background processing, multitasking, and handling user input concurre...
Round duration - 45 minutes
Round difficulty - Easy
This was a group activity round.
Round duration - 30 minutes
Round difficulty - Easy
HR round with typical behavioral problems.
Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.
Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.
posted on 6 Nov 2019
I applied via Referral and was interviewed in May 2019. There were 3 interview rounds.
I applied via Referral and was interviewed before Jul 2021. There were 2 interview rounds.
based on 1 interview
Interview experience
Assistant Manager
2.6k
salaries
| ₹4.5 L/yr - ₹14.8 L/yr |
Manager
2.1k
salaries
| ₹8.3 L/yr - ₹28.1 L/yr |
Senior Software Engineer
1.6k
salaries
| ₹7.5 L/yr - ₹26 L/yr |
Assistant Vice President
1.5k
salaries
| ₹13.8 L/yr - ₹45 L/yr |
Software Engineer
1.4k
salaries
| ₹4.9 L/yr - ₹14.4 L/yr |
Wells Fargo
JPMorgan Chase & Co.
Cholamandalam Investment & Finance
Citicorp