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
4.0

based on 3.9k Reviews

Filter interviews by

BNY Full Stack Developer Interview Questions, Process, and Tips

Updated 8 Nov 2022

BNY Full Stack Developer Interview Experiences

1 interview found

I applied via Recruitment Consulltant and was interviewed before Nov 2021. 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 tips
Round 2 - Coding Test 

Easy Questions based on Array and String Data Structure

Round 3 - Technical 

(3 Questions)

  • Q1. How does a website URL works
  • Ans. 

    A website URL is a unique address that identifies a web page on the internet.

    • URL stands for Uniform Resource Locator

    • It consists of a protocol (http/https), domain name, and path

    • The domain name is translated to an IP address using DNS

    • The path specifies the location of the resource on the server

    • Example: https://www.google.com/search?q=url

  • Answered by AI
  • Q2. Event loop in Javascript
  • Ans. 

    Event loop is a mechanism in JavaScript that handles asynchronous operations.

    • Event loop continuously checks the call stack and the task queue.

    • If the call stack is empty, it takes the first task from the queue and pushes it to the call stack.

    • Callbacks are added to the task queue when an asynchronous operation is completed.

    • Event loop ensures that the code runs in a non-blocking way.

    • Example: setTimeout() function adds a c...

  • Answered by AI
  • Q3. Simple Coding based, Given an array, find a pair with sum = k.
  • Ans. 

    Given an array, find a pair with sum = k.

    • Use a hash table to store the difference between k and each element in the array.

    • Iterate through the array and check if the current element is present in the hash table.

    • If it is present, return the pair of elements that add up to k.

  • Answered by AI
Round 4 - Technical 

(2 Questions)

  • Q1. Java Exceptions, Streams
  • Q2. Find first minimum and maximum number in an array using streams
  • Ans. 

    Find first minimum and maximum number in an array using streams

    • Use IntStream to convert array to stream of integers

    • Use min() and max() methods to find minimum and maximum values

    • Use findFirst() method to get the first occurrence of minimum and maximum values

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn Data structures like Array, String and LinkedList.
Basic concepts should be known

Skills evaluated in this interview

Interview questions from similar companies

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

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

Round 1 - One-on-one 

(1 Question)

  • Q1. 1. What is CRFT 2. Peek method in Java 8
  • Ans. 

    CRFT is a framework for building full-stack web applications using React, Flask, and TypeScript.

    • CRFT stands for React, Flask, and TypeScript, which are the technologies used in the framework

    • It allows developers to build full-stack web applications with a modern tech stack

    • CRFT provides a structured way to develop web applications by combining front-end and back-end technologies

  • Answered by AI

Skills evaluated in this interview

I was interviewed in Aug 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 90 minutes
Round difficulty - Medium

The test happened at 9 PM, and the duration was of 90 mins. The test was held on Codility platform.

  • Q1. Reach the destination

    Given a source point (sx, sy) and a destination point (dx, dy), the task is to check if it is possible to reach the destination point using the following valid moves:

    (a, b) -> (a...
  • Ans. Brute force approach

    The naive approach to solve this problem is to consider each and every possible move until we reach the destination.

     

    This can be done using recursion. Below is the algorithm:

     

    • Check for the bases:
      • If the source and destination coordinates are the same, return true.
      • Return false, if the x (or y) coordinate of source point is greater than the x (or y) coordinate of the destination point. As the...
  • Answered by CodingNinjas
  • Q2. Circular Move

    You have a robot currently standing at the origin (0, 0) of a two-dimensional grid and facing north direction. You are given a sequence of moves for the robot in the form of a string of size...

  • Ans. Optimal Approach

    Initialize a variable ‘direction’ with 0 which means that the robot is initially facing towards the north.

    direction: 0 -> Robot is facing towards the North
    direction: 1 -> Robot is facing towards the West 
    direction: 2 -> Robot is facing towards the South 
    direction: 3 -> Robot is facing towards the West

     

    Initialize two variables ‘x’ and ‘y’ as 0. They will represent the position ...

  • Answered by CodingNinjas
  • Q3. Buy and Sell Stock

    You are Harshad Mehta’s friend. He told you the price of a particular stock for the next ‘N’ days. You can either buy or sell a stock. Also, you can only complete at most 2-transactions....

  • Ans. Recursion

    This problem can be solved by solving its subproblems and then combining the solutions of the solved subproblems to solve the original problem. We will do this using recursion.

    Basically, we have to buy the stock at the minimum possible price and sell at the maximum possible price, keeping in mind that we have to sell the stock before buying it again.

     

     

    Below is the detailed algorithm: 

     

    1. Call ...
  • Answered by CodingNinjas
Round 2 - Video Call 

(1 Question)

Round duration - 45 minutes
Round difficulty - Easy

The timing for this round was around 10 AM. How to optimize website assets loading? Explain Hoisting in javascript.

  • Q1. Number Of Pairs With Given Sum

    You have been given an integer array/list(arr) and a number 'Sum'. Find and return the total number of pairs in the array/list which when added, results equal to the ...

  • Ans. Brute Force Approach
    • Initialize the ans = 0
    • Run two loops first from i = 0 to n-1 and second from j = i+1 to  n-1 and if arr[i] + arr[j] == Sum then increase the ans by 1.
    • Return ans
    Space Complexity: O(1)Explanation:

    O(1)

     

    As constant extra space is used.

    Time Complexity: O(n^2)Explanation:

    O(N^2), where N is the size of the array.


    As we are running two nested loops of size N.

  • Answered by CodingNinjas
Round 3 - Coding Test 

(4 Questions)

Round duration - 30 minutes
Round difficulty - Easy

This was a problem solving round and consisted of puzzles and mathematical problems.

  • Q1. Puzzle

    A man fell in a 50m deep well. He climbs 4 meters up and slips 3 meters down in one day. How many days would it take for him to come out of the well?

  • Q2. Puzzle

    Suppose you take 5 mins to think for a coding task, another 10 mins to code where you write 100 lines of code. You take a break of 5 mins every 10 mins. How much lines of code will you have written a...

  • Q3. Puzzle

    There is a room with a door (closed) and three light bulbs. Outside the room, there are three switches, connected to the bulbs. You may manipulate the switches as you wish, but once you open the door...

  • Q4. Puzzle

    You are given Rs 100 every week. Every day you put Rs 5 in you piggy bank except on Sunday you put Rs 10. You take a bus to college, one side trip costs Rs 4, you do 2 trips a day. You have your lunc...

Interview Preparation Tips

Professional and academic backgroundI completed Electronics & Communication Engineering from Punjab Engineering College(Deemed To be University). Eligibility criteriaAbove 7 CGPAAmerican Express interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, OOPS, OS, DBMSTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Be good at problem solving, accuracy and speed matters.
Tip 2 : Also prepare core CS subjects, OS, OOPS, DBMS.
Tip 3 : Be thorough with your resumé.

Application resume tips for other job seekers

Tip 1 : Keep at least 2 great projects on resume.
Tip 2 : Try to include only tech-related information in resumé( for SDE roles).

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Situation based questions,very complicated questions
  • Q2. Saga design patterns implementation , experience in designing saga design solution etc
  • Ans. 

    I have experience in implementing saga design patterns and designing saga solutions.

    • Saga design pattern is used to manage long-lived transactions across microservices.

    • It involves breaking down a transaction into smaller steps or events.

    • Each step is handled by a separate microservice.

    • If a step fails, the saga coordinator rolls back the previous steps.

    • I have implemented saga design patterns using tools like Apache Kafka

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It is not so good experience with Wells Fargo, was able to clear 1st round, but in 2nd round it was all situation based questions.

Skills evaluated in this interview

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
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Question Related to the DP and the Graph

Round 2 - Technical 

(2 Questions)

  • Q1. Kth Max Element in a Array
  • Ans. 

    Find the Kth maximum element in an array of strings.

    • Sort the array in descending order.

    • Return the element at index K-1.

  • Answered by AI
  • Q2. Coin Change and optimization through DP
  • Ans. 

    Coin change problem can be solved using dynamic programming to find the minimum number of coins needed to make a certain amount of change.

    • Use dynamic programming to build up solutions for smaller subproblems

    • Start by initializing an array to store the minimum number of coins needed for each amount from 0 to the target amount

    • Iterate through each coin denomination and update the array with the minimum number of coins need

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Project include in your Resume
  • Q2. HR common question

Skills evaluated in this interview

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

MCQ test consisting of 70 mcqs in 75 minutes from aptitude english and cs fundamentals. If cleared next paper 2 coding qs medium level

Round 2 - Technical 

(2 Questions)

  • Q1. Two sum leetcode problem
  • Q2. What problems you faced in your project
  • Ans. 

    I faced challenges with integrating third-party APIs and debugging complex logic.

    • Difficulty in understanding and implementing third-party APIs

    • Issues with data synchronization between different systems

    • Troubleshooting complex logic errors

    • Managing dependencies and version conflicts

    • Time constraints affecting problem-solving

  • Answered by AI
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
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at MET Institute of Computer Science, Mumbai and was interviewed in Apr 2023. 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 tips
Round 2 - Aptitude Test 

Logical,quants,coding

Round 3 - Technical 

(3 Questions)

  • Q1. Java,sql,testing,sdlc
  • Q2. What is method overriding?
  • Ans. 

    Method overriding is a feature in object-oriented programming where a subclass provides a specific implementation of a method that is already provided by its parent class.

    • In method overriding, the method in the subclass has the same name, return type, and parameters as the method in the parent class.

    • The purpose of method overriding is to provide a specific implementation of a method in the subclass that is different fr...

  • Answered by AI
  • Q3. What is exception handling in java?
  • Ans. 

    Exception handling in Java is a mechanism to handle runtime errors and prevent program crashes.

    • Exceptions are objects that represent errors or unexpected events during program execution.

    • Java provides try, catch, and finally blocks to handle exceptions.

    • try block contains the code that may throw an exception, catch block handles the exception, and finally block is executed regardless of an exception.

    • Example: try { // cod...

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. Normal questions
  • Q2. Why you want to join our company?

Interview Preparation Tips

Topics to prepare for BNP Paribas Software Developer interview:
  • Java

Skills evaluated in this interview

BNY Interview FAQs

How many rounds are there in BNY Full Stack Developer interview?
BNY interview process usually has 4 rounds. The most common rounds in the BNY interview process are Technical, Resume Shortlist and Coding Test.
How to prepare for BNY Full Stack Developer 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 HTML, Javascript, JSON, Coding and Application Development.
What are the top questions asked in BNY Full Stack Developer interview?

Some of the top questions asked at the BNY Full Stack Developer interview -

  1. Find first minimum and maximum number in an array using stre...read more
  2. Simple Coding based, Given an array, find a pair with sum =...read more
  3. How does a website URL wo...read more

Tell us how to improve this page.

BNY Full Stack Developer Salary
based on 56 salaries
₹9.1 L/yr - ₹31.5 L/yr
147% more than the average Full Stack Developer Salary in India
View more details

BNY Full Stack Developer Reviews and Ratings

based on 5 reviews

3.5/5

Rating in categories

3.1

Skill development

3.8

Work-Life balance

4.1

Salary & Benefits

3.8

Job Security

3.4

Company culture

3.1

Promotions/Appraisal

2.9

Work Satisfaction

Explore 5 Reviews and Ratings
Analyst
1.9k salaries
unlock blur

₹2 L/yr - ₹11.5 L/yr

Senior Analyst
1.7k salaries
unlock blur

₹3.7 L/yr - ₹15 L/yr

Senior Associate
1.1k salaries
unlock blur

₹11.4 L/yr - ₹25 L/yr

Intermediate Representative
1.1k salaries
unlock blur

₹2.6 L/yr - ₹7.2 L/yr

Vice President
1k salaries
unlock blur

₹15.3 L/yr - ₹51.1 L/yr

Explore more salaries
Compare BNY with

State Street Corporation

3.8
Compare

Northern Trust

3.8
Compare

Citibank

5.0
Compare

HSBC Group

4.0
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview