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, Process, and Tips

Updated 4 Mar 2025

Top BNY Interview Questions and Answers

View all 203 questions

BNY Interview Experiences

Popular Designations

343 interviews found

Interview Questionnaire 

2 Questions

  • Q1. Capital Market
  • Q2. Asset Management

Senior Financial Analyst Interview Questions asked at other Companies

Q1. Diff between forecasting and budgeting, sale of assets and their effects in fs, provision for doubtful debt entry, unrealised/ realised gain and loss meaning, what are we check if there is any diff between budgeted and actuals like in 'ee c... read more
View answer (1)

Interview Questions & Answers

user image Anonymous

posted on 6 Mar 2021

I applied via Company Website and was interviewed in Feb 2021. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What is credit risk. Importance of credit risk in the corporate world. All derivatives with example and cross questions. All generic questions related to previous experiences. Question regarding NAV.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be conceptually well prepared as the process is very critical and sensitive.
There might be cross questions as well to test the practicalities of the knowledge/concepts

Interview Questions & Answers

user image Anonymous

posted on 7 Apr 2021

I applied via LinkedIn

Interview Questionnaire 

1 Question

  • Q1. About process knowledge, anything related to AML/KYC

Interview Preparation Tips

Interview preparation tips for other job seekers - Should be abreast with your current process knowledge, as questions may be based on that only.

Interview Questions & Answers

user image Anonymous

posted on 20 Aug 2021

Interview Questionnaire 

1 Question

  • Q1. Domain question to be strong

BNY interview questions for popular designations

 Senior Associate

 (17)

 Software Developer

 (17)

 Analyst

 (16)

 Intermediate Representative

 (16)

 Associate

 (14)

 Senior Analyst

 (11)

 Senior Representative

 (8)

 Software Engineer

 (6)

Lead Analyst Interview Questions & Answers

user image Anonymous

posted on 19 Jul 2021

I applied via Recruitment Consultant and was interviewed in Jan 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions were related to reconciliation, general ledger, accrual, prepaid etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and be prepared of the subjects. Explain well about your previous experiences.

Lead Analyst Interview Questions asked at other Companies

Q1. Do bonus shares impact capital accretion?
View answer (2)

Get interview-ready with Top BNY Interview Questions

I applied via Referral and was interviewed before Feb 2021. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Prepaid and accrual.. Accounting questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic accounting questions
Prepaid and accrual concept and entries

Senior Representative Interview Questions asked at other Companies

Q1. NAV cycle steps involved in day to day NAV calculation startinh with sub/redemption bookings ending with sending NAV to client
View answer (1)

Jobs at BNY

View all

Interview Questions & Answers

user image Anonymous

posted on 6 Jul 2021

Interview Questionnaire 

1 Question

  • Q1. How is the cloud security relatable to today's B2C

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Jan 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Technical questions related to Project Management and Business Analysis

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself, if you do not know something just say that you don't know.

Vice President Interview Questions asked at other Companies

Q1. What will you do if a customer register a complaint against you in the company ?
View answer (3)

I appeared for an interview before Oct 2020.

Round 1 - Coding Test 

(4 Questions)

Round duration - 180 Minutes
Round difficulty - Hard

There will be 4 programming questions( 3 medium, 1 hard) 
Participants can attempt as many questions as they can within the test duration. The more the number of questions they attempt and get correct, the better their chances of getting shortlisted for interviews.
It was camera monitored. Don't change the tab while attempting the test.

  • Q1. 

    Ways To Make Coin Change

    Given an infinite supply of coins of varying denominations, determine the total number of ways to make change for a specified value using these coins. If it's not possible to make...

  • Ans. 

    The task is to find the total number of ways to make change for a specified value using given denominations.

    • Use dynamic programming to keep track of the number of ways to make change for each value up to the target value.

    • Iterate through each denomination and update the number of ways to make change for each value based on the current denomination.

    • The final answer will be the number of ways to make change for the target...

  • Answered by AI
  • Q2. 

    Count Ways to Reach the N-th Stair Problem Statement

    You are provided with a number of stairs, and initially, you are located at the 0th stair. You need to reach the Nth stair, and you can climb one or tw...

  • Ans. 

    The problem involves finding the number of distinct ways to climb N stairs by taking 1 or 2 steps at a time.

    • Use dynamic programming to solve the problem efficiently.

    • The number of ways to reach the Nth stair is the sum of the number of ways to reach the (N-1)th stair and the (N-2)th stair.

    • Handle base cases for N=0 and N=1 separately.

    • Consider using modulo operation to avoid overflow when dealing with large numbers.

  • Answered by AI
  • Q3. 

    Merge Two Sorted Linked Lists Problem Statement

    You are provided with two sorted linked lists. Your task is to merge them into a single sorted linked list and return the head of the combined linked list.

    ...
  • Ans. 

    Merge two sorted linked lists into a single sorted linked list without using additional space.

    • Create a dummy node to start the merged list

    • Compare the values of the two linked lists and add the smaller value to the merged list

    • Move the pointer of the merged list and the respective linked list with the smaller value

    • Continue this process until one of the linked lists is fully traversed

    • Append the remaining elements of the o

  • Answered by AI
  • Q4. 

    Pattern Matching Problem Statement

    Given a pattern as a string and a set of words, determine if the pattern and the words list align in the same sequence.

    Input:
    T (number of test cases)
    For each test ca...
  • Ans. 

    Given a pattern and a list of words, determine if the words align with the pattern.

    • Iterate through the pattern and words simultaneously to check for alignment.

    • Use a hashmap to store the mapping between characters in the pattern and words.

    • Return 'True' if the words match the pattern sequence, else return 'False'.

  • Answered by AI
Round 2 - Face to Face 

(2 Questions)

Round duration - 75 Minutes
Round difficulty - Easy

This round was held online over Webex and CodePair (a screen-sharing code editor ).
The interviewer made it clear in the beginning that he wanted to know me as a person, what my interests are, and how well I am as a problem solver. The interview started with my introduction, my interests, coding languages I am comfortable with, my previous internship experiences, and my projects. He then asked some questions about OOPS and data structures. After judging my problem-solving skills and thought process from previous questions, he gave me 2 coding questions to solve. I was able to solve both of them.

  • Q1. 

    Minimum Operations Problem Statement

    You are given an array 'ARR' of size 'N' consisting of positive integers. Your task is to determine the minimum number of operations required to make all elements in t...

  • Ans. 

    The minimum operations problem involves finding the minimum number of operations required to make all elements in an array equal.

    • Iterate through the array to find the maximum and minimum values.

    • Calculate the difference between the maximum and minimum values.

    • The minimum number of operations needed is the difference between the maximum and minimum values.

  • Answered by AI
  • Q2. 

    Cycle Detection in a Singly Linked List

    Determine if a given singly linked list of integers forms a cycle or not.

    A cycle in a linked list occurs when a node's next points back to a previous node in the ...

  • Ans. 

    Detect if a singly linked list forms a cycle by checking if a node's next points back to a previous node.

    • Use Floyd's Tortoise and Hare algorithm to detect a cycle in the linked list.

    • Initialize two pointers, slow and fast, and move them at different speeds through the list.

    • If there is a cycle, the fast pointer will eventually meet the slow pointer.

    • If the fast pointer reaches the end of the list (null), there is no cycle

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - Intern in PuneEligibility criteriaFemale candidates BE/BTech/ M.E/M.Tech/ MCA/ M.Sc. & MS Maths and Computing CGPA 7 and above No current/active backlogsBNY Mellon interview preparation:Topics to prepare for the interview - DSA, OOPS, Projects, Leadership Principles, JavaTime required to prepare for the interview - 1 MonthInterview preparation tips for other job seekers

Tip 1 : The interviewer will not only look at your technical skills but also your team building and leadership qualities
Tip 2 : It's okay if you don't have an optimal solution in one go. Try to break the problem and don't give up. 
Tip 3 : Practice at least 150 Questions on Leetcode covering all topics. Chances of asking tough topics like DP, greedy are less. 
Tip 4 : Make sure you have at least 1 project to discuss in depth. Be prepared with all challenges you had while doing the project and how you overcome them. 
Tip 5 : If you ever participated in/organized a hackathon/college event, make sure you highlight that. This will make you shine from the rest of the candidates.
Tip 6 : The interviewer might also give you a couple of leadership/team-based scenarios and what will you do in that situation.
Tip 7 : Lastly make sure to read about BNY Mellon and what it do.

Application resume tips for other job seekers

Tip 1 : Try to add Experience at the top with a detailed explanation of work done by you 
Tip 2 : If No projects and Experience: Try to add Coding profiles, Achievements (Hackathons and Coding Competitions )
Tip 3 : Make sure to highlight any competition/hackathon that you won.

Final outcome of the interviewSelected

Skills evaluated in this interview

Top BNY Software Developer Intern Interview Questions and Answers

Q1. Ways To Make Coin Change Given an infinite supply of coins of varying denominations, determine the total number of ways to make change for a specified value using these coins. If it's not possible to make the change, the result should be 0.... read more
View answer (2)

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array. Follow Up: Can you achieve the above task using the least numb... read more
View answer (5)

Interview Questionnaire 

2 Questions

  • Q1. Why you want to leave your old organisation and what was your role in other past organisation
  • Q2. Well to answer question always be honest never give unclear answer and try to connect to interviewer so they are sure your answers are genuine..... I honestly replied that i was not liking the role and man...

Process Leader Interview Questions asked at other Companies

Q1. What is deprivation and how many types of deprication
View answer (1)

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. What is credit risk. Importance of credit risk in the corporate world. All deri...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.

BNY Interview Process

based on 310 interviews

Interview experience

4.3
  
Good
View more

Interview Questions from Similar Companies

Citicorp Interview Questions
3.7
 • 564 Interviews
Wells Fargo Interview Questions
3.9
 • 564 Interviews
HSBC Group Interview Questions
4.0
 • 484 Interviews
Goldman Sachs Interview Questions
3.5
 • 376 Interviews
UBS Interview Questions
3.9
 • 331 Interviews
Morgan Stanley Interview Questions
3.7
 • 291 Interviews
Bank of America Interview Questions
4.3
 • 235 Interviews
Northern Trust Interview Questions
3.7
 • 106 Interviews
View all

BNY Reviews and Ratings

based on 4.2k reviews

3.9/5

Rating in categories

3.7

Skill development

3.9

Work-life balance

3.8

Salary

3.5

Job security

3.8

Company culture

3.2

Promotions

3.6

Work satisfaction

Explore 4.2k Reviews and Ratings
Vice President, Full-Stack Engineer I

Chennai

5-7 Yrs

Not Disclosed

Vice President, Credit Services II

Pune

7-10 Yrs

₹ 17-50 LPA

Senior Associate, Full-Stack Engineer

Pune

5-9 Yrs

₹ 3.2-40 LPA

Explore more jobs
Analyst
1.9k salaries
unlock blur

₹2.9 L/yr - ₹10 L/yr

Senior Analyst
1.7k salaries
unlock blur

₹4 L/yr - ₹15 L/yr

Senior Associate
1.2k salaries
unlock blur

₹11.5 L/yr - ₹25 L/yr

Vice President
1.1k salaries
unlock blur

₹16 L/yr - ₹52 L/yr

Intermediate Representative
1.1k salaries
unlock blur

₹2.9 L/yr - ₹7.5 L/yr

Explore more salaries
Compare BNY with

State Street Corporation

3.7
Compare

Northern Trust

3.7
Compare

HSBC Group

3.9
Compare

JPMorgan Chase & Co.

4.0
Compare
Did you find this page helpful?
Yes No
write
Share an Interview