Filter interviews by
I applied via Naukri.com and was interviewed in Oct 2024. There was 1 interview round.
CLO bank debt refers to debt issued by collateralized loan obligations (CLOs) to finance leveraged loans.
CLO bank debt is a type of debt issued by CLOs, which are special purpose vehicles that invest in a diversified pool of loans.
The proceeds from CLO bank debt are used to finance leveraged loans, which are loans made to companies with high levels of debt.
CLO bank debt typically has a seniority ranking within the CLO ...
Restructure is the process of reorganizing a company's structure, operations, or finances to improve efficiency or adapt to changes.
Involves making changes to the organization's hierarchy, departments, or processes
May include downsizing, merging departments, or changing reporting relationships
Often done to cut costs, increase productivity, or respond to market changes
Bank debts refer to the money owed by a bank to its creditors, typically in the form of loans or bonds.
Bank debts are liabilities on a bank's balance sheet.
They can include loans taken from other financial institutions or individuals.
Bank debts can also include bonds issued by the bank to raise capital.
Failure to repay bank debts can lead to financial instability or bankruptcy.
Examples of bank debts include mortgages,
I appeared for an interview in Jan 2017.
I want to join Citi because of its global presence, strong reputation, and opportunities for growth.
Citi is a global company with a presence in over 100 countries, which provides an opportunity to work with diverse teams and gain international exposure.
Citi has a strong reputation in the financial industry, known for its expertise and innovative solutions.
Citi offers excellent career development opportunities, includin...
I am interested in a career in banking because of the opportunities for growth, the dynamic nature of the industry, and my passion for financial analysis.
Opportunities for growth: Banking offers a wide range of career paths and opportunities for advancement. I am excited about the potential to develop my skills and progress within the industry.
Dynamic nature of the industry: Banking is constantly evolving, with new tec...
The Indian economy has experienced mixed performance in the past 2 years.
GDP growth rate has fluctuated
Demonetization and GST implementation impacted the economy
Unemployment rate has been a concern
Inflation has remained relatively low
Foreign direct investment has increased
Agricultural sector faced challenges due to weather conditions
I appeared for an interview in Aug 2016.
Traffic lights use a set sequence of colors to control the flow of vehicles and pedestrians.
Traffic lights use red, yellow, and green lights to indicate when vehicles and pedestrians should stop, slow down, or go.
The sequence of colors is typically red, yellow, green, and then back to red.
Different traffic lights may have different timings for each color depending on the traffic flow and pedestrian activity.
Traffic lig...
The logic of elevator operation involves a system of sensors, controls, and algorithms to efficiently transport passengers between floors.
Elevators use sensors to detect the presence of passengers and determine their desired floor.
Controls process this information and calculate the most efficient route for the elevator to take.
Algorithms prioritize elevator assignments based on factors like proximity, floor traffic, an...
Wells Fargo is a reputable and established financial institution with a strong track record in the industry.
Wells Fargo has a long history dating back to 1852, making it one of the oldest and most established banks in the United States.
The company has a strong reputation for providing a wide range of financial services, including banking, investments, and insurance.
Wells Fargo has a large network of branches and ATMs, ...
I appeared for an interview before Mar 2021.
Round duration - 90 minutes
Round difficulty - Medium
There were 33 questions in total. The objective questions were simple.
Mary is an enthusiastic party-goer who struggles with remembering event dates. Help Mary by sorting a given list of event dates in an ascending order.
Sort a list of event dates in ascending order based on year, month, and day.
Sort the list of dates based on year, then month, and finally day.
Use a sorting algorithm to rearrange the dates in ascending order.
Ensure the constraints are met for each date in the list.
You are given an integer array 'ARR' of size 'N' and an integer 'S'. Your task is to find and return a list of all pairs of elements where each sum of a pair equals 'S'.
Given an array and a target sum, find all pairs of elements that add up to the target sum.
Iterate through the array and for each element, check if the complement (target sum - current element) exists in a hash set.
If the complement exists, add the pair to the result list.
Sort the pairs based on the first element and then the second element.
Handle edge cases like duplicate elements and pairs with the same values.
Example...
Given an integer N
, your task is to recursively break it into three integer parts: N / 2
, N / 3
, and N / 4
. You need to compute the maximum sum possible by dividing the numbe...
Given an integer N, recursively break it into three parts and find the maximum sum possible.
Recursively divide N into N/2, N/3, and N/4 to find the maximum sum
Compare the sum obtained by dividing N with the sum of N itself
Return the maximum sum for each test case
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
I appeared for an interview before Mar 2021.
Round duration - 60 minutes
Round difficulty - Medium
Technical Interview round with questions based on DSA.
Given an array ARR
of size N
, containing each number between 1 and N-1
at least once, identify the single integer that appears twice.
The first line contains an integer...
Identify the duplicate integer in an array containing numbers between 1 and N-1.
Iterate through the array and keep track of the frequency of each element using a hashmap.
Return the element with a frequency greater than 1 as the duplicate integer.
Ensure the constraints are met and a duplicate number is guaranteed to be present.
You are given an arbitrary binary tree consisting of N nodes, each associated with an integer value from 1 to 9. Each root-to-leaf path can be considered a number formed by concat...
Calculate the total sum of all root to leaf paths in a binary tree formed by concatenating node values.
Traverse the binary tree from root to leaf nodes, keeping track of the current path sum
Add the current node value to the path sum and multiply by 10 for each level
When reaching a leaf node, add the final path sum to the total sum
Return the total sum modulo (10^9 + 7)
You are given a directed acyclic graph (DAG). Your task is to perform topological sorting of the graph and return any valid ordering.
A directed acyclic g...
Implement a function to perform topological sorting on a directed acyclic graph (DAG) and return any valid ordering.
Create a graph data structure to represent the DAG
Use depth-first search (DFS) to perform topological sorting
Maintain a visited array to keep track of visited nodes
Return the ordering of nodes after DFS traversal
Round duration - 60 minutes
Round difficulty - Easy
Technical interview round with questions based on DSA.
You are given a binary tree consisting of distinct integers and two nodes, X
and Y
. Your task is to find and return the Lowest Common Ancestor (LCA) of these two nodes...
Find the Lowest Common Ancestor (LCA) of two nodes in a binary tree.
Traverse the binary tree to find the paths from the root to nodes X and Y.
Compare the paths to find the last common node, which is the LCA.
Handle cases where one node is an ancestor of the other.
Consider edge cases like when X or Y is the root node.
Implement a recursive or iterative solution to find the LCA efficiently.
You are provided with a sorted array that has undergone 'K' rotations (the exact value of 'K' is unknown). A rotation involves shifting each element of the array to the right,...
Implement a function to find the minimum number in a rotated sorted array efficiently.
Use binary search to find the minimum element in the rotated array.
Compare the mid element with the start and end elements to determine which half of the array to search next.
Continue the binary search until the minimum element is found.
Given an array TREE
of 'N' unique integers, construct a maximum binary tree using the following rules:
TREE
.Construct a maximum binary tree from an array of unique integers following specific rules.
Find the maximum number in the array to set as the root of the tree.
Recursively construct the left subtree with elements before the maximum number.
Recursively construct the right subtree with elements after the maximum number.
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.
I appeared for an interview in Feb 2017.
I am a detail-oriented analyst with a strong background in data analysis and problem-solving skills.
I have a Bachelor's degree in Economics with a focus on statistical analysis
I have experience using various data analysis tools such as Excel, SQL, and Tableau
I have successfully completed projects that involved forecasting trends and identifying key insights from data
I chose this company because of its strong reputation, innovative projects, and commitment to employee growth.
Strong reputation in the industry
Innovative projects and technologies
Commitment to employee growth and development
I am interested in the Analyst position.
Strong analytical skills
Experience with data analysis tools
Ability to interpret complex data
Excellent problem-solving abilities
I possess strong analytical skills, attention to detail, and proficiency in data analysis tools.
Strong analytical skills demonstrated through previous data analysis projects
Attention to detail shown in accuracy of reports and presentations
Proficiency in data analysis tools such as Excel, SQL, and Tableau
The number of airplanes taking off from Delhi airport daily is not available.
The exact number of airplanes taking off from Delhi airport each day is not publicly available.
The number of flights can vary depending on the day of the week and time of day.
Factors such as weather conditions and air traffic can also affect the number of flights.
However, Delhi airport is one of the busiest airports in India and handles a larg...
based on 1 interview
Interview experience
Senior Associate
4.9k
salaries
| ₹2.8 L/yr - ₹13.1 L/yr |
Associate2
3.7k
salaries
| ₹2.4 L/yr - ₹7.8 L/yr |
Team Lead
1.9k
salaries
| ₹4.5 L/yr - ₹15.6 L/yr |
Assistant Manager
1.8k
salaries
| ₹9.3 L/yr - ₹30 L/yr |
Associate
1.5k
salaries
| ₹2 L/yr - ₹8 L/yr |
Wells Fargo
JPMorgan Chase & Co.
HSBC Group
Cholamandalam Investment & Finance