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

Clear (1)

BNY SDE Interview Questions and Answers

Updated 2 Dec 2024

BNY SDE Interview Experiences

3 interviews found

SDE Interview Questions & Answers

user image Anonymous

posted on 17 Sep 2023

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Campus Placement and was interviewed in Aug 2023. There were 4 interview rounds.

Round 1 - Coding Test 

4 questions Competitive Programming and DSA based , 2 hours were given

Round 2 - Technical 

(3 Questions)

  • Q1. Dsa based questions , and dbms
  • Q2. Dsa get all p and c or a given string
  • Q3. Basic questions about project
Round 3 - Technical 

(1 Question)

  • Q1. Dbms , sql , project discussion and some general questions
Round 4 - Technical 

(1 Question)

  • Q1. Common HR based question and er diagrams (DBMS) and few basic problems

Interview Preparation Tips

Interview preparation tips for other job seekers - They need good problem solvers
if you are in 1st or 2nd year of college , do Competitive Programming
else dsa and dbms

Rate your
company

🤫 100% anonymous

How was your last interview experience?

Share interview

SDE Interview Questions & Answers

user image Anonymous

posted on 2 Dec 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Dec 2023. There were 4 interview rounds.

Round 1 - Coding Test 

4 questions 1 easy 2 medium 1 hard

Round 2 - One-on-one 

(2 Questions)

  • Q1. Projects releted
  • Q2. Sql queries were asked
Round 3 - One-on-one 

(2 Questions)

  • Q1. About my project they grind you on the tech-stack you have worked on
  • Q2. Few basic system design questions
Round 4 - HR 

(2 Questions)

  • Q1. Why do you want to join bny
  • Q2. How was your clg life what all things you did in it

SDE Interview Questions Asked at Other Companies

asked in Infosys
Q1. Return Subsets Sum to K Problem Statement Given an integer array ... read more
asked in Nagarro
Q2. Partition to K Equal Sum Subsets Problem Given an array of intege ... read more
asked in Nagarro
Q3. Sort a "K" Sorted Doubly Linked List Given a doubly-linked list w ... read more
asked in Nagarro
Q4. Maximum Meetings Selection You are tasked with scheduling meeting ... read more
asked in Amazon
Q5. There is a 12 km road and a contractor who is in-charge of repair ... read more

SDE Interview Questions & Answers

user image rohan thakur

posted on 31 Oct 2023

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Oct 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all Resume tips
Round 2 - Technical 

(2 Questions)

  • Q1. Basics of OOP, DBMS, OS
  • Q2. Some basic DSA questions, very basic
Round 3 - Technical 

(1 Question)

  • Q1. Normal discussion about projects, design patterns etc.
Round 4 - Technical 

(1 Question)

  • Q1. Manager round - Asked to give class diagram of one of my projects.

Interview Preparation Tips

Interview preparation tips for other job seekers - Grasp basics of your projects and you'll be good to go.

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

Array linkedlist and also value assesment also included

Round 2 - Technical 

(2 Questions)

  • Q1. Oops questions abstraction inheritrance
  • Q2. Dbms joins left join right join

SDE Interview Questions & Answers

Citicorp user image Anonymous

posted on 16 Oct 2024

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

ONLINE CODING TEST WITH BASIC CODING AND DSA QS

Interview experience
4
Good
Difficulty level
Easy
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

Moderate to easy level questions were asked mostly of arrays and linked list and stack

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep up with all ds algo concepts and oodp
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Indeed and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Question were asked including mcq questions

Round 2 - Coding Test 

After aptitude this coding test was carried out

Interview experience
4
Good
Difficulty level
-
Process Duration
6-8 weeks
Result
Not Selected

I was interviewed in Jan 2024.

Round 1 - Coding Test 

Initial Online Assessment - Easy to medium LC

Round 2 - Coderpad 

(2 Questions)

  • Q1. Live coding session on coderpad
  • Q2. Couple of behavioral questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Instahyre and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Coding Test 

INTERNAL HARD LEETCODE

Round 2 - Aptitude Test 

Easy apptitiue question

Interview Preparation Tips

Interview preparation tips for other job seekers - GENernal discuiion with hr

Interview Preparation Tips

Round: Technical Interview
Experience: Technical on paper test questions:(dis was only for 12 among d 26 shortlisted ppl after apti...others directly had interviews)
5 wer selected in this test who wer nw sent for interviews
TECHNICAL INTERVIEW: (pls list the questions asked in all the rounds)
26 shortlisted after apti (14 directly for interviews & 12 had one more technical on paper test...mentioned above)
der wer min 2 technical rounds for each of them...max were 5

- You are given course dependencies
A->B,C
B->D
C->A
D->nothing
The above dependencies mean...if you want to take course A...you should take courses B and C first....To take B,Course D must be taken first....D is an independent course and can be taken without any prior requirements.
Now you are told these dependencies.Come up with an appropriate data structure to represent these dependencies.Then write a code that finds out all the courses that the student can take up...in this case the student can first take course D because its independent.Now that course D has been taken he can next take up B as it depends on B alone...But the courses A and C can never be taken because they depend on each other...So here all the courses that can be taken are B and D.
After i wrote the code....he asked for all possible test cases
-Given an array of length N....It can be filled with nos. only from 1 to N....find which nos are repeated in the array
-Given pointers to two nodes in a binary tree....find their least common ancestor...each node has pointer to only the parent node...not the left and right child..
-In a binary tree(Not necessarily a BST)...suppose the weight of any node is defined as the product of the key value of the node and the level of the node(Root at level 1)...find the node with maximum weight in the binary tree
-A sorted array of size n is right circularly rotated k times and this rotated array is given to you as input...Find out the value of k in log n time .
-There are some processes running at time T....and there are processes running at time T+30.
You have to find out
1)Which processes died at time T+30,which were alive at time T
2)Which are the new processes at time T+30,which were not there at time T
3)Which are the processes that were there at time T and are still running at time T+30
What data structure will you use to represent the process lists and write code to find out the answers to the 3 questions above
-Given a binary search tree...and a target sum...starting at the root...which all paths add up to the target sum?...if there are multiple paths....return the path with least no. of nodes.


College Name: Veermata Jijabai Technological Institute, Mumbai [ VJTI ]
Contribute & help others!
anonymous
You can choose to be anonymous

BNY Interview FAQs

How many rounds are there in BNY SDE interview?
BNY interview process usually has 4-5 rounds. The most common rounds in the BNY interview process are Technical, Resume Shortlist and Coding Test.
What are the top questions asked in BNY SDE interview?

Some of the top questions asked at the BNY SDE interview -

  1. How was your clg life what all things you did in...read more
  2. common HR based question and er diagrams (DBMS) and few basic probl...read more
  3. Manager round - Asked to give class diagram of one of my projec...read more

Recently Viewed

JOBS

Browse jobs

Discover jobs you love

COMPANY BENEFITS

KNR Constructions

20 benefits

Tell us how to improve this page.

BNY SDE Interview Process

based on 3 interviews

Interview experience

4.7
  
Excellent
View more

Anonymously discuss salaries, work culture, and many more

Get Ambitionbox App

SDE Interview Questions from Similar Companies

Citicorp SDE Interview Questions
3.7
 • 1 Interview
View all
BNY SDE Salary
based on 8 salaries
₹13 L/yr - ₹21 L/yr
7% less than the average SDE Salary in India
View more details

BNY SDE Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
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
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent