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
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Aptitude Test 

Assignment was given

Round 2 - One-on-one 

(1 Question)

  • Q1. Work location, skills, future plans

I appeared for an interview before Jun 2016.

Interview Questionnaire 

2 Questions

  • Q1.  Given k and DFS traversal string for a k-ary tree, construct the tree. The String contains P (if a parent) and L (if a leaf). E.g. - k=3, str="PPLLLLL" 2. All the strings are arranged in the following ord...
  • Ans. 

    The question asks to construct a k-ary tree using the given k and DFS traversal string.

    • Iterate through the DFS traversal string

    • If the current character is 'P', create a parent node

    • If the current character is 'L', create a leaf node

    • Link the nodes according to the DFS traversal order

  • Answered by AI
  • Q2. "How would you tell whether a graph has a node with n degree?"
  • Ans. 

    To determine if a graph has a node with n degree, iterate through all nodes and count their edges.

    • Iterate through each node in the graph

    • Count the number of edges connected to each node

    • If any node has n edges, then the graph has a node with n degree

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Questions on C++(Virtual fns, inheritance). Two on probability, 12 on Algorithms
Duration: 45 minutes

Round: Technical + HR Interview
Experience: He asked some more puzzles and some probability (expectation) questions. Then, he modified one question asked in the written test and asked me write code for it on paper.
Tips: First of all, prepare all the questions asked in the test before going for the interviews.


Skills evaluated in this interview

I applied via Referral

Interview Questionnaire 

1 Question

  • Q1. Name, location, education, experience

Interview Preparation Tips

Interview preparation tips for other job seekers - He took my resume and checked
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Jun 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Coding Test 

Asked about the SQL and python.

Round 3 - One-on-one 

(2 Questions)

  • Q1. Told about the Offered role responsibilities.
  • Q2. Ask about the previous work experience.

Interview Preparation Tips

Interview preparation tips for other job seekers - Please don't apply.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Mostly Excel based, and they see if your answers are logical or not!

Round 2 - Case Study 

If you have visualization like PowerBi or Tableau Project then they will ask to explain and share details!

Round 3 - HR 

(1 Question)

  • Q1. What you know about mensa and all!
  • Ans. 

    Mensa is an international high IQ society that provides a forum for intellectual exchange among its members.

    • Mensa was founded in 1946 in the UK by Roland Berrill and Dr. Lance Ware.

    • To join Mensa, individuals must score in the top 2% of the general population on a standardized intelligence test.

    • Mensa has members in more than 100 countries around the world.

    • The organization hosts various events, gatherings, and activities...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Must know excel to build logic
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

Aptitude test was the mixture of common aptitude questions along with sql, basic javascript and java language basic questions and couple of simple coding questions like febinachi series, palindrom pattern etc .

Round 2 - Technical 

(2 Questions)

  • Q1. They started from basic of java and some frameworks like springboot and then moved to advance of these topics.
  • Q2. Springboot annotations Opps concept run-time and compile time polimorphisam SQL quesries for Select and Joins
Round 3 - One-on-one 

(2 Questions)

  • Q1. Level 2 interview from the same topics along with abstraction and interface Constructor overriding is possible or not? dependency injection
  • Q2. Ways to create object in java.
  • Ans. 

    Objects in Java can be created using the 'new' keyword, constructors, and factory methods.

    • Use the 'new' keyword followed by the class name to create an object

    • Objects can also be created using constructors to initialize the object's state

    • Factory methods can be used to create objects without exposing the instantiation logic

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Instant Systems Intern interview:
  • java
  • sql
  • opps
  • springboot

Skills evaluated in this interview

I applied via Naukri.com and was interviewed before May 2020. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. OOPS Concepts
  • Q2. MySql
  • Q3. Php
  • Q4. Design Patterns

Interview Preparation Tips

Interview preparation tips for other job seekers - Just get your basics right.
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
2-4 weeks
Result
No response

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

Round 1 - Group Discussion 

There was basic GD topic

Round 2 - Aptitude Test 

(1 Question)

  • Q1. Google form was shared in which 15 questions were there and 3 were apti questions (work ,time ,speed) and others were from java programming and the time given was 2 hours.
Round 3 - Technical 

(1 Question)

  • Q1. In this only you will be asked theoretical questions like DBMS, JAVA, Programming, Your Project for programming he will ask only logic and will not ask you to code.
Round 4 - Technical 

(4 Questions)

  • Q1. Count the number of words and their frequency
  • Ans. 

    Count the number of words and their frequency

    • Split the given text into words using whitespace as delimiter

    • Create a dictionary to store the word frequency

    • Iterate through each word and update the frequency in the dictionary

    • Return the dictionary with word frequency

  • Answered by AI
  • Q2. Count frequency of characters.
  • Ans. 

    Count the frequency of characters in a given string.

    • Iterate through the string and use a hash map to store the count of each character.

    • Initialize the count of each character to 0 and increment it as you encounter the character.

    • Finally, iterate through the hash map to get the frequency of each character.

  • Answered by AI
  • Q3. Reversing the array
  • Ans. 

    Reverses an array of strings

    • Use a loop to iterate through half of the array

    • Swap the elements at the current index with the corresponding element from the end of the array

  • Answered by AI
  • Q4. Implementing the comparator function for sorting
  • Ans. 

    Implementing the comparator function for sorting an array of strings.

    • Use the built-in sort() function in most programming languages.

    • Define a custom comparator function that compares two strings.

    • Return a negative value if the first string should come before the second, a positive value if it should come after, and 0 if they are equal.

    • Example: ['apple', 'banana', 'cherry'] can be sorted in alphabetical order using the co

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Company is good but i noticed interviewer was biased towards girls as fresher. One of the interviewer named as Prem Kumar who took my 4 th round which was a technical interview was taking interview of boys for 25 minutes and was giving no hints to boys and was making fun of boys when they were getting stuck in programming but he took interview of girls for 1 hr 15-20 minutes and also he gave hints to girls when they got stuck in programming.
he was asking the same questions from everyone he [prem kumar ] knew only 2-3 programming questions and the same questions were asked to each of us some of the boys were asked only 1 questions and he left the meeting by saying "better luck next time".

Skills evaluated in this interview

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

I appeared for an interview in Dec 2024.

Round 1 - Group Discussion 

Topic: Online vs Offline Education.

Round 2 - Coding Test 

They gave us 8 coding problems and instructed us to solve 5 within a time limit of 1 hour and 30 minutes; all problems were from the easy and medium on LeetCode.

Round 3 - Technical 

(2 Questions)

  • Q1. Data Structures and Algorithms (DSA), time complexity, and the explanation of code written during the coding round.
  • Q2. Question from the Core java.
Round 4 - Technical 

(2 Questions)

  • Q1. In-depth question from DSA like implement linked-list and stack, questions from Tree and linear and binary search.
  • Q2. Explanation of college projects and questions from resume.
Round 5 - HR 

(1 Question)

  • Q1. Simple HR questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on diligently practicing data structures and algorithms (DSA), specifically through LeetCode questions, while also emphasizing time and space complexity and foundational computer science principles.

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

MNC Group Interview Questions
4.3
 • 104 Interviews
Wise Finserv Interview Questions
3.1
 • 10 Interviews
Instant Systems Interview Questions
3.4
 • 10 Interviews
MENSA Interview Questions
3.1
 • 8 Interviews
EVC LABS Interview Questions
2.1
 • 5 Interviews
View all
Bank of America Securities Team Developer Salary
based on 19 salaries
₹5.5 L/yr - ₹9.7 L/yr
9% more than 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
19 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

MNC Group

4.3
Compare

MENSA

3.1
Compare

STP Investment Services

3.6
Compare

Dezire Research

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