Upload Button Icon Add office photos

Bank of America

Compare button icon Compare button icon Compare

Filter interviews by

Bank of America Software Developer Interview Questions and Answers

Updated 22 Mar 2025

17 Interview questions

A Software Developer was asked
Q. 

Beautiful String Problem Statement

Given a binary string STR containing either '0' or '1', determine the minimum number of operations needed to make it beautiful. A binary string is called beautiful if it ...

Ans. 

The problem involves determining the minimum number of operations needed to make a binary string beautiful by ensuring it contains alternating 0s and 1s.

  • Iterate through the binary string and count the number of operations needed to make it beautiful by flipping the bits as required.

  • Keep track of the current bit and compare it with the next bit to determine if a flip operation is needed.

  • Return the total number of o...

A Software Developer was asked
Q. 

Binary Palindrome Check

Given an integer N, determine whether its binary representation is a palindrome.

Input:

The first line contains an integer 'T' representing the number of test cases. 
The next 'T' ...
Ans. 

Check if the binary representation of a given integer is a palindrome.

  • Convert the integer to binary and check if the binary string is a palindrome.

  • Use bitwise operations to manipulate the binary representation of the integer.

  • Consider edge cases like handling leading zeros in the binary representation.

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Rakuten
Q2. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Amazon
Q3. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
asked in PhonePe
Q5. Form a Triangle Problem Statement You are given an array of integ ... read more
A Software Developer was asked
Q. 

Fourth Largest Element in the Array

Given an array consisting of integers, your task is to determine the fourth largest element in the array. If the array does not contain at least four distinct elements, ...

Ans. 

Find the fourth largest element in an array of integers.

  • Sort the array in descending order to easily find the fourth largest element.

  • If the array has less than four distinct elements, return -2147483648.

  • Handle edge cases like empty array or array with less than four elements.

A Software Developer was asked
Q. 

Find Pairs in a Doubly-Linked List

A sorted doubly-linked list of distinct positive integers is provided, along with an integer 'X'. Your task is to identify and print all unique pairs from the list whose ...

Ans. 

Find pairs in a sorted doubly-linked list whose sum equals a given integer 'X'.

  • Traverse the list from both ends to find pairs with sum equal to 'X'.

  • Use two pointers approach to efficiently find the pairs.

  • Handle cases where the sum is less than, equal to, or greater than 'X'.

A Software Developer was asked
Q. 

Merge Sort Problem Statement

You are given a sequence of numbers, ARR. Your task is to return a sorted sequence of ARR in non-descending order using the Merge Sort algorithm.

Explanation:

The Merge Sort ...

Ans. 

Implement Merge Sort algorithm to sort a sequence of numbers in non-descending order.

  • Divide the input array into two halves recursively until each array has only one element.

  • Merge the sorted halves to produce a completely sorted array.

  • Time complexity of Merge Sort is O(n log n).

  • Example: Input - [3, 1, 4, 1, 5], Output - [1, 1, 3, 4, 5]

A Software Developer was asked
Q. 

Multiples of 2 and 3 Problem Statement

Ninja is engaged in a task involving divisors. He is given 'N' numbers, and his objective is to compute the sum of all numbers which are divisible by either 2 or 3.

...

Ans. 

Find the sum of numbers divisible by 2 or 3 from a given list of numbers.

  • Iterate through the list of numbers and check if each number is divisible by 2 or 3.

  • If a number is divisible by 2 or 3, add it to the sum.

  • Return the final sum as the output.

A Software Developer was asked
Q. 

Reverse Linked List Problem Statement

Given a singly linked list of integers, return the head of the reversed linked list.

Example:

Initial linked list: 1 -> 2 -> 3 -> 4 -> NULL
Reversed linke...
Ans. 

Reverse a singly linked list of integers and return the head of the reversed linked list.

  • Iterate through the linked list and reverse the pointers to point to the previous node instead of the next node.

  • Use three pointers to keep track of the current, previous, and next nodes while reversing the linked list.

  • Update the head of the reversed linked list as the last node encountered during the reversal process.

Are these interview questions helpful?

Bank of America Software Developer Interview Experiences

17 interviews found

Interview experience
2
Poor
Difficulty level
Easy
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. JavaScript basic ques
  • Q2. Var vs const vs let
  • Ans. 

    Var, const, and let are all ways to declare variables in JavaScript, each with different scopes and mutability.

    • Var: function-scoped, can be redeclared and reassigned

    • Const: block-scoped, cannot be reassigned, but can be mutated for objects and arrays

    • Let: block-scoped, can be reassigned but not redeclared

  • Answered by AI
Round 2 - Coding Test 

Coding interview basic level nothing more required for this

Round 3 - Coding Test 

Basic coding not more relevant in the whole process

Round 4 - Technical 

(1 Question)

  • Q1. Okish not that hard

Interview Preparation Tips

Interview preparation tips for other job seekers - Dont join if you are young, this company is for ladies and oldies who do not want to work and indulge only on extra curricular activities and all.

Most of seniors do not know how to code , basic git etc
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected
Round 1 - Coding Test 

Trapping rain water and median of two sorted array

Round 2 - Technical 

(2 Questions)

  • Q1. Oops and dbms questions?
  • Q2. Code question in Array and string?
Round 3 - HR 

(1 Question)

  • Q1. Tell me about yourself
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I appeared for an interview in Oct 2024.

Round 1 - Coding Test 

2 questions ...........................................................................................

Round 2 - Technical 

(2 Questions)

  • Q1. Dbms related and computer subjects
  • Q2. Oops related and one coding
Round 3 - HR 

(1 Question)

  • Q1. This was hr and technical both

Interview Preparation Tips

Interview preparation tips for other job seekers - Be well prepared
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - Coding Test 

The assessment was conducted online and consisted of five questions: two focused on coding, two on behavioral aspects, and one required an explanation of the code.

Round 2 - Technical 

(1 Question)

  • Q1. What topics were covered during the interview, specifically in terms of data structures, aptitude, and behavioral questions?
Round 3 - Technical 

(1 Question)

  • Q1. What core programming concepts were covered in your experience?
  • Ans. 

    Covered core programming concepts include data structures, algorithms, object-oriented programming, and software design patterns.

    • Data structures such as arrays, linked lists, stacks, queues, trees, and graphs were covered.

    • Algorithms like sorting, searching, recursion, and dynamic programming were studied.

    • Object-oriented programming principles like inheritance, encapsulation, and polymorphism were implemented.

    • Software d...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
  • Q1. Find array length
  • Ans. 

    To find the length of an array in programming, use built-in functions or properties depending on the language.

    • In JavaScript, use array.length: `let arr = ['a', 'b', 'c']; console.log(arr.length); // 3`

    • In Python, use len(): `arr = ['a', 'b', 'c']; print(len(arr)) # 3`

    • In Java, use array.length: `String[] arr = {'a', 'b', 'c'}; System.out.println(arr.length); // 3`

    • In C#, use array.Length: `string[] arr = {'a', 'b', 'c'}; ...

  • Answered by AI
  • Q2. Find substring in a string
  • Ans. 

    To find a substring in a string, we can use various methods like indexOf, includes, or regular expressions in programming languages.

    • Use the indexOf method: 'hello'.indexOf('lo') returns 3.

    • Use the includes method: 'hello'.includes('lo') returns true.

    • Regular expressions: /lo/.test('hello') returns true.

    • For case-insensitive search, convert both to the same case: 'Hello'.toLowerCase().includes('lo') returns true.

  • Answered by AI
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement 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 - Coding Test 

1st round was Hirevue video assessment which had 5 questions .
1st - Tell us about yourself
2nd and 3rd were coding questions
4th was related to the 3rd coding question about its logic and alternate logic
5th was basically how are you fit for the role

Round 3 - Technical 

(4 Questions)

  • Q1. This was a technical interview First I was asked to write a code for dupl8cate elements in an array. Then he asked me about concepts of OOPS , DBMS, and DSA
  • Q2. About Constructors
  • Q3. Java interface and inheritance
  • Q4. HashMaps , Foriegn keys , OLTP , OLAP

Interview Preparation Tips

Interview preparation tips for other job seekers - Have a strong grip on basic DS , OOPs and DBMS , SQL concepts
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Walk-in and was interviewed in Sep 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Two questions were given to be solved

Round 2 - Technical 

(1 Question)

  • Q1. Project related questions and basics of python

Software Developer Interview Questions & Answers

user image Sri Harsha SSMA

posted on 28 Sep 2022

I applied via Campus Placement and was interviewed in Aug 2022. There were 3 interview rounds.

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 - Coding Test 

The initial round was mixture of video interview and coding round.We will be asked 2 video interview questions and 2 coding questions

Round 3 - Technical 

(5 Questions)

  • Q1. Introduce yourself in five minutes
  • Q2. Tell about your projects and what are the challenges you faced while doing project
  • Q3. If you find any challenge while doing project what is your approch to overcome it
  • Q4. Till now in your career what is your biggest achievement
  • Q5. If you given a string in which numbers are combined how to seperate the longest alphabetical sequence
  • Ans. 

    The longest alphabetical sequence in a string of combined numbers can be separated using string manipulation and iteration.

    • Iterate through the string character by character

    • Check if the current character is alphabetical

    • If it is, start building a substring of alphabetical characters

    • If the next character is also alphabetical, add it to the substring

    • If the next character is not alphabetical, compare the length of the curre...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up bascis of coding
Be clear on what you speak

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Aug 2022. 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 

There were given 2 coding questions.It is done on hireview platform.After solving the second problem we have to tell the approach behind the code in video mode which will be recorded for evaluation.

Round 3 - Technical 

(1 Question)

  • Q1. They asked questions on projects, Oops concepts,python concepts and CN concepts as well.This round went around 35-40 minutes in webax meeting
Round 4 - Technical 

(2 Questions)

  • Q1. This round is actually HR round but for me they have technical questions.
  • Q2. They asked me Oops concepts,given a string based question to code and some questions on projects.

Interview Preparation Tips

Topics to prepare for Bank of America Software Developer interview:
  • DBMS
  • Java
  • Python
  • Coding
  • Computer Networking
  • Software Engineering
Interview preparation tips for other job seekers - Be thourough with java and python,have a practical knowledge on dbms and coding.
Be confident and All the best!!
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jul 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Python related basic
  • Q2. Tuple list str, classes oops concept

Interview Preparation Tips

Topics to prepare for Bank of America Software Developer interview:
  • OOPS
Interview preparation tips for other job seekers - Fluency in english checked

Top trending discussions

View All
Interview Tips & Stories
6d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Bank of America?
Ask anonymously on communities.

Bank of America Interview FAQs

How many rounds are there in Bank of America Software Developer interview?
Bank of America interview process usually has 2-3 rounds. The most common rounds in the Bank of America interview process are Technical, Coding Test and Resume Shortlist.
What are the top questions asked in Bank of America Software Developer interview?

Some of the top questions asked at the Bank of America Software Developer interview -

  1. Logical Question: You are a captive. If you say the right answer, the assasin w...read more
  2. If you given a string in which numbers are combined how to seperate the longest...read more
  3. What core programming concepts were covered in your experien...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 11 interview experiences

Difficulty level

Easy 25%
Moderate 75%

Duration

Less than 2 weeks 57%
2-4 weeks 29%
4-6 weeks 14%
View more
Bank of America Software Developer Salary
based on 205 salaries
₹8.9 L/yr - ₹20.7 L/yr
48% more than the average Software Developer Salary in India
View more details

Bank of America Software Developer Reviews and Ratings

based on 15 reviews

4.1/5

Rating in categories

3.2

Skill development

4.6

Work-life balance

3.8

Salary

4.6

Job security

3.9

Company culture

3.3

Promotions

3.6

Work satisfaction

Explore 15 Reviews and Ratings
Team Lead
2.5k salaries
unlock blur

₹8.3 L/yr - ₹15 L/yr

Assistant Manager
2k salaries
unlock blur

₹12.7 L/yr - ₹22 L/yr

Team Developer
1.9k salaries
unlock blur

₹4.6 L/yr - ₹9.7 L/yr

Software Engineer
1.2k salaries
unlock blur

₹8.2 L/yr - ₹25.5 L/yr

Manager
1k salaries
unlock blur

₹19.1 L/yr - ₹35.2 L/yr

Explore more salaries
Compare Bank of America with

JPMorgan Chase & Co.

3.9
Compare

BA Continuum

4.1
Compare

HDFC Bank

3.9
Compare

ICICI Bank

4.0
Compare
write
Share an Interview