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

342 interviews found

I applied via Recruitment Consultant and was interviewed in Nov 2021. There were 3 interview rounds.

Interview Questionnaire 

8 Questions

  • Q1. 3 Coding questions based on strings in 1st interview. And 2 algos.
  • Q2. Sort strings based on your own hierarchy. Ex: INPUT: ABC, HIJ, RTS, POT. Hierarchy: R, P, A, H OUTPUT: RTS, POT, ABC, HIJ.
  • Ans. 

    Sort strings based on custom hierarchy

    • Create a mapping of each character to its hierarchy value

    • Sort the strings based on the hierarchy value of their first character

    • If the first characters have the same hierarchy value, move to the next character

    • Repeat until all strings are sorted

  • Answered by AI
  • Q3. Write a program which would print notification for user specific order. Ex: Customer number "__" Ordered"__". Your order will arrive on"__"
  • Q4. What is heap?
  • Ans. 

    Heap is a region of memory used for dynamic memory allocation.

    • Heap is managed by the operating system or runtime environment.

    • It allows for allocation and deallocation of memory at runtime.

    • Heap can become fragmented over time, leading to performance issues.

    • Examples include malloc() and new() in C++.

  • Answered by AI
  • Q5. Explain Hashing.
  • Ans. 

    Hashing is a process of converting data into a fixed-size output using a mathematical function.

    • Hashing is used for data integrity and security purposes.

    • Hash functions are one-way functions, meaning it is difficult to reverse engineer the original data from the hash value.

    • Hashing is used in password storage, digital signatures, and data comparison.

    • Examples of hash functions include MD5, SHA-1, and SHA-256.

  • Answered by AI
  • Q6. Different types of joins and also a SQL query.
  • Ans. 

    Different types of joins and a SQL query.

    • Types of joins: Inner join, Left join, Right join, Full outer join, Cross join

    • Inner join returns only the matching rows from both tables

    • Left join returns all rows from the left table and matching rows from the right table

    • Right join returns all rows from the right table and matching rows from the left table

    • Full outer join returns all rows from both tables

    • Cross join returns the Ca...

  • Answered by AI
  • Q7. Difference between compiler and interpreter in detail.
  • Ans. 

    Compiler translates entire code into machine code while interpreter translates line by line.

    • Compiler converts source code into executable code without executing it.

    • Interpreter converts source code into machine code line by line and executes it.

    • Compiler generates error messages after the entire code is compiled.

    • Interpreter generates error messages as soon as it encounters an error in the code.

    • Examples of compilers are G...

  • Answered by AI
  • Q8. Questions on my project and internships.

Interview Preparation Tips

Interview preparation tips for other job seekers - BNY consisted of 5 rounds in total. 2 of them were online coding round. And then 2 pure tech round followed by 1 Bar raiser round.
1 round of interview was of around 1.5hr and the interviewer gave me 5 coding questions to do. It did all of them. The interviewer was very friendly and was giving hints. Coding was on hackerank platform.
After 1 week I had my 2nd interview. Here I was asked theory questions on CS fundamental and SQL.
3rd round was bar raiser round. There was no code snippet but the interviewer had feedback of both the rounds and our hacker rank profile. He asked me one ques from my 1st round of interview(sorting.. Why this sort). Technical questions from my projects. Difference between Compiler and interpreter. Why did you switch to python from C++. All kind of HR questions.
All rounds were elimination round.

Skills evaluated in this interview

Top BNY Software Developer Interview Questions and Answers

Q1. Palindromic Substrings Problem Statement You are given a string 'STR'. Your task is to determine the total number of palindromic substrings present in 'STR'. Example: Input: "abbc" Output: 5 Explanation: The palindromic substrings in "abbc"... read more
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)
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

Intermediate Client Processing Representative Interview Questions asked at other Companies

Q1. What is nasdaq will do if security deposite is not working
View answer (1)
BNY Interview Questions and Answers for Freshers
illustration image
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed 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

Vice President Operations Interview Questions asked at other Companies

Q1. What is your expeereicnes and knowledge abot our industry and project?
View answer (2)
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

Database Manager Interview Questions asked at other Companies

Q1. How proficient you are in SQL?
View answer (1)

BNY interview questions for popular designations

 Senior Associate

 (17)

 Software Developer

 (17)

 Analyst

 (16)

 Intermediate Representative

 (16)

 Associate

 (13)

 Senior Analyst

 (11)

 Senior Representative

 (8)

 Software Engineer

 (6)

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

Financial Analyst Interview Questions asked at other Companies

Q1. Suppose you have 10000 US dollars with you, out of which you took a loan of 5000 US Dollars. Now suppose you have purchased two assets of 5000 US Dollars each, one through cash and other through bank loan. How would you show this transactio... read more
View answer (3)

Get interview-ready with Top BNY Interview Questions

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

KYC Analyst Interview Questions asked at other Companies

Q1. 7. What is PEP? 8. Are only politicallly exposed person a threat or are there any other threats you can relate ?
View answer (1)

Jobs at BNY

View all
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

Credit Analyst Interview Questions asked at other Companies

Q1. 1. what is minimum permissible banking finance 2. what do you know about this job profile 3. What iS Current Ratio, DSCR, ISCR 4. what we include in debt payment in calucation of DSCR and ISCR
View answer (1)

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

Winter Intern Interview Questions asked at other Companies

Q1. What is your favorite engineering subject?
View answer (4)
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
  • Ans. 

    Test driven development is a software development process where tests are written before the actual code.

    • Write a failing test case based on requirements

    • Write the minimum code to pass the test

    • Refactor the code to improve quality and maintainability

    • Repeat the process for each new feature or change

  • Answered by AI
  • 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

Top BNY Senior Associate Interview Questions and Answers

Q1. What is a journal entry for buy transaction
View answer (3)

Senior Associate Interview Questions asked at other Companies

Q1. On an average, how many invoices can you process in a day?
View answer (10)
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

Summer Intern Interview Questions asked at other Companies

Q1. There are 8 bottles of milk out of which one bottle is poisoned. What will be the minimum number of persons required to find the poisoned bottle if the person dies within 24 hours of drinking the poison. You have only 24 hours.
View answer (6)

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
Contribute & help others!
anonymous
You can choose to be anonymous

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.

Recently Viewed

PHOTOS

InsuranceDekho

3 office photos

LIST OF COMPANIES

Credit Bajaar

Overview

INTERVIEWS

BNY

No Interviews

DESIGNATION

SALARIES

Aurobindo Pharma

JOBS

Itvedant Education

No Jobs

JOBS

DesiCrew Solutions

No Jobs

COMPANY BENEFITS

Container Corporation of India

No Benefits

INTERVIEWS

BNY

No Interviews

Tell us how to improve this page.

BNY Interview Process

based on 309 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.1k 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.1k Reviews and Ratings
Senior Associate, Full-Stack Engineer

Chennai

5-8 Yrs

₹ 3.55-25 LPA

Vice President, Back-End Engineer I

Pune

7-9 Yrs

₹ 17-46 LPA

Explore more jobs
Analyst
1.9k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Analyst
1.7k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Associate
1.2k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Intermediate Representative
1.1k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Vice President
1.1k salaries
unlock blur

₹0 L/yr - ₹0 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