Skip to content

Bank of America Placement Papers 2025

Overview

This page is a working set of Bank of America placement papers from 2025: from student reports questions, the 2025 online assessment pattern, and step-by-step solutions. Use it to see what Bank of America actually asked in the latest cycle, how hard the rounds were, and which themes (DSA, system design, aptitude, or role-specific topics) mattered most. Practice the problems below under timed conditions, then cross-check with the interview and preparation guides if you are targeting an upcoming Bank of America drive.

Download 2025 Placement Papers

Bank of America Online Assessment 2025 pattern

The 2025 exam pattern remains similar to 2024. For detailed exam pattern, see 2024 Papers.

Note: The pattern may have minor variations. Check the latest updates from the company.

Bank of America Placement Papers 2025 - actual questions & solutions

This section contains practice questions styled on Bank of America placement papers 2025 (recent-cycle pattern), with worked solutions. Use them as timed sectional drills - from student reports drives vary by college and role, so treat this as a high-signal practice bank, not an official paper dump.

Question 1

Q1: Simple interest on ₹8000 at 10% per annum for 2 years is?

Solution:

SI = (P × R × T)/100 = (8000 × 10 × 2)/100 = ₹1600.

Answer: ₹1600

Question 2

Q2: A and B together finish a job in 10 days. B alone takes 15 days. How many days does A alone take?

Solution:

Together rate = 1/10. B’s rate = 1/15.

A’s rate = 1/10 − 1/15 = (15−10)/(10×15) = 5/150. Days for A alone = 150/5 = 30 days.

Answer: 30 days

Question 3

Q3: A shopkeeper marks goods 50% above cost and gives a 20% discount. Find the profit percentage.

Solution:

Let CP = 100. MP = 150. SP after 20% discount = 120.

Profit % = 120 − 100 = 20%.

Answer: 20%

Question 4

Q4: Average of 6 numbers is 18. If one number 12 is replaced by 24, what is the new average?

Solution:

Old sum = 6 × 18 = 108. New sum = 108 − 12 + 24 = 120. New average = 120/6 = 20.

Answer: 20

Question 5

Q5: Statements: All pens are stationery. Some stationery are useful. Conclusions: I. Some pens are useful. II. All stationery are pens.

Solution:

From the statements, pens⊆stationery and some stationery overlap useful. That does not force some pens to be useful, and ‘all stationery are pens’ reverses the first statement wrongly.

Neither conclusion follows.

Answer: Neither I nor II follows

Question 6

Q6: Which number does not belong: 3, 5, 11, 14, 17, 21?

Solution:

Pattern: Primes vs non-primes: 14 and 21 composite; classic key often 14

Odd one out = 14.

Answer: 14

Question 7

Q7: Fill in the blank: ‘She has been working here _____ 2019.’

Solution:

Use since with a point in time; use for with a duration.

Correct: since.

Answer: since

Question 8

Q8: Choose the synonym of ‘Abundant’.

Solution:

In placement verbal sections, ‘Abundant’ is closest in meaning to Plentiful among common options.

Answer: Plentiful

Question 9: merge two sorted lists

Show solution

Problem Statement: Merge two sorted linked lists and return a new sorted list.

Example:

Input: 1→2→4 , 1→3→4
Output: 1→1→2→3→4→4

Solution (Java):

public ListNode mergeTwoLists(ListNode a, ListNode b) {
ListNode dummy = new ListNode(0), cur = dummy;
while (a != null && b != null) {
if (a.val <= b.val) { cur.next = a; a = a.next; }
else { cur.next = b; b = b.next; }
cur = cur.next;
}
cur.next = (a != null) ? a : b;
return dummy.next;
}

Time Complexity: O(n + m)
Space Complexity: O(1)

Question 10: rotate array right by k

Show solution

Problem Statement: Rotate the array to the right by k steps.

Example:

Input: [1,2,3,4,5,6,7], k = 3
Output: [5,6,7,1,2,3,4]

Solution (Java):

public void rotate(int[] nums, int k) {
k %= nums.length;
reverse(nums, 0, nums.length - 1);
reverse(nums, 0, k - 1);
reverse(nums, k, nums.length - 1);
}
void reverse(int[] a, int l, int r) {
while (l < r) { int t = a[l]; a[l++] = a[r]; a[r--] = t; }
}

Time Complexity: O(n)
Space Complexity: O(1)

Question 11: check palindrome

Show solution

Problem Statement: Return true if the string reads the same forward and backward (ignore case).

Example:

Input: "Level"
Output: true

Solution (Java):

public boolean isPalindrome(String s) {
s = s.toLowerCase();
int i = 0, j = s.length() - 1;
while (i < j) {
if (s.charAt(i++) != s.charAt(j--)) return false;
}
return true;
}

Time Complexity: O(n)
Space Complexity: O(1)

Hiring volume

2025 Data: Bank of America is actively hiring 250-600 candidates in 2025. The company is conducting placement drives at 35+ colleges across India.

Salary packages

2025 Packages: ₹12-20 LPA for freshers (updated packages)

Process updates

2025 Updates: Latest assessment tools, improved interview process

Key insights from 2025 Bank of America Online Assessment

  1. Aptitude Section is Critical: Must perform well in quantitative and logical reasoning
  2. Technical MCQs: Strong emphasis on domain knowledge, banking basics, CS fundamentals, fintech concepts
  3. Verbal Ability: Important for communication-focused roles
  4. Time Management: 20-25 aptitude in 30-40 min + 15-20 technical in 25-30 min + 10-15 verbal in 15-20 min
  5. Success Rate: Only 20-25% cleared assessment and advanced to interviews
  6. Platform: Bank of America assessment platform
  7. Focus Areas: Quantitative aptitude, logical reasoning, banking domain knowledge, fintech, verbal ability
  8. Enhanced Emphasis: Optimal solutions and fintech knowledge

Bank of America 2025 interview experiences

Based on recent candidate experiences from 2025 Bank of America interviews:

2025 Interview Process:

  1. Online Assessment (60-90 minutes): Aptitude (20-25) + Technical (15-20) + Verbal (10-15)
  2. Technical Interview (45-60 minutes): Domain knowledge, banking concepts, fintech, problem-solving, CS fundamentals (for tech roles)
  3. HR Interview (30-45 minutes): Behavioral questions, company fit, motivation, banking industry interest

2025 Interview Trends:

  • Increased emphasis on fintech and digital banking
  • More focus on optimal solutions and modern banking technologies
  • Enhanced behavioral questions about innovation and adaptability
  • Questions about fintech applications and digital banking

Common 2025 Interview Topics:

  • Aptitude: Quantitative reasoning, logical reasoning, time and work, profit and loss
  • Technical: Banking domain knowledge, fintech concepts, CS fundamentals (for tech roles), problem-solving
  • Verbal: Comprehension, grammar, communication skills
  • Behavioral: Problem-solving approach, teamwork, motivation, banking industry interest, fintech passion

Success Tips:

  • Strong aptitude performance is essential - practice quantitative and logical reasoning
  • Understand banking domain basics, fintech concepts, and financial technologies
  • For tech roles, understand CS fundamentals and programming concepts
  • Prepare behavioral examples using STAR format
  • Understand Bank of America’s business model, fintech initiatives, and banking services
  • Practice verbal ability - comprehension and grammar

For detailed interview experiences from 2025, visit Bank of America Interview Experience page.

Preparation tips for Bank of America 2025 pattern

  1. Master Aptitude: Focus on quantitative, logical reasoning - practice regularly
  2. Banking Domain Knowledge: Strong understanding of banking industry, fintech concepts, financial technologies
  3. Technical Preparation: For tech roles, practice CS fundamentals and programming concepts
  4. Practice Previous Year Papers: Solve Bank of America assessment papers from 2020-2025 to understand evolving patterns
  5. Time Management: Practice completing 20-25 aptitude questions in 30-40 minutes
  6. Verbal Ability: Practice comprehension and grammar
  7. Fintech Knowledge: Understand fintech applications and digital banking
  8. Behavioral Preparation: Prepare examples using STAR format - leadership, teamwork, fintech passion
  9. Mock Tests: Take timed practice tests to improve speed and accuracy
  10. Banking Focus: Understand banking industry trends, fintech innovations, and Bank of America’s services

Comments & Suggestions

Similar companies

Goldman Sachs · JP Morgan · Wells Fargo · Capital One · Deutsche Bank · Morgan Stanley