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 Summer Associate Interview Questions and Answers

Updated 9 Apr 2024

BNY Summer Associate Interview Experiences

1 interview found

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

Leetcode Questions were of medium and hard level

Round 2 - Technical 

(1 Question)

  • Q1. Code Pair round , 2 coding questions were asked .

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I was interviewed in Dec 2023.

Round 1 - Technical 

(1 Question)

  • Q1. Tell me about a time you approached confidentiality
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Digital Interview 

(1 Question)

  • Q1. Why this position in this area?

Interview Preparation Tips

Interview preparation tips for other job seekers - Online interview, pretty technical and stressful
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. How do you keep up with multiple deadlines
  • Ans. 

    I prioritize tasks, use a calendar, break down tasks into smaller steps, and communicate with team members.

    • Prioritize tasks based on deadlines and importance

    • Use a calendar or task management tool to track deadlines

    • Break down tasks into smaller steps to manage time effectively

    • Communicate with team members to coordinate deadlines and workload

  • Answered by AI
  • Q2. Tell me about yourself
  • Ans. 

    I am a motivated and detail-oriented individual with a strong background in finance and a passion for problem-solving.

    • Graduated with a degree in Finance from XYZ University

    • Completed internships at ABC Investment Bank and DEF Consulting firm

    • Proficient in financial modeling and analysis

    • Strong communication and teamwork skills

    • Passionate about finding innovative solutions to complex problems

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

(2 Questions)

  • Q1. What is happening in the markets
  • Ans. 

    The markets are currently experiencing volatility due to global economic uncertainty and geopolitical tensions.

    • Global economic uncertainty, such as trade tensions between US and China, Brexit negotiations, and slowing growth in major economies

    • Geopolitical tensions, including conflicts in the Middle East and North Korea's nuclear program

    • Market reactions to central bank policies and interest rate changes

    • Impact of COVID-1

  • Answered by AI
  • Q2. What do you know about our team
  • Ans. 

    Our team is known for its diverse expertise in various practice areas and strong collaborative culture.

    • Diverse expertise in various practice areas

    • Strong collaborative culture

    • Known for delivering high-quality work efficiently

  • Answered by AI

Interview Questionnaire 

4 Questions

  • Q1. One coding question.
  • Q2. Questions on Data Structures
  • Q3. Logical Question: You are a captive. If you say the right answer, the assasin will hang you, if you say the wrong answer, he will shoot you. How do you escape?
  • Q4. Other aptitude questions

Interview Preparation Tips

Round: Other Interview
Experience: One year since I took the interview, so no idea exactly what questions they asked. But I was asked to write the code on paper in front of him and was asked to debug it. Some puzzles and aptitude questions along with other basic coding questions. It was great that the guy was interactive and started asking about my projects and college life.
Btw the answer to the logical question is: I should say " you will shoot me". Paradoxical.
Tips: Feel free to ask anything that you would like to know from them. Also frankly say that you don't know a certain topic if you have no clue what it is about. They don't like people wasting their time.

Round: HR Interview
Experience: This was not exactly a technical interview. He asked me to write a code to find the day of week when a certain date in any year of the calendar is given. I answered it and then he starting asking general questions as to why do u want to join the company, etc.
I gave answers to most of them convincingly. But I kept him engaged by explaining my life at college, the extra curriculars I did at college. Also I asked him about his experience as a software engineer. I asked him to reflect upon his career and how I should approach about my career.
Tips: The best part about HR interviews is they expect you to ask them lots and lots of questions. The more they are engaged, the more are your chances of impressing and getting selected. And more importantly, ask the interviewer about his experience with the present firm. This also works with my manager when ever he has a one on one with me :P
Cheers and all the best.

Skills: Soft Skills, General Aptitude, LOGICAL THINKING ABILITIES, Coding Skills And Knowledge On Data Structures
College Name: IIT Hyderabad

I was interviewed in May 2017.

Interview Questionnaire 

6 Questions

  • Q1. Can string class be extended
  • Ans. 

    Yes, the string class can be extended in most programming languages.

    • Inheritance can be used to extend the functionality of the string class.

    • By creating a new class that inherits from the string class, additional methods and properties can be added.

    • Extending the string class allows for customization and adding specific functionality to strings.

    • Example: In Python, the string class can be extended by creating a new class

  • Answered by AI
  • Q2. What are the implecit object in JSP
  • Ans. 

    Implicit objects in JSP are predefined objects that are available for use without any declaration or initialization.

    • Implicit objects in JSP include request, response, session, application, out, config, pageContext, page, exception, and others.

    • These objects provide access to various aspects of the JSP environment and can be used to perform common tasks.

    • For example, the request object allows access to HTTP request parame...

  • Answered by AI
  • Q3. How does hash map works
  • Ans. 

    A hash map is a data structure that uses a hash function to map keys to values.

    • Hash map stores key-value pairs

    • It uses a hash function to compute an index for each key

    • Collisions can occur when two keys hash to the same index

    • Hash maps provide fast access to values based on their keys

  • Answered by AI
  • Q4. Difference between string buffer and string builder
  • Ans. 

    StringBuffer and StringBuilder are both used to manipulate strings, but StringBuffer is thread-safe while StringBuilder is not.

    • StringBuffer is synchronized, making it safe for use in multi-threaded environments.

    • StringBuilder is not synchronized, making it faster but not thread-safe.

    • StringBuffer is preferred when multiple threads are involved, while StringBuilder is preferred for single-threaded scenarios.

    • Both classes p...

  • Answered by AI
  • Q5. What is MVC
  • Ans. 

    MVC is a software architectural pattern that separates an application into three main components: Model, View, and Controller.

    • Model represents the data and business logic of the application.

    • View is responsible for displaying the user interface.

    • Controller handles user input, updates the model, and interacts with the view.

    • MVC promotes separation of concerns and modularity in software development.

    • Example: In a web applica...

  • Answered by AI
  • Q6. What are the annotation used in RESTFULL web services
  • Ans. 

    Annotations used in RESTful web services

    • 1. @Path - Specifies the URI path for the resource

    • 2. @GET - Specifies that the method handles HTTP GET requests

    • 3. @POST - Specifies that the method handles HTTP POST requests

    • 4. @PUT - Specifies that the method handles HTTP PUT requests

    • 5. @DELETE - Specifies that the method handles HTTP DELETE requests

    • 6. @PathParam - Binds the value of a URI template parameter to a method paramete...

  • Answered by AI

Interview Preparation Tips

Skills: Java Application Development

Skills evaluated in this interview

I was interviewed in Dec 2016.

Interview Preparation Tips

Round: Test
Experience: Programming section had basic questions on C++ & data structures.
Tips: Try to score maximum in aptitude test, they consider your score while placement.
Duration: 2 hours
Total Questions: 35

Round: Technical Interview 1
Experience: Questions asked during this round:
Introduce yourself.
Questions on projects & internships.
Questions on Final year project in detail (max part of interview was on final year project).
Basic concepts of C++.
Few programs on C++.
Puzzles.


Round: Technical Interview 2
Experience: ? 2 interviewers were there.
? Stressed interview.
? They grilled me a lot on C++ & data structures.
One interviewer started asking questions, and before I could complete my answer, another used to cut me in
middle & start asking another question. I realized it

Interview Preparation Tips

Round: Test
Experience: It was an easy test overall, basic programming things were asked in technical part of test whereas aptitude questions were also relatively easy.
Tips: You just need to know things which were there in CS101 for technical part of test .Nothing else is required.
Duration: 30 minutes
Total Questions: 1

Skills: Problem
College Name: Indian Institute of Technology, Bombay

Interview Questionnaire 

8 Questions

  • Q1. A nimbu paani wala spends all of his daily income on his daily expenditure except only as much as would enable him to conduct equal business on the next day. He now wants to aim at starting to save for the...
  • Ans. 

    Advise the nimbu paani wala on how to start saving for the future.

    • Encourage him to set a savings goal and create a budget to achieve it.

    • Suggest he start small by saving a small percentage of his daily income.

    • Recommend he explore investment options to grow his savings over time.

    • Remind him to continue setting aside enough money for his daily expenses.

    • Provide resources or education on financial literacy to help him make i

  • Answered by AI
  • Q2. An IT sector multinational wants to expand its business into more countries. Suggest a strategy. This was the question given in the VC round by the Partner. It was followed by a lot of numerical and qualit...
  • Ans. 

    To expand into more countries, the IT sector multinational can adopt a market entry strategy that includes market research, partnerships, localization, and scalability.

    • Conduct thorough market research to identify potential countries for expansion

    • Establish strategic partnerships with local companies to leverage their knowledge and networks

    • Adapt products and services to meet the specific needs and preferences of each tar...

  • Answered by AI
  • Q3. An IT sector company wants to increase the number of BPOs in India. Devise a metric that will help it rank cities according to their favourability to host this BPO
  • Ans. 

    A metric to rank Indian cities for BPOs

    • Consider factors like availability of skilled workforce, infrastructure, cost of living, and government policies

    • Weight each factor based on its importance to the company

    • Collect data on each factor for different cities and assign scores

    • Rank cities based on their total score

    • Examples of factors: number of universities, quality of transportation, cost of office space, tax incentives

    • Re...

  • Answered by AI
  • Q4. The supply chain head in an auto company in India is frustrated about manufacturing stopping frequently because of parts not being readily available at the assembly line and comes to you for help. What cou...
  • Ans. 

    The probable reasons for manufacturing stoppages due to parts unavailability in an auto company in India and suggested solutions.

    • Probable reasons: supply chain disruptions, inventory management issues, quality control problems, lack of communication with suppliers

    • Investigate by analyzing historical data, conducting supplier audits, implementing real-time tracking systems

    • Solutions: improve forecasting accuracy, establis...

  • Answered by AI
  • Q5. How many airplanes are flying in the Indian sky at the moment?
  • Ans. 

    The exact number of airplanes flying in the Indian sky at the moment is not available.

    • The number of airplanes flying in the Indian sky changes constantly.

    • It depends on factors such as time of day, weather conditions, and airline schedules.

    • However, on average, there are around 2,000 flights in the Indian airspace at any given time.

    • This number includes both domestic and international flights.

    • The Indian aviation industry ...

  • Answered by AI
  • Q6. How many years will it take the Delhi Metro to break even?
  • Ans. 

    The Delhi Metro is expected to break even in 2025.

    • The Delhi Metro has been expanding rapidly and has seen a steady increase in ridership.

    • The metro has been able to generate revenue through advertising and property development.

    • The government has also provided financial support to the metro.

    • Based on current projections, the Delhi Metro is expected to break even in 2025.

  • Answered by AI
  • Q7. Why not MBA?
  • Q8. Interview-4

Interview Preparation Tips

Round: Interview
Experience: The interviewer also said: "It seems like you are more interested in finance and BCG is only the second option. We don’t like being the second option." All these questions required some delicate handling.

Round: Interview
Experience: This was a sort of stress interview because the interviewer seemed disinterested and dissatisfied with everything i said and kept on demanding for more while impressing that whatever I am coming up with was really of no significance.
Tips: What worked in my favor was I dint get flustered by his attitude, kept smiling and working at the problem objectively. When I would come to the end of one line of thinking and would have no more answers to his “What next” I would frankly tell him that and ask him in return for more suggestions. It resulted in him complimenting my way of thinking at the end and saying that I was one of the best and most practical candidates that he had interviewed that day.

Round: Interview
Experience: 1. Both the above questions were the part of one interview.
2. The interviewer didn't want me to solve the case fully in either instance. He just wanted to see my structure and evaluate my thinking process.

Round: Interview
Experience: Almost all my interviews went well with BCG except the last VC one, because by then I was complete drained out and could hardly think. I also did some minor silly mistakes in a couple of the smaller cases while dealing with numbers, but otherwise everyone seemed to appreciate my structuring of the cases. Some of the interviewers also delved into the HR side frequently.

College Name: IIT KANPUR

Interview Questionnaire 

11 Questions

  • Q1. Print all nodes at a distance k from a given node in binary tree?
  • Q2. RandN function : which generates random number in [1,2,3..N] with equal probability. Given rand5, write a code for rand7 using rand5
  • Ans. 

    Code for rand7 using rand5 function

    • Use rand5 twice to generate a number in [1,25] with equal probability

    • If the number is greater than 21, discard and try again

    • Otherwise, return (number mod 7) + 1

  • Answered by AI
  • Q3. Puzzle: Using all(8,8,3,3) and only operators(*,/,-,+), make 24
  • Q4. How do you implement LRU cache?
  • Ans. 

    LRU cache is implemented using a doubly linked list and a hash map.

    • Create a doubly linked list to keep track of the order of elements in the cache.

    • Create a hash map to store the key-value pairs of the cache.

    • When a new element is added, check if the cache is full. If it is, remove the least recently used element from the linked list and the hash map.

    • When an element is accessed, move it to the front of the linked list to...

  • Answered by AI
  • Q5. Your current project in Company? A lot of questions from CV? Discussion went on for about 15 minutes?
  • Q6. Then had a lot of questions around java script and java. About different design patterns and web services
  • Q7. A lot of questions around java, collections frameworks, multi threading and so on. (This took a good 25-30 minutes )
  • Q8. A strategy question. It would be asked depending on which team you are being interviewed for.Mine was some apple seller problem. Here knowledge of real world scenario helps. Advice is to observe things aro...
  • Q9. Write down function to select pivot element randomly in Quick Sort
  • Ans. 

    Function to randomly select pivot element in Quick Sort

    • Generate a random index within the range of the array

    • Return the element at the randomly generated index as the pivot

  • Answered by AI
  • Q10. He asked me what is a data structure and why do we use one. Explained him. He asked some real life example of stack and queue. All I could gave him was programming examples but when he insisted on real li...
  • Q11. As we were talking very much on each question. He felt like talking more and from tech he went around for some biggest learning from a mistake/biggest achievement of life kind of questions. There were oth...

Interview Preparation Tips

General Tips: I recently interviewed with Goldman Sachs, and had 4 rounds of interview with them at their campus in Bangalore.
Skills: Algorithm, Data structure
College Name: na

Skills evaluated in this interview

BNY Interview FAQs

How many rounds are there in BNY Summer Associate interview?
BNY interview process usually has 2 rounds. The most common rounds in the BNY interview process are Coding Test and Technical.
How to prepare for BNY Summer Associate 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 Analytical, Computer Proficient, SAP and Training.

Tell us how to improve this page.

BNY Summer Associate Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Wells Fargo Interview Questions
3.9
 • 569 Interviews
Citicorp Interview Questions
3.7
 • 568 Interviews
Bajaj Finserv Interview Questions
4.0
 • 520 Interviews
HSBC Group Interview Questions
4.0
 • 491 Interviews
Goldman Sachs Interview Questions
3.5
 • 408 Interviews
American Express Interview Questions
4.2
 • 364 Interviews
UBS Interview Questions
3.9
 • 339 Interviews
Morgan Stanley Interview Questions
3.7
 • 309 Interviews
View all
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