Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by BNY Team. If you also belong to the team, you can get access from here

BNY Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

BNY Interview Questions and Answers

Updated 24 Jun 2025
Popular Designations

210 Interview questions

An Associate was asked 2w ago
Q. What are hedge funds?
Ans. 

Hedge funds are pooled investment funds that employ diverse strategies to earn active returns for their investors.

  • Hedge funds can invest in a variety of assets, including stocks, bonds, commodities, and derivatives.

  • They often use leverage to amplify returns, which can also increase risk.

  • Hedge funds are typically open to accredited investors and have higher fees compared to mutual funds.

  • Examples of hedge fund strat...

View all Associate interview questions
A Specialist Engineer was asked 2w ago
Q. Can you explain how you handled a high-priority issue from start to finish, including the identification of the root cause, process improvements made, and the demonstration of leadership and ownership in th...
Ans. 

Resolved a critical system failure by identifying root causes, implementing improvements, and leading the team effectively.

  • Identified the issue during routine monitoring when system alerts indicated a failure in data processing.

  • Conducted a root cause analysis, discovering that outdated software was causing compatibility issues.

  • Collaborated with cross-functional teams to develop a patch and tested it in a controlle...

View all Specialist Engineer interview questions
An Operations Associate was asked 3mo ago
Q. What issues have you faced in your process?
Ans. 

Common issues in operations include inefficiencies, communication gaps, and resource constraints affecting productivity.

  • Inefficiencies in workflow can lead to delays; for example, redundant approval processes can slow down project timelines.

  • Communication gaps between teams can result in misunderstandings; for instance, unclear instructions may lead to errors in execution.

  • Resource constraints, such as limited staff...

View all Operations Associate interview questions
An Associate was asked 3mo ago
Q. How do you inform others about any process changes?
Ans. 

I communicate process changes through clear documentation, meetings, and follow-ups to ensure everyone is informed and aligned.

  • Create detailed documentation outlining the changes and distribute it via email.

  • Hold a team meeting to discuss the changes, allowing for questions and feedback.

  • Use visual aids, like flowcharts, to illustrate the new processes.

  • Follow up with team members individually to address any concerns...

View all Associate interview questions

What people are saying about BNY

View All
a financial analyst
1d
Is PSM I Certification from Scrum.org Valuable in Today’s Job Market? What’s Your Experience?
Does the Professional Scrum Master™ I (PSM I) certification from Scrum.org hold value in today’s job market? If yes, how valuable is it in terms of job opportunities or career growth? I’ve also heard that many companies prefer PSM I over CSM due to its more rigorous exam and the fact that it doesn’t require mandatory training. Is this actually true based on your experience? Would love to hear thoughts from those who are certified or hiring in agile roles.
Got a question about BNY?
Ask anonymously on communities.
An Associate was asked 3mo ago
Q. What files are required in a framework?
Ans. 

A framework typically requires essential files for structure, configuration, and functionality.

  • 1. Configuration Files: Define settings and parameters (e.g., config.json, settings.py).

  • 2. Dependency Files: List libraries and packages needed (e.g., package.json, requirements.txt).

  • 3. Entry Point: The main file to start the application (e.g., app.js, main.py).

  • 4. Source Code Files: Contain the core logic and functionali...

View all Associate interview questions
An Associate was asked 3mo ago
Q. What are the best practices for successfully delivering a project while implementing continuous testing?
Ans. 

Implementing continuous testing enhances project delivery through automation, collaboration, and feedback loops.

  • Integrate testing early in the development cycle to catch issues sooner, e.g., using Test-Driven Development (TDD).

  • Automate repetitive tests to save time and reduce human error, such as using Selenium for web applications.

  • Foster collaboration between developers and testers to ensure shared understanding ...

View all Associate interview questions
An Associate was asked 4mo ago
Q. Explain how the 2008 crisis affected the structured finance market, especially MBS and RMBS.
Ans. 

The 2008 crisis severely impacted the structured finance market, particularly MBS and RMBS, leading to widespread defaults and market instability.

  • Massive defaults on subprime mortgages led to significant losses for MBS investors.

  • The collapse of Lehman Brothers in 2008 triggered a liquidity crisis, affecting RMBS markets.

  • Credit rating agencies downgraded many MBS and RMBS, eroding investor confidence.

  • Government int...

View all Associate interview questions
Are these interview questions helpful?
🔥 Asked by recruiter 2 times
An Associate was asked 4mo ago
Q. What is securitization?
Ans. 

Securitization is the process of converting illiquid assets into tradable securities, enhancing liquidity and investment opportunities.

  • Involves pooling various financial assets like mortgages, loans, or receivables.

  • These pooled assets are then sold as securities to investors.

  • Example: Mortgage-backed securities (MBS) are created from home loans.

  • Securitization helps in risk distribution among investors.

  • It provides l...

View all Associate interview questions
An Intermediate Representative was asked 4mo ago
Q. What is a nested correspondence bank?
Ans. 

A nested correspondence bank is a financial institution that acts as an intermediary between two other banks in a transaction.

  • Nested correspondence banks facilitate international transactions by providing a link between the issuing bank and the beneficiary bank.

  • They help to reduce risk and ensure smooth processing of funds by handling the transfer of funds and information between the two banks.

  • Example: Bank A in t...

View all Intermediate Representative interview questions
A Director was asked 5mo ago
Q. Can you provide a detailed description of product asset servicing?
Ans. 

Product asset servicing involves managing and maintaining assets throughout their lifecycle.

  • Product asset servicing includes activities such as tracking, maintenance, and disposal of assets.

  • It ensures that assets are utilized efficiently and effectively to maximize their value.

  • Examples of product asset servicing include inventory management, equipment maintenance, and asset retirement planning.

View all Director interview questions

BNY Interview Experiences

366 interviews found

I applied via Recruitment Consulltant and was interviewed before Nov 2021. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Coding Test 

Easy Questions based on Array and String Data Structure

Round 3 - Technical 

(3 Questions)

  • Q1. How does a website URL works
  • Ans. 

    A website URL is a unique address that identifies a web page on the internet.

    • URL stands for Uniform Resource Locator

    • It consists of a protocol (http/https), domain name, and path

    • The domain name is translated to an IP address using DNS

    • The path specifies the location of the resource on the server

    • Example: https://www.google.com/search?q=url

  • Answered by AI
  • Q2. Event loop in Javascript
  • Ans. 

    Event loop is a mechanism in JavaScript that handles asynchronous operations.

    • Event loop continuously checks the call stack and the task queue.

    • If the call stack is empty, it takes the first task from the queue and pushes it to the call stack.

    • Callbacks are added to the task queue when an asynchronous operation is completed.

    • Event loop ensures that the code runs in a non-blocking way.

    • Example: setTimeout() function adds a c...

  • Answered by AI
  • Q3. Simple Coding based, Given an array, find a pair with sum = k.
  • Ans. 

    Given an array, find a pair with sum = k.

    • Use a hash table to store the difference between k and each element in the array.

    • Iterate through the array and check if the current element is present in the hash table.

    • If it is present, return the pair of elements that add up to k.

  • Answered by AI
Round 4 - Technical 

(2 Questions)

  • Q1. Java Exceptions, Streams
  • Q2. Find first minimum and maximum number in an array using streams
  • Ans. 

    Find first minimum and maximum number in an array using streams

    • Use IntStream to convert array to stream of integers

    • Use min() and max() methods to find minimum and maximum values

    • Use findFirst() method to get the first occurrence of minimum and maximum values

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn Data structures like Array, String and LinkedList.
Basic concepts should be known

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Group Discussion 

Competitive

Round 2 - Group Discussion 

Was interesting and very tough to crack

Round 3 - Technical 

(1 Question)

  • Q1. Knowledge and related questions
Round 4 - HR 

(2 Questions)

  • Q1. Personal question
  • Q2. Situation question
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Jan 2025.

Round 1 - One-on-one 

(2 Questions)

  • Q1. General investment banking
  • Q2. Team management
Round 2 - One-on-one 

(1 Question)

  • Q1. Team handling experience
  • Ans. 

    I have over 10 years of experience leading and managing teams in various industries.

    • Led a team of 50+ employees in a manufacturing company, improving productivity by 20%

    • Managed a cross-functional team of engineers, designers, and marketers in a tech startup

    • Implemented team-building activities to boost morale and collaboration

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(4 Questions)

  • Q1. What currently you are doing in your project?
  • Ans. 

    I am currently leading a team in designing and implementing a new database system for our project.

    • Leading a team in designing a new database system

    • Implementing the new database system

    • Ensuring data integrity and security measures are in place

  • Answered by AI
  • Q2. How proficient you are in SQL?
  • Ans. 

    I am highly proficient in SQL with extensive experience in writing complex queries, optimizing database performance, and designing database schemas.

    • Extensive experience writing complex SQL queries

    • Optimizing database performance through SQL

    • Designing database schemas using SQL

    • Familiar with advanced SQL concepts such as joins, subqueries, and indexing

  • Answered by AI
  • Q3. Why you have gap before MBA?
  • Ans. 

    I took a gap to gain practical work experience and save money for my MBA.

    • To gain practical work experience relevant to my field of study

    • To save money for tuition and living expenses during my MBA program

    • To take a break and reassess my career goals before committing to further education

  • Answered by AI
  • Q4. Explain procedures from SQL.
  • Ans. 

    SQL procedures are reusable blocks of code that can be called to perform a specific task.

    • Procedures are created using the CREATE PROCEDURE statement.

    • They can accept input parameters and return output parameters.

    • Procedures can be called using the EXECUTE or CALL statement.

    • They are used to encapsulate logic for tasks that need to be performed repeatedly.

    • Procedures can improve performance by reducing network traffic.

  • Answered by AI

Skills evaluated in this interview

Financial Analyst Interview Questions & Answers

user image pooja mundada

posted on 16 Jan 2025

Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What are the main financial statement
  • Ans. 

    The main financial statements are the income statement, balance sheet, and cash flow statement.

    • Income statement shows a company's revenues and expenses over a period of time.

    • Balance sheet provides a snapshot of a company's financial position at a specific point in time.

    • Cash flow statement details the cash inflows and outflows of a company during a period.

    • These statements are essential for analyzing a company's financia...

  • Answered by AI
  • Q2. How will you handle stressful situation
  • Ans. 

    I handle stressful situations by staying calm, prioritizing tasks, and seeking support when needed.

    • Remain calm and composed under pressure

    • Prioritize tasks based on urgency and importance

    • Seek support from colleagues or supervisors if necessary

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - be prepared with accounting skills

KYC Analyst Interview Questions & Answers

user image Anonymous

posted on 21 Dec 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about your previous work experience?
  • Ans. 

    I have over 5 years of experience working as a KYC Analyst in the banking industry.

    • Performed customer due diligence and enhanced due diligence on new and existing clients

    • Conducted risk assessments and investigations to ensure compliance with regulations

    • Reviewed and analyzed customer documentation to verify identity and assess risk levels

    • Collaborated with internal teams and external stakeholders to gather necessary info...

  • Answered by AI
  • Q2. How do you handle pressure and ensure timely completion of tasks?
  • Ans. 

    I handle pressure by prioritizing tasks, staying organized, and seeking help when needed.

    • Prioritize tasks based on deadlines and importance

    • Break down tasks into smaller steps to manage time effectively

    • Communicate with team members and supervisors for support and guidance

    • Take short breaks to recharge and maintain focus

    • Stay organized with to-do lists and calendars

    • Practice stress-relief techniques like deep breathing or m...

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Tell me about yourself.
  • Ans. 

    I am a detail-oriented KYC Analyst with 5 years of experience in conducting due diligence and risk assessments for financial institutions.

    • 5 years of experience in KYC analysis

    • Skilled in conducting due diligence and risk assessments

    • Strong attention to detail

    • Familiar with AML regulations and compliance procedures

  • Answered by AI
  • Q2. Why did you leave your previous organisation?
  • Ans. 

    Seeking new challenges and growth opportunities in a different environment.

    • Desire for career advancement

    • Seeking new challenges

    • Relocation

    • Company restructuring

    • Better work-life balance

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. How do we do credit analysis of a company, explain in detail?
  • Ans. 

    Credit analysis of a company involves evaluating its financial health, creditworthiness, and ability to repay debt.

    • Gather financial statements and reports from the company.

    • Analyze financial ratios such as liquidity, solvency, and profitability.

    • Assess the company's industry and market conditions.

    • Review the company's credit history and payment behavior.

    • Consider any external factors that may impact the company's creditwor...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with basics of credit analysis and to give a detailed overview of how does one do credit assesment on a live case

Winter Intern Interview Questions & Answers

user image Anonymous

posted on 12 Jan 2025

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

2 easy lc, 1 medium and 1 hard. I completed 3/4 including hard and medium.

Round 2 - Technical 

(2 Questions)

  • Q1. Theoretical questions on sql/rdbms
  • Q2. Dsa v easy question
Round 3 - HR 

(2 Questions)

  • Q1. Asked me about hobbies
  • Q2. When do you work efficiently
  • Ans. 

    I work efficiently when I have a clear goal, a structured plan, and minimal distractions.

    • Having a clear goal helps me stay focused and motivated.

    • Creating a structured plan allows me to prioritize tasks and manage my time effectively.

    • Minimizing distractions, such as turning off notifications or finding a quiet workspace, helps me maintain concentration.

    • Examples: Setting daily goals, using time management techniques like...

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Write a list comprehension for finding even numbers from 0 to 11
  • Ans. 

    List comprehension to find even numbers from 0 to 11

    • Use list comprehension with condition for even numbers

    • Syntax: [x for x in range(12) if x % 2 == 0]

    • Example: ['0', '2', '4', '6', '8', '10']

  • Answered by AI
  • Q2. Explain test driven development
  • Q3. How did you perform testing? What are the unit testing modules that you have used?
  • Ans. 

    I performed testing by utilizing various unit testing modules such as JUnit and Mockito.

    • Utilized JUnit for testing individual units of code

    • Used Mockito for mocking dependencies in unit tests

    • Implemented test cases to ensure proper functionality and identify bugs

  • Answered by AI
Round 2 - Behavioral 

(2 Questions)

  • Q1. Explain your overall experience so far. Reason for jumping between jobs and what did you do in each of the company?
  • Ans. 

    I have diverse experience in various industries, seeking growth opportunities and challenges.

    • Worked in finance, healthcare, and technology industries

    • Focused on project management, data analysis, and client relations

    • Seeking opportunities for professional growth and development

  • Answered by AI
  • Q2. What is your expected compensation?
  • Ans. 

    My expected compensation is based on my experience, skills, and the market rate for Senior Associates in this industry.

    • Research the average salary range for Senior Associates in the industry

    • Consider my years of experience and relevant skills when determining my expected compensation

    • Be open to negotiation based on the overall compensation package offered

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The team I worked on works on UK timings. The manager told that they are strict about timing and it appeared like you have no other option than sticking to 1 to 10 timing. If you are OK for this timing, this is best suited for you. Otherwise, please think and find some other better company.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Technical 

(1 Question)

  • Q1. What are the key concepts of computer science and data structures and algorithms that are commonly evaluated in interviews?
  • Ans. 

    Key concepts in computer science and data structures commonly evaluated in interviews.

    • Data structures: arrays, linked lists, stacks, queues, trees, graphs

    • Algorithms: sorting algorithms (e.g. quicksort, mergesort), searching algorithms (e.g. binary search), dynamic programming, recursion

    • Complexity analysis: time complexity (Big O notation), space complexity

    • Object-oriented programming concepts: inheritance, polymorphism,...

  • Answered by AI
Round 2 - One-on-one 

(1 Question)

  • Q1. Dsa and dbms round

Interview Questions & Answers

user image Anonymous

posted on 7 Oct 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a motivated and detail-oriented individual with a passion for learning and problem-solving.

    • I have a strong academic background in computer science and have completed several internships in the tech industry.

    • I am proficient in programming languages such as Java, Python, and SQL.

    • I have experience working on projects involving data analysis and machine learning.

    • I am a quick learner and enjoy taking on new challenges.

  • Answered by AI
  • Q2. Why do you want this job
  • Ans. 

    I am passionate about helping individuals with disabilities and want to gain hands-on experience in the field.

    • Passionate about helping individuals with disabilities

    • Seeking hands-on experience in the field

    • Interested in learning more about SSD services and support

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. Why do you want to work at bny
  • Ans. 

    I want to work at BNY because of its reputation for innovation and commitment to excellence in the financial industry.

    • BNY has a strong reputation for innovation and excellence in the financial industry

    • I am impressed by BNY's commitment to diversity and inclusion

    • I believe BNY offers great opportunities for professional growth and development

  • Answered by AI
  • Q2. Tell be about a time you struggles
  • Ans. 

    I struggled during my first semester of college due to the transition from high school and the workload.

    • Transitioning from high school to college was challenging

    • Struggled to balance coursework and extracurricular activities

    • Sought help from professors and peers to improve study habits

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - be yourself, its chill

BNY Interview FAQs

How many rounds are there in BNY interview?
BNY interview process usually has 2-3 rounds. The most common rounds in the BNY interview process are Technical, One-on-one Round and Resume Shortlist.
How to prepare for BNY interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at BNY. The most common topics and skills that interviewers at BNY expect are Financial Services, Bloomberg, Finance, Operations and Asset Management.
What are the top questions asked in BNY interview?

Some of the top questions asked at the BNY interview -

  1. Sort strings based on your own hierarchy. Ex: INPUT: ABC, HIJ, RTS, POT. Hie...read more
  2. What are the methodologies use to calculate the retur...read more
  3. puzzles like the there are 4 mens and they have to travel across a bridge only ...read more
What are the most common questions asked in BNY HR round?

The most common HR questions asked in BNY interview are -

  1. Where do you see yourself in 5 yea...read more
  2. What are your strengths and weakness...read more
  3. What are your salary expectatio...read more
How long is the BNY interview process?

The duration of BNY interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

4.3/5

based on 334 interview experiences

Difficulty level

Easy 14%
Moderate 76%
Hard 10%

Duration

Less than 2 weeks 62%
2-4 weeks 25%
4-6 weeks 5%
6-8 weeks 5%
More than 8 weeks 3%
View more

Interview Questions from Similar Companies

Wells Fargo Interview Questions
3.8
 • 618 Interviews
Citicorp Interview Questions
3.7
 • 588 Interviews
HSBC Group Interview Questions
3.9
 • 511 Interviews
American Express Interview Questions
4.1
 • 387 Interviews
UBS Interview Questions
3.9
 • 351 Interviews
Morgan Stanley Interview Questions
3.6
 • 308 Interviews
View all

BNY Reviews and Ratings

based on 4.5k reviews

3.8/5

Rating in categories

3.7

Skill development

3.9

Work-life balance

3.7

Salary

3.4

Job security

3.8

Company culture

3.1

Promotions

3.5

Work satisfaction

Explore 4.5k Reviews and Ratings
Associate, Client Operations I

Pune

5-10 Yrs

Not Disclosed

Vice President, Counsel VI

Pune

7-12 Yrs

₹ 14-53.5 LPA

Vice President, Client Processing I

Pune

7-10 Yrs

₹ 14-50 LPA

Explore more jobs
Analyst
1.9k salaries
unlock blur

₹4.5 L/yr - ₹10 L/yr

Senior Analyst
1.8k salaries
unlock blur

₹5.7 L/yr - ₹13.1 L/yr

Senior Associate
1.4k salaries
unlock blur

₹11.1 L/yr - ₹20 L/yr

Associate
1.3k salaries
unlock blur

₹6.5 L/yr - ₹12 L/yr

Intermediate Representative
1.2k salaries
unlock blur

₹3.5 L/yr - ₹7.7 L/yr

Explore more salaries
Compare BNY with

Bajaj Finserv

4.0
Compare

Wells Fargo

3.8
Compare

HSBC Group

3.9
Compare

Cholamandalam Investment & Finance

3.9
Compare
write
Share an Interview