Upload Button Icon Add office photos

Filter interviews by

Bank of America Securities Interview Questions and Answers for Freshers

Updated 8 Jul 2022

Bank of America Securities Interview Experiences for Freshers

Popular Designations

1 interview found

Interview Questions & Answers

user image Anonymous

posted on 10 Mar 2015

Interview Preparation Tips

Round: Resume Shortlist
Experience: I took a lot of help from seniors in making my resume. I had a lot of people review my resume most who were seniors already working in the industry. I think a person should review the resume again and again and again. After making a draft of my resume, I spent 3 days refining it with the help of other people and changed it a total of 25 times at least. I did not take any help from reading material or the internet for making my resume but I think getting it reviewed by so many people made up for it. Attending pre-placement talks is very important. That is one time when you can talk to your potential employers one on one and know exactly what you will be doing in the company. I attended pre-placement talks of all the companies that I was interested in and in my case I had narrowed my list to a few companies to apply to. I talked to my friends and seniors working in various different companies (especially the ones working Investment Banks) in choosing between companies.

Round: HR Interview
Experience: There is a standard list of HR questions in the institute by the name of HLPQ.doc. It helps to look at the standard HR questions and make a mental note of the points you would want to highlight in the answers to those questions. At the same time, memorizing answers is not advisable since it becomes quite obvious to the interviewer that the answers have been memorized.

Round: Technical Interview
Experience: Technical I read up parts of the book Options. Futures and Other Derivatives” by J.C. Hull to prepare for the interviews. I also bought a couple of books from the internet which helped a lot. One of them was Vault Guide to Advanced Finance

Round: Puzzle Interview
Experience: There are many websites to practice puzzles (probability puzzles in my case)

Round: Other Interview
Experience: Quantitative Interviews and the other one had information about the company I was applying to (Merrill Lynch).

Skill Tips: Dressing well is an important part of the interview process. You should create a good first impression. For investment banks, wear a suit especially if you are applying for front office positions. Take a shower, shave and dress neatly (remember you get only one chance to create a good impression). Be nice and courteous to all the people of the company. Reach well before the time of the interview and always carry sufficient copies of your resume along with a notepad and pen
College Name: IIT BOMBAY

Interview questions from similar companies

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 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.
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

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
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
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Feb 2024.

Round 1 - HR 

(2 Questions)

  • Q1. The interview emphasized team collaboration and work ethics, with a particular focus on my overall work experience at my previous company.
  • Q2. What were your preferences regarding work locations, specifically your views on working from the office (WFO) compared to working from home (WFH)?
  • Ans. 

    I prefer a mix of both working from the office and working from home.

    • I believe in the benefits of face-to-face collaboration and communication that come with working from the office.

    • At the same time, I appreciate the flexibility and productivity that working from home offers.

    • I think a hybrid approach, where employees have the option to choose between WFO and WFH based on their tasks and preferences, is ideal.

    • I have exp...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Focus was on DS algo and scenario based coding questions
  • Q2. Design skills and OS knowledge
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Feb 2024.

Round 1 - Coding Test 

First round was a coding test which has 2 problem solving questions and 3 subjective questions based on C++

Round 2 - Technical 

(1 Question)

  • Q1. This is also based on problem solving and DSA. A small part will be OS and network.
Round 3 - Coding Test 

More of a subjective round, highly focused on OS, networking and computer architecture.

Round 4 - Technical 

(1 Question)

  • Q1. This round is with the HM, totally subjective. Highly focused on past experience, current projects etc.
Round 5 - HR 

(1 Question)

  • Q1. HR discussion mostly questions are related to past and current experience.

Interview Preparation Tips

Interview preparation tips for other job seekers - CS fundamentals should be very strong.

Bank of America Securities Interview FAQs

How many rounds are there in Bank of America Securities interview for freshers?
Bank of America Securities interview process for freshers usually has 2 rounds. The most common rounds in the Bank of America Securities interview process for freshers are One-on-one Round, Resume Shortlist and HR.
How to prepare for Bank of America Securities interview for freshers?
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 Bank of America Securities. The most common topics and skills that interviewers at Bank of America Securities expect are Accounting System, Business Development, Cash Flow Statement, Cfo and Channel Sales.
What are the top questions asked in Bank of America Securities interview for freshers?

Some of the top questions asked at the Bank of America Securities interview for freshers -

  1. Couple of questions testing knowledge of capital markets etc („If I were an F...read more
  2. Good no. of questions on subprime crisis (both factual and also interpretation ...read more
  3. Some problems on hedging using futures, FX exposure, credit exposure etc. Inter...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

MNC Group Interview Questions
4.2
 • 104 Interviews
Wise Finserv Interview Questions
3.1
 • 10 Interviews
Instant Systems Interview Questions
3.4
 • 10 Interviews
MENSA Interview Questions
3.2
 • 9 Interviews
EVC LABS Interview Questions
2.1
 • 5 Interviews
View all

Bank of America Securities Reviews and Ratings

based on 39 reviews

4.2/5

Rating in categories

3.5

Skill development

4.4

Work-life balance

4.1

Salary

4.7

Job security

4.1

Company culture

3.7

Promotions

3.6

Work satisfaction

Explore 39 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.2
Compare

MENSA

3.2
Compare

STP Investment Services

3.6
Compare

Dezire Research

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