Bank of America 2025 paper 1
Latest Bank of America placement paper with aptitude questions and solutions
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.
Bank of America 2025 paper 1
Latest Bank of America placement paper with aptitude questions and solutions
Bank of America 2025 paper 2
Additional 2025 Bank of America paper with detailed solutions
Bank of America 2025 paper 3
Another 2025 Bank of America paper with comprehensive solutions
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.
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.
Solution:
SI = (P × R × T)/100 = (8000 × 10 × 2)/100 = ₹1600.
Answer: ₹1600
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
Solution:
Let CP = 100. MP = 150. SP after 20% discount = 120.
Profit % = 120 − 100 = 20%.
Answer: 20%
Solution:
Old sum = 6 × 18 = 108. New sum = 108 − 12 + 24 = 120. New average = 120/6 = 20.
Answer: 20
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
Solution:
Pattern: Primes vs non-primes: 14 and 21 composite; classic key often 14
Odd one out = 14.
Answer: 14
Solution:
Use since with a point in time; use for with a duration.
Correct: since.
Answer: since
Solution:
In placement verbal sections, ‘Abundant’ is closest in meaning to Plentiful among common options.
Answer: Plentiful
Problem Statement: Merge two sorted linked lists and return a new sorted list.
Example:
Input: 1→2→4 , 1→3→4Output: 1→1→2→3→4→4Solution (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)
Problem Statement: Rotate the array to the right by k steps.
Example:
Input: [1,2,3,4,5,6,7], k = 3Output: [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)
Problem Statement: Return true if the string reads the same forward and backward (ignore case).
Example:
Input: "Level"Output: trueSolution (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
Based on recent candidate experiences from 2025 Bank of America interviews:
2025 Interview Process:
2025 Interview Trends:
Common 2025 Interview Topics:
Success Tips:
For detailed interview experiences from 2025, visit Bank of America Interview Experience page.
Goldman Sachs · JP Morgan · Wells Fargo · Capital One · Deutsche Bank · Morgan Stanley