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
3.9

based on 4k Reviews

Filter interviews by

BNY Software Development Engineer Intern Interview Questions and Answers

Updated 12 Apr 2024

BNY Software Development Engineer Intern Interview Experiences

1 interview found

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 questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Medium leetcode question on array list

Round 2 - One-on-one 

(4 Questions)

  • Q1. Core java and collections, exceptions and threading
  • Q2. Core java collections
  • Q3. Multi threading
  • Q4. Executor framework
Round 3 - One-on-one 

(1 Question)

  • Q1. Threading related questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

There were three coding questions.

Round 2 - Technical 

(5 Questions)

  • Q1. Could you provide a thorough explanation of the project?
  • Q2. OOps Concepts and question from the technical subjects
  • Q3. Why Spring Boot
  • Q4. JWT Authentication
  • Q5. Docker and Kubernetes
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

They posed questions assessing logical and analytical aptitude.

Round 2 - Coding Test 

After completing and passing the aptitude round, I was allowed to take the coding round exam, where the questions ranged from easy to medium level.

Round 3 - Technical 

(3 Questions)

  • Q1. Basic concepts of oops in java. DBMS questions.
  • Q2. Questions related to my projects not in dept.
  • Q3. They asked me to implement a stack using queues.

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus primarily on the fundamentals such as Data Structures, Object-Oriented Programming, Computer Networks, Operating Systems, Database Management Systems, and standard SQL query questions.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Oct 2024. There were 5 interview rounds.

Round 1 - Coding Test 

Test was for Web Development - React
75min test
3 Questions
1 Coding Question
2 Scenario based questions

Round 2 - Technical 

(2 Questions)

  • Q1. React Optimization techniques
  • Q2. React Advantages
Round 3 - Behavioral 

(1 Question)

  • Q1. How to debug in production environment?
Round 4 - Behavioral 

(1 Question)

  • Q1. Challenges faced during work and how you overcome?
Round 5 - HR 

(1 Question)

  • Q1. Why you choose Wells fargo over other offers?
Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. They grind u in javascript,typescript
  • Q2. Html css, angular
  • Q3. Deep preparation needed

Interview Preparation Tips

Interview preparation tips for other job seekers - Not an easy interview
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
No response

I applied via Company Website and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Project Architecture
Round 2 - Technical 

(1 Question)

  • Q1. Informatica tech questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Approached by Company and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. OOP basic about the concept
  • Q2. Ms Sql based sql queries
Round 2 - Technical 

(2 Questions)

  • Q1. How exception handing in api
  • Ans. 

    Exception handling in API involves catching and handling errors that occur during API execution.

    • Use try-catch blocks to catch exceptions and handle them appropriately

    • Throw custom exceptions to provide meaningful error messages to API consumers

    • Use status codes to indicate the outcome of API requests (e.g. 200 for success, 400 for client errors, 500 for server errors)

    • Log exceptions to track errors and troubleshoot issues

    • ...

  • Answered by AI
  • Q2. Code for multiplication table
  • Ans. 

    Code to generate a multiplication table in a programming language

    • Use nested loops to iterate through rows and columns

    • Print the product of row and column for each cell

    • Consider formatting the output for better readability

  • Answered by AI

Skills evaluated in this interview

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

I applied via Campus Placement

Round 1 - Coding Test 

DP graphs strings it was good

Round 2 - Technical 

(2 Questions)

  • Q1. Reverse a linkded list
  • Ans. 

    Reverse a linked list by changing the direction of pointers

    • Start with three pointers: current, previous, and next

    • Iterate through the list, updating pointers to reverse the direction

    • Return the new head of the reversed list

  • Answered by AI
  • Q2. Print fibonacci series
  • Ans. 

    The Fibonacci series is a sequence of numbers where each number is the sum of the two preceding ones.

    • Start with two variables initialized to 0 and 1

    • Loop through desired number of iterations, adding the previous two numbers to get the next number

    • Print or store each number in the series

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via campus placement at Dwarkadas J Sanghvi College of Engineering, Mumbai and was interviewed in Nov 2023. There were 5 interview rounds.

Round 1 - Aptitude Test 

Quant Topics: Interests, Sequence and Series along with Missing items, Time and Distance/Work,
Verbal Topics: Comprehension, Corrections, Grammar etc
CS Core Subjects: DSA, OOPS, DBMS, OS

Overall Test Difficulty was Easy-Medium

Round 2 - Coding Test 

System asked to choose one of the programming languages from C, C++ or Java. (Note: You can't change the language once confirmed!)
There were 7 different coding questions along with code. You just need to debug the code to get the correct output.
DSA: Graphs (Basics), Linked Lists, Conditional Statements, and Arrays (Stack and Queue)

Overall Difficulty was Medium (tbh, it depends on the practice you have done!)

Round 3 - Technical 

(1 Question)

  • Q1. 1. Tell me about yourself 2. What tech stack(s) you have worked on? Why? Why not others? 3. SQL queries based on joins, nesting and aggregations 4. Logical reasoning questions 5. Previous internships exper...
Round 4 - Behavioral interview 

(1 Question)

  • Q1. 1. Tell me about yourself 2. Why you do seek to join this company? 3. Are you comfortable working in shifts? If yes, how will you manage your time? 4. SQL queries 5. Logical question: Total number of squar...
Round 5 - HR 

(1 Question)

  • Q1. 1. Tell me about your day. Walk me through it. 2. If given a coding problem, what is your preferred language? Why? 3. Walk me through your best project in your resume. Why/How/When did you make it? 4. Tell...

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well for the aptitude and DSA rounds with CS core subjects. Proofread your resume and study about the company, as it makes behavioral and HR questions easy to answer. Make them feel that you are the committed to your job, you will be assigned to and mainly to company.

BNY Interview FAQs

How many rounds are there in BNY Software Development Engineer Intern interview?
BNY interview process usually has 2 rounds. The most common rounds in the BNY interview process are Technical and Coding Test.
What are the top questions asked in BNY Software Development Engineer Intern interview?

Some of the top questions asked at the BNY Software Development Engineer Intern interview -

  1. what is adressing mode and its ty...read more
  2. what is tcp osi differe...read more
  3. reverse linkedlist in 3 st...read more

Tell us how to improve this page.

BNY Software Development Engineer Intern Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

Wells Fargo Interview Questions
3.9
 • 560 Interviews
Citicorp Interview Questions
3.7
 • 560 Interviews
Bajaj Finserv Interview Questions
4.0
 • 499 Interviews
HSBC Group Interview Questions
4.0
 • 489 Interviews
Goldman Sachs Interview Questions
3.6
 • 407 Interviews
American Express Interview Questions
4.2
 • 359 Interviews
UBS Interview Questions
4.0
 • 337 Interviews
Morgan Stanley Interview Questions
3.7
 • 304 Interviews
Bank of America Interview Questions
4.3
 • 234 Interviews
View all
Analyst
1.9k salaries
unlock blur

₹2 L/yr - ₹11.5 L/yr

Senior Analyst
1.7k salaries
unlock blur

₹3.8 L/yr - ₹15 L/yr

Senior Associate
1.2k salaries
unlock blur

₹11.7 L/yr - ₹25 L/yr

Intermediate Representative
1.1k salaries
unlock blur

₹2.6 L/yr - ₹7.2 L/yr

Vice President
961 salaries
unlock blur

₹15 L/yr - ₹51.1 L/yr

Explore more salaries
Compare BNY with

State Street Corporation

3.8
Compare

Northern Trust

3.7
Compare

HSBC Group

4.0
Compare

JPMorgan Chase & Co.

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