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 for Freshers

Updated 6 Jul 2025
Popular Designations

23 Interview questions

A Summer Intern was asked 6mo ago
Q. 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, polymorp...

View all Summer Intern interview questions
A Financial Analyst 1 was asked 10mo ago
Q. What do you mean by derivatives?
Ans. 

Derivatives are financial instruments whose value is derived from an underlying asset or group of assets.

  • Derivatives can be used for hedging risk, speculating on price movements, or gaining exposure to assets without owning them.

  • Common types of derivatives include options, futures, forwards, and swaps.

  • Derivatives can be traded on exchanges or over-the-counter (OTC).

  • They are often used by investors, companies, and ...

View all Financial Analyst 1 interview questions
An Associate Analyst was asked
Q. What is a derivative?
Ans. 

A derivative is a financial contract whose value is derived from the performance of an underlying asset, index, or interest rate.

  • Derivatives can be used for hedging, speculation, or arbitrage.

  • Common types of derivatives include options, futures, forwards, and swaps.

  • For example, a stock option gives the holder the right to buy or sell a stock at a specified price within a certain time frame.

View all Associate Analyst interview questions
An Associate Analyst was asked
Q. What is a corporate action, and what are its types?
Ans. 

Corporate action refers to events initiated by a public company that impact its shareholders and securities.

  • Types of corporate actions include dividends, stock splits, mergers and acquisitions, rights issues, and bonus issues.

  • Dividends are payments made to shareholders from a company's profits.

  • Stock splits involve dividing existing shares into multiple shares to lower the share price.

  • Mergers and acquisitions are w...

View all Associate Analyst interview questions

What people are saying about BNY

View All
a financial analyst
1w
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.
A Software Development Engineer Intern was asked
Q. What is addressing mode and its types?
Ans. 

Addressing mode is a technique used in computer architecture to specify how to calculate the effective address of an operand.

  • Addressing mode determines how the CPU accesses data from memory

  • Types of addressing modes include direct, indirect, indexed, and register

  • Examples: direct addressing mode - MOV A, 1000H, indirect addressing mode - MOV A, [BX], indexed addressing mode - MOV A, [BX+SI], register addressing mode...

View all Software Development Engineer Intern interview questions
A Software Development Engineer Intern was asked
Q. How can you reverse a linked list in 3 steps?
Ans. 

Iterate through the linked list and reverse the pointers in 3 steps

  • Iterate through the linked list and keep track of the previous, current, and next nodes

  • Update the pointers to reverse the direction of the nodes

  • Repeat the process until the end of the linked list is reached

View all Software Development Engineer Intern interview questions
A Software Development Engineer Intern was asked
Q. What are the differences between TCP and OSI models?
Ans. 

TCP is a transport layer protocol while OSI is a reference model for network communication.

  • TCP is a protocol responsible for establishing and maintaining a connection between two devices.

  • OSI is a conceptual framework that standardizes the functions of a telecommunication or computing system into seven abstraction layers.

  • TCP operates at the transport layer (Layer 4) of the OSI model.

  • OSI model includes layers like p...

View all Software Development Engineer Intern interview questions
Are these interview questions helpful?
A Key Account Manager was asked
Q. What is the most difficult accounting situation you handled?
Ans. 

The most difficult accounting situation I handled was resolving a complex financial discrepancy in a multinational company.

  • Identifying and reconciling discrepancies in financial records

  • Coordinating with multiple departments and stakeholders

  • Analyzing large volumes of data to identify the root cause

  • Implementing corrective measures to prevent future discrepancies

  • Ensuring compliance with accounting standards and regul...

View all Key Account Manager interview questions
A Software Developer was asked
Q. Write a FIFO program for tokenization of customers.
Ans. 

A FIFO tokenization program manages customer tokens in a queue, processing them in the order they arrive.

  • Use a queue data structure to implement FIFO behavior.

  • Enqueue a customer token when they arrive: e.g., queue.enqueue('Customer1').

  • Dequeue a customer token when processing: e.g., queue.dequeue() returns 'Customer1'.

  • Maintain a list of active tokens for tracking: e.g., ['Customer1', 'Customer2'].

  • Handle edge cases ...

View all Software Developer interview questions
A Senior Database Developer was asked
Q. What is the difference between DELETE and TRUNCATE statements?
Ans. 

Delete removes specific rows while truncate removes all rows from a table.

  • Delete is a DML command while truncate is a DDL command.

  • Delete can be rolled back while truncate cannot be rolled back.

  • Delete is slower than truncate as it logs each row deletion while truncate does not.

  • Delete can have a WHERE clause to specify which rows to delete while truncate deletes all rows.

  • Delete does not reset the identity of the tab...

View all Senior Database Developer interview questions

BNY Interview Experiences for Freshers

37 interviews found

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
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
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Tell me about your self
  • Ans. 

    Experienced professional with a background in customer service and problem-solving skills.

    • Over 5 years of experience in customer service roles

    • Strong communication and interpersonal skills

    • Proven ability to handle difficult situations and find solutions

    • Bachelor's degree in Business Administration

  • Answered by AI
  • Q2. Tell me about shares and bonds
  • Ans. 

    Shares and bonds are types of investments. Shares represent ownership in a company, while bonds are debt securities issued by governments or corporations.

    • Shares represent ownership in a company, giving the shareholder voting rights and potential dividends.

    • Bonds are debt securities issued by governments or corporations, where the issuer promises to repay the bondholder the principal amount plus interest at a specified d...

  • Answered by AI
  • Q3. What is your salary expectation
  • Ans. 

    I am looking for a competitive salary based on my experience, skills, and the responsibilities of the position.

    • Research the average salary range for the position in the industry and location

    • Consider your own experience, skills, and qualifications

    • Be prepared to negotiate based on the benefits and opportunities offered by the company

  • Answered by AI

Intern Interview Questions & Answers

user image Ayush Raj

posted on 20 Nov 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Aptitude Test 

Aptitude was good proctored but basic questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. Introduce yourself
  • Ans. 

    I am a recent graduate with a degree in Computer Science and a passion for coding and problem-solving.

    • Recent graduate with a degree in Computer Science

    • Passionate about coding and problem-solving

    • Strong communication and teamwork skills

  • Answered by AI
  • Q2. Basic subject knowledge

Associate Analyst Interview Questions & Answers

user image Ravi Ghantewad

posted on 5 Jun 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - One-on-one 

(2 Questions)

  • Q1. What is corporate action and its type ?
  • Ans. 

    Corporate action refers to events initiated by a public company that impact its shareholders and securities.

    • Types of corporate actions include dividends, stock splits, mergers and acquisitions, rights issues, and bonus issues.

    • Dividends are payments made to shareholders from a company's profits.

    • Stock splits involve dividing existing shares into multiple shares to lower the share price.

    • Mergers and acquisitions are when t...

  • Answered by AI
  • Q2. What is derivative?
  • Ans. 

    A derivative is a financial contract whose value is derived from the performance of an underlying asset, index, or interest rate.

    • Derivatives can be used for hedging, speculation, or arbitrage.

    • Common types of derivatives include options, futures, forwards, and swaps.

    • For example, a stock option gives the holder the right to buy or sell a stock at a specified price within a certain time frame.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Trade life cycle
  • Q2. Journal entries

Interview Preparation Tips

Interview preparation tips for other job seekers - Good company
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Feb 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

The aptitude test contains four sections first is all about basic finance questions account related second genral quant questions and third is all about excel basic excel questions.

Round 2 - One-on-one 

(3 Questions)

  • Q1. Tell me about your self
  • Ans. 

    I am a detail-oriented financial analyst with a strong background in financial modeling and data analysis.

    • I have a Bachelor's degree in Finance from XYZ University

    • I have 2 years of experience working as a financial analyst at ABC Company

    • Proficient in Excel, financial modeling, and data analysis tools such as Tableau

    • Strong analytical skills and ability to interpret complex financial data

    • Excellent communication and prese...

  • Answered by AI
  • Q2. What do mean by derivatives
  • Ans. 

    Derivatives are financial instruments whose value is derived from an underlying asset or group of assets.

    • Derivatives can be used for hedging risk, speculating on price movements, or gaining exposure to assets without owning them.

    • Common types of derivatives include options, futures, forwards, and swaps.

    • Derivatives can be traded on exchanges or over-the-counter (OTC).

    • They are often used by investors, companies, and finan...

  • Answered by AI
  • Q3. What is power bi that you mentioned in your resume what did you do in power bi what kind of project you done currently with help of power bi.
  • Ans. 

    Power BI is a business analytics tool by Microsoft used for data visualization and reporting.

    • I used Power BI to create interactive dashboards and reports for financial analysis.

    • I connected Power BI to various data sources to gather and analyze financial data.

    • One project involved creating a financial performance dashboard for tracking key metrics like revenue, expenses, and profitability.

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Basic resume related questions
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Company Website and was interviewed in Oct 2023. There were 2 interview rounds.

Round 1 - Coding Test 

On hacker rank duration was 90 min and 3 que to attempt and pass all the test cases

Round 2 - Technical 

(4 Questions)

  • Q1. About basic fundamentals about cn and oops and funfamental que and at the end a 5 min hr session by the interviewer itself
  • Q2. What is adressing mode and its types
  • Ans. 

    Addressing mode is a technique used in computer architecture to specify how to calculate the effective address of an operand.

    • Addressing mode determines how the CPU accesses data from memory

    • Types of addressing modes include direct, indirect, indexed, and register

    • Examples: direct addressing mode - MOV A, 1000H, indirect addressing mode - MOV A, [BX], indexed addressing mode - MOV A, [BX+SI], register addressing mode - MO...

  • Answered by AI
  • Q3. What is tcp osi difference
  • Ans. 

    TCP is a transport layer protocol while OSI is a reference model for network communication.

    • TCP is a protocol responsible for establishing and maintaining a connection between two devices.

    • OSI is a conceptual framework that standardizes the functions of a telecommunication or computing system into seven abstraction layers.

    • TCP operates at the transport layer (Layer 4) of the OSI model.

    • OSI model includes layers like physic...

  • Answered by AI
  • Q4. Reverse linkedlist in 3 steps
  • Ans. 

    Iterate through the linked list and reverse the pointers in 3 steps

    • Iterate through the linked list and keep track of the previous, current, and next nodes

    • Update the pointers to reverse the direction of the nodes

    • Repeat the process until the end of the linked list is reached

  • Answered by AI

Interview Preparation Tips

Topics to prepare for BNY Software Development Engineer Intern interview:
  • linked list
  • OOPS
  • computer neworks
Interview preparation tips for other job seekers - be consistent in your cosing

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a dedicated Senior Associate with extensive experience in project management and team leadership, driving successful outcomes.

    • Project Management: Led a cross-functional team to deliver a major project three weeks ahead of schedule, improving client satisfaction.

    • Team Leadership: Mentored junior associates, resulting in a 20% increase in team productivity and a more cohesive work environment.

    • Analytical Skills: Condu...

  • Answered by AI
  • Q2. Technical question

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well
Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
No response

I applied via Approached by Company and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. What is the toughest situation you handled in accounting
  • Ans. 

    I navigated a complex financial audit that revealed discrepancies, requiring strategic problem-solving and stakeholder communication.

    • Identifying Discrepancies: During a routine audit, I discovered significant discrepancies in revenue recognition practices that could have led to compliance issues.

    • Stakeholder Engagement: I organized meetings with department heads to discuss findings, ensuring transparency and collaborati...

  • Answered by AI

BNY Interview FAQs

How many rounds are there in BNY interview for freshers?
BNY interview process for freshers usually has 2-3 rounds. The most common rounds in the BNY interview process for freshers are Technical, One-on-one Round and HR.
How to prepare for BNY interview for freshers?
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, Test Cases, Test Scenarios, Testing Tools and Usability Testing.
What are the top questions asked in BNY interview for freshers?

Some of the top questions asked at the BNY interview for freshers -

  1. What are the key concepts of computer science and data structures and algorithm...read more
  2. In this technical round, the interviewer asked me to write a program for tokeni...read more
  3. what is adressing mode and its ty...read more
What are the most common questions asked in BNY HR round for freshers?

The most common HR questions asked in BNY interview are for freshers -

  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.1/5

based on 22 interview experiences

Difficulty level

Easy 13%
Moderate 87%

Duration

Less than 2 weeks 87%
2-4 weeks 13%
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.6k 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.6k Reviews and Ratings
Vice President, Counsel VI

Pune

7-12 Yrs

₹ 14-53.5 LPA

Senior Associate, Front-End Engineer

Madurai,

Tiruppur

+4

5-10 Yrs

Not Disclosed

Vice President, Infrastructure Services II

Pune,

Chennai

10-15 Yrs

₹ 13-55 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

₹10.9 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 - ₹8 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