Upload Button Icon Add office photos

Filter interviews by

Bank of America Senior Software Developer Interview Questions and Answers

Updated 20 Aug 2021

Bank of America Senior Software Developer Interview Experiences

1 interview found

I applied via Naukri.com and was interviewed in Jul 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Java question - inheritance , oops, multi threading, write method overriding code, views in table, index and its types , types of join, etc ready to explore and learn python and i was ready for it :) . 1...

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm, confident and explain in such a way that interviewer gets clear understanding and also satisfied with you answer.

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected

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

Round 1 - Coding Test 

Three question were given , one was to implement singleton class, other one was easy array question and the third one was was also easy medium which was testing HashMap knowledge
.

Round 2 - One-on-one 

(2 Questions)

  • Q1. Asked to explain the answers you wrote in first round.
  • Q2. Some conceptual questions of java like string pools, solid principles, etc.
Round 3 - One-on-one 

(2 Questions)

  • Q1. Sort of Managerial Technical round : Core Java
  • Q2. Spring boot and about deployment tools.
Round 4 - HR 

(2 Questions)

  • Q1. Why do want to join us?
  • Ans. 

    I am excited about the innovative projects and collaborative team environment at your company.

    • Impressed by company's reputation in the industry

    • Excited about the opportunity to work on cutting-edge projects

    • Looking forward to collaborating with talented team members

  • Answered by AI
  • Q2. Have you heard of what your company does and at the end compensation discussion.

Interview Preparation Tips

Topics to prepare for Standard Chartered Senior Software Developer interview:
  • Core Java
  • Spring Boot
  • Microservices
  • Kafka
  • Azure
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before Feb 2023.

Round 1 - Technical 

(1 Question)

  • Q1. OOPS concepts, .NET MVC, .NET CORE questions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

3 coding que easy,med and hard

Round 2 - Technical 

(2 Questions)

  • Q1. Os related que What is kernel , OS types ,what happens after booting computr ,etc
  • Q2. Creat a array and print all elements , which database used for pdf storing sql or nosql
Round 3 - Technical 

(2 Questions)

  • Q1. OOps related que abstraction , inheritance , code it
  • Q2. Middel element of linked list
Round 4 - HR 

(2 Questions)

  • Q1. What challenges u faced in engineering?
  • Q2. Situational based questions
Round 5 - HR 

(2 Questions)

  • Q1. Why u choose to work deustch bank ?
  • Q2. Project related quw
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
No response

I applied via Company Website and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Spring Boot Related Questions
  • Q2. Authentication handling in microservices
  • Ans. 

    Authentication handling in microservices involves securing communication between services and managing user access.

    • Implement token-based authentication for secure communication between microservices

    • Use OAuth or JWT for authentication and authorization

    • Centralize authentication logic in a separate service to avoid duplication

    • Implement role-based access control to manage user permissions

  • Answered by AI
  • Q3. Microservice design patterns
  • Q4. Java 8 map function
  • Ans. 

    The map function in Java 8 is used to transform each element of a stream using a given function.

    • Map function is a method in the Stream interface that applies a function to each element in the stream and returns a new stream with the transformed elements.

    • It is commonly used for converting or manipulating data in a stream without modifying the original data source.

    • Example: List numbers = Arrays.asList(1, 2, 3, 4, 5); Lis...

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Mcq+coding which are medium level questions

Round 2 - Technical 

(3 Questions)

  • Q1. Multiple inheritance allowed in java?
  • Ans. 

    No, multiple inheritance is not allowed in Java.

    • Java does not support multiple inheritance for classes to avoid the diamond problem.

    • However, multiple inheritance is allowed for interfaces in Java.

    • Example: class A extends B, C is not allowed, but interface X extends Y, Z is allowed.

  • Answered by AI
  • Q2. Diff btw static and final
  • Ans. 

    Static is used to define class-level variables and methods, while final is used to define constants and prevent inheritance or modification.

    • Static variables and methods belong to the class itself, while final variables cannot be changed once initialized.

    • Static members can be accessed without creating an instance of the class, while final members must be accessed through an instance.

    • Static variables are shared among all...

  • Answered by AI
  • Q3. What is data encapsulation?
  • Ans. 

    Data encapsulation is the concept of bundling data and methods that operate on the data into a single unit, known as a class.

    • Encapsulation hides the internal state of an object and only exposes the necessary functionalities through methods.

    • It helps in achieving data abstraction and information hiding.

    • Example: A class 'Car' encapsulates data like speed, color, and methods like accelerate() and brake().

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a passionate software developer with experience in Java, Python, and web development.

    • Experienced in Java, Python, and web development technologies

    • Strong problem-solving skills

    • Team player with excellent communication skills

  • Answered by AI
  • Q2. What are company core values
  • Ans. 

    Company core values are the fundamental beliefs that guide the behavior and decisions of employees.

    • Integrity - acting with honesty and transparency in all dealings

    • Innovation - constantly seeking new and better ways to solve problems

    • Customer focus - prioritizing the needs and satisfaction of customers

    • Teamwork - collaborating effectively with colleagues to achieve common goals

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Sep 2024. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basic Java and react question
Round 2 - Technical 

(1 Question)

  • Q1. Little technical and project oriented question
Round 3 - Coding Test 

Basic hacker rank problem

Round 4 - CTO round 

(1 Question)

  • Q1. Asked few questions on react and java
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Explain event driven architecture of node.js
  • Ans. 

    Node.js uses event-driven architecture where events trigger callbacks to handle asynchronous operations.

    • Node.js uses event loop to handle asynchronous operations efficiently

    • Events are emitted by various objects in Node.js like HTTP servers, file system, etc.

    • Callbacks are registered to handle events and execute code when events occur

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Behavioural and culture fit

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 - One-on-one 

(2 Questions)

  • Q1. Sql, reporting tool, control m , unix, power bi
  • Q2. Sql, unix, testing tool

Interview Preparation Tips

Interview preparation tips for other job seekers - Read the JD

Tell us how to improve this page.

Bank of America Senior Software Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

ICICI Bank Interview Questions
4.0
 • 2.4k Interviews
HDFC Bank Interview Questions
3.9
 • 2.1k Interviews
IDFC FIRST Bank Interview Questions
4.0
 • 631 Interviews
IndusInd Bank Interview Questions
3.5
 • 596 Interviews
Wells Fargo Interview Questions
3.9
 • 565 Interviews
HSBC Group Interview Questions
4.0
 • 490 Interviews
Yes Bank Interview Questions
3.7
 • 426 Interviews
View all
Bank of America Senior Software Developer Salary
based on 51 salaries
₹8.7 L/yr - ₹30.4 L/yr
35% more than the average Senior Software Developer Salary in India
View more details

Bank of America Senior Software Developer Reviews and Ratings

based on 5 reviews

4.1/5

Rating in categories

4.2

Skill development

4.1

Work-life balance

4.1

Salary

4.2

Job security

4.2

Company culture

3.3

Promotions

4.1

Work satisfaction

Explore 5 Reviews and Ratings
Team Lead
2.3k salaries
unlock blur

₹5.7 L/yr - ₹17 L/yr

Team Developer
1.9k salaries
unlock blur

₹2.5 L/yr - ₹11 L/yr

Assistant Manager
1.9k salaries
unlock blur

₹7 L/yr - ₹26 L/yr

Software Engineer
1k salaries
unlock blur

₹6.6 L/yr - ₹26.9 L/yr

Manager
958 salaries
unlock blur

₹11.5 L/yr - ₹38 L/yr

Explore more salaries
Compare Bank of America with

JPMorgan Chase & Co.

4.0
Compare

BA Continuum

4.2
Compare

Wells Fargo

3.9
Compare

Goldman Sachs

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