Upload Button Icon Add office photos

Filter interviews by

Bank of America Securities Team Developer Interview Questions and Answers

Updated 27 May 2022

Bank of America Securities Team Developer Interview Experiences

1 interview found

I applied via Job Portal and was interviewed in Nov 2021. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Technical and personal questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Bank of America is a wonderful company to work without pressure and working environment also really good, manager(my team) the way he treats to associates is awesome

Interview questions from similar companies

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

I applied via Recruitment Consulltant and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Coding Test 

DSA medium level questions were asked.

Round 2 - One-on-one 

(2 Questions)

  • Q1. Design MakeMyTrip kind of application.
  • Ans. 

    MakeMyTrip is a travel booking application that allows users to book flights, hotels, and holiday packages.

    • Include features like flight/hotel search, booking, payment gateway integration, and user profiles.

    • Implement filters for search results, reviews/ratings for hotels, and notifications for booking updates.

    • Integrate maps for location tracking, weather forecasts, and customer support chatbot.

    • Offer discounts, loyalty p...

  • Answered by AI
  • Q2. Oops based questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well for LLD.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Average interview process.
  • Q2. About java snd spring
Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Walk-in and was interviewed in Sep 2023. There were 3 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 

Arithmetic and reasoning

Round 3 - HR 

(5 Questions)

  • Q1. What is python?
  • Ans. 

    Python is a high-level programming language known for its simplicity and readability.

    • Python is interpreted, not compiled

    • It supports multiple programming paradigms like procedural, object-oriented, and functional programming

    • Python has a large standard library and a thriving community for support and resources

  • Answered by AI
  • Q2. Futures of Python?
  • Ans. 

    Python has a bright future due to its simplicity, versatility, and strong community support.

    • Python is widely used in web development, data science, artificial intelligence, and automation.

    • Its simple syntax and readability make it a popular choice for beginners and experienced developers alike.

    • The large community of Python developers ensures continuous improvement and support for the language.

    • Python's extensive standard...

  • Answered by AI
  • Q3. Interpreted it's mean easily find the debugs
  • Q4. Futures of MySQL?
  • Ans. 

    MySQL is a popular open-source relational database management system with a strong community and continuous development.

    • MySQL continues to evolve with new features and improvements in each release.

    • It supports various storage engines, including InnoDB, MyISAM, and NDB Cluster.

    • MySQL 8.0 introduced many enhancements like window functions, common table expressions, and improved JSON support.

    • It is widely used in web develop...

  • Answered by AI
  • Q5. Explain your project

Skills evaluated in this interview

I was interviewed in Jun 2022.

Round 1 - Coding Test 

(2 Questions)

Round duration - 70 Minutes
Round difficulty - Hard

The test link was active for a week, and you can give anytime you like. The IDE was very good and self explanatory. There were 2 coding questions and 15 aptitude questions.

  • Q1. 

    Unweighted Graph Shortest Path Problem

    You are tasked with finding the shortest path between two houses in the city of Ninjaland, represented as an unweighted graph. The city has N houses numbered from 1 ...

  • Ans. 

    This is a straight forward application of Floyd Warshal algorithm

  • Answered Anonymously
  • Q2. 

    Check If Two Nodes Are Cousins

    You are given an arbitrary binary tree consisting of N nodes, where each node is associated with a certain value, and two node values, a and b. Your task is to determine if ...

  • Ans. 

    This was a modified version of DFS on tree and storing the results in a dp to avoid recalculation.

  • Answered Anonymously
Round 2 - Video Call 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

It contained two programming questions.

  • Q1. 

    Counting Nodes in a Complete Binary Tree - Problem Statement

    Given the root of a complete binary tree, calculate the total number of nodes in this tree.

    A complete binary tree is defined as a binary tree...

  • Ans. 

    The basic solution of this problem is easy. You just need to do a level order traversal of the tree and wherever you find the first vacant spot, you can enter the node there.
    The trick was to find the optimal solution. You need to use the property of almost full binary tree. Knowing the value of the node to enter, you can directly eliminate one side of the tree and just traverse the other side of the tree.

  • Answered Anonymously
  • Q2. 

    Rearrange Array Numbers for Largest Possible Number

    Given an array ARR consisting of non-negative integers, rearrange the numbers to form the largest possible numerical value. You are not permitted to alt...

  • Ans. 

    This was a standard array manipulation problem. You just need to find the cases that should be satisfied by the second largest number.

  • Answered Anonymously
Round 3 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

This was more of a interaction round with some technical skills.

  • Q1. Can you explain the ACID properties and the rollback mechanism in DBMS?
  • Ans. 

    Tip 1 : Focus on the basics of DBMS 
    Tip 2 : Try applying the DBMS concepts on the problems at hand.

  • Answered Anonymously

Interview Preparation Tips

Eligibility criteria8 CGPATower Research Capital interview preparation:Topics to prepare for the interview - DSA and Algorithms, OOPS, Database, OS, NetworksTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Focus on different varieties of problems, quality of problems matter greater than the quantity.
Tip 2 : Focus on design thinking, that will help in rounds other than problem solving.

Application resume tips for other job seekers

Tip 1 : Focus on demonstrating your academic excellence and course projects
Tip 2 : Mention internship details with clarity

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed in Feb 2022.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Easy

Consisted of 3 DSA questions and MCQ on python proficiency

  • Q1. 

    Palindromic Substrings Problem Statement

    Given a string S, your task is to return all distinct palindromic substrings of the given string in alphabetical order.

    Explanation:

    A string is considered a pal...

Round 2 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

It was a pure DSA round and interviewer was very helpful with providing significant hints to solve the given problems

  • Q1. 

    Island Perimeter Calculation Problem

    Given a binary grid representation of a map of an island, calculate the perimeter of the island. The grid uses '0' for water and '1' for land.

    The grid has only one i...

Round 3 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Hard

DSA+OS

  • Q1. 

    Clearing the Forest Problem Statement

    Ninja lives in a city called Byteland where a festive event is being organized. To make space for this event, Ninja is tasked with clearing a nearby forest. The fores...

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in GurgaonEligibility criteriaPython ProficiencyTower Research Capital interview preparation:Topics to prepare for the interview - Data Structures, Algorithms , OOPS , DBMS , OSTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Practice at least 250 questions
Tip 2 : Do at least two projects
 

Application resume tips for other job seekers

Tip 1 : Should be covered in One page
Tip 2 : Project description should be professional

Final outcome of the interviewSelected

Skills evaluated in this interview

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Aptitude Test 

Logical, Expertise, Relevant and Communication

Round 3 - HR 

(2 Questions)

  • Q1. Experiences, Expertise, Salary and communication
  • Q2. Salary expectation and recent experiences on profile

Interview Preparation Tips

Interview preparation tips for other job seekers - Be bold and active while facing interviews always. All the best

I was interviewed in Dec 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

This was the qualification round which comprised of several MCQs and 3 coding questions.
It was held on Hackerearth from 3:00 PM to 4:00 PM.
Use of any other IDE was prohibited.

  • Q1. Given a problem statement and a piece of code, how would you find and correct the bug in the code?
  • Q2. 

    Print Nodes at Distance K from a Given Node

    Given an arbitrary binary tree, a node of the tree, and an integer 'K', find all nodes that are at a distance K from the specified node, and return a list of th...

  • Ans. DFS
    • Create a map to store the parent of each node in the tree, Traverse the tree recursively (via depth-first search), at each step if the current node is not NULL. Store its parent in the map, then traverse the left and right subtree.
    • Now assume that the given node is the root of the tree. In such a case, we can simply run a breadth-first search from the root, and track the current level of the tree. When the level = ‘K...
  • Answered Anonymously
Round 2 - Video Call 

(1 Question)

Round duration - 90 minutes
Round difficulty - Medium

I was shared a link of Google Meet and the Google Docs was shared where there was 1 coding problem to be coded there and then the code was run on an IDE to check the sample tests.
Then the interview was followed by a lot of Operating System and Computer System Architecture Questions.
There were 2 Interviewers and both were helpful.
The timing was from 2:30 PM to 4:00 PM

  • Q1. 

    Subarray Challenge: Largest Equal 0s and 1s

    Determine the length of the largest subarray within a given array of 0s and 1s, such that the subarray contains an equal number of 0s and 1s.

    Input:

    Input beg...

  • Ans. Brute Force
    • We generate all the possible subarrays by using two nested loops.
    • We can run two nested loops, the outer loop picks the starting element and the inner loop picks the ending element.
    • The third loop considers all elements in between the starting and ending elements.
    • Check if each subarray has equal number of 0s and 1s
    • This can be easily done by considering 0 as -1 and 1 as 1 since the sum for equal numbers of 0s a...
  • Answered Anonymously
Round 3 - HR 

Round duration - 45 minutes
Round difficulty - Easy

The round was held on Google Meet with HR from 2:30 PM to 3:15 PM.
The HR was friendly and asked the basic questions.

Interview Preparation Tips

Eligibility criteriaNeeded Work Experience in a leading Tech CompanyTower Research Capital interview preparation:Topics to prepare for the interview - Dynamic Programming, Data Structures - Sets, HashMap, Priority Queue, SQL, OOPS, Operating System, AlgorithmsTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Practice daily 4-5 medium level problems on sites like Leetcode, CodeZen, Hackerearth
Tip 2 : Even though Data Structures and Algorithms is the base but study Course Subjects like DBMS,OS,OOPS too.
Tip 3 : Try to Participate in Contests on LeetCode,Codeforces.

Application resume tips for other job seekers

Tip 1 : Mention the projects you worked on in your past work experience and how it helped your company.
Tip 2 : Keep your resume up to date in accordance with the role you are applying for
Tip 3 : Don't put false things on your resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

Bank of America Securities Interview FAQs

How many rounds are there in Bank of America Securities Team Developer interview?
Bank of America Securities interview process usually has 1 rounds. The most common rounds in the Bank of America Securities interview process are One-on-one Round.

Tell us how to improve this page.

Interview Questions from Similar Companies

Goldman Sachs Interview Questions
3.5
 • 408 Interviews
UBS Interview Questions
3.9
 • 339 Interviews
Morgan Stanley Interview Questions
3.7
 • 308 Interviews
MNC Group Interview Questions
4.2
 • 101 Interviews
Wise Finserv Interview Questions
3.9
 • 10 Interviews
MENSA Interview Questions
3.1
 • 8 Interviews
View all
Bank of America Securities Team Developer Salary
based on 18 salaries
₹5.5 L/yr - ₹9.7 L/yr
At par with the average Team Developer Salary in India
View more details

Bank of America Securities Team Developer Reviews and Ratings

based on 2 reviews

4.7/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

4.5

Salary

5.0

Job security

5.0

Company culture

4.5

Promotions

4.7

Work satisfaction

Explore 2 Reviews and Ratings
Team Lead
29 salaries
unlock blur

₹7.5 L/yr - ₹15 L/yr

Assistant Manager
25 salaries
unlock blur

₹9.3 L/yr - ₹17.5 L/yr

Team Developer
18 salaries
unlock blur

₹5.5 L/yr - ₹9.7 L/yr

Manager
10 salaries
unlock blur

₹14.1 L/yr - ₹25 L/yr

Senior Manager
9 salaries
unlock blur

₹20 L/yr - ₹30 L/yr

Explore more salaries
Compare Bank of America Securities with

Goldman Sachs

3.5
Compare

Morgan Stanley

3.7
Compare

Joannou & Paraskevaides

3.9
Compare

Citi Group Global Markets

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