Open In App

BNY Mellon Interview Experience for SDE 2023

Online Test (4 coding questions): 1 easy,2 medium,1 hard (I have solved 1 medium and 1 hard completely, easy 11/13 test cases and another medium 5/13) 

Easy: Given a range (L, R) print all the distinct character numbers in the given range 



test case: given L=10 and R=20 we have to print [10,12,13,14,15,16,17,18,19,20]

we are not printing 11 because it is having repeated characters 

Medium: Given 3 points that indicate vertices of a triangle and given two more points P,Q 



print 1 if P and Q both lies inside of the triangle
print 2if P and Q both lies outside of the triangle
print 3 if P lies inside and Q lies outside
else 4

https://www.geeksforgeeks.org/check-whether-a-given-point-lies-inside-a-triangle-or-not/amp/

Medium: Given a string print lexicographical largest subsequence of all possible lengths 

test case : "abcd"
output ["d","cd","bcd","abcd"]
test case 2: "dbca"
output:["d","dc","dca","dbca"]

Hard:

https://www.geeksforgeeks.org/minimum-number-of-given-operations-required-to-convert-a-permutation-into-an-identity-permutation

Interviews happened Offline Face To Face in our campus 

Round1 (Technical round)(30mins):

14 students were eliminated in this round

Round2(Technical Round)(45min):

test case: 

12345
67890
12345
output : 123450543216

3 students were eliminated in this round

Important:

Round3 (Tech + HR )(30min)

14 people were selected for the full-time role

Since the process happened offline, We had a great time with the interviewers and HR 

Tips:

Article Tags :