Skip to content

Bank of America Placement Papers 2024

Overview

This page collects Bank of America placement papers from 2024 with previous-year questions, solutions, and the 2024 exam pattern. It is useful when you want real drive history: what the OA looked like, which question types repeated, and how solutions were approached. Work through the papers below to build speed and accuracy, then compare against newer 2025 material so your prep matches both established Bank of America patterns and the latest shifts.

Download 2024 Placement Papers

Bank of America exam pattern 2024

Section Questions Time Difficulty Focus Areas
Aptitude 20-25 30-40 min Medium Quantitative, logical reasoning
Technical 15-20 25-30 min Medium Domain knowledge, basics
Verbal Ability 10-15 15-20 min Easy-Medium Comprehension, grammar

Total: 50-60 questions, 60-90 minutes

Key Changes in 2024:

  • Updated question patterns
  • Increased focus on practical skills
  • New evaluation criteria

Bank of America Placement Papers 2024 - actual questions & solutions

This section contains practice questions styled on Bank of America placement papers 2024 (previous-year 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: A and B together finish a job in 8 days. B alone takes 24 days. How many days does A alone take?

Solution:

Together rate = 1/8. B’s rate = 1/24.

A’s rate = 1/8 − 1/24 = (24−8)/(8×24) = 16/192. Days for A alone = 192/16 = 12 days.

Answer: 12 days

Question 2

Q2: 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 3

Q3: Pipe A fills a tank in 12 hours, pipe B in 18 hours. How long to fill together?

Solution:

Combined rate = 1/12 + 1/18 = (12+18)/(12×18). Time = 12×18/(12+18) = 7.2 hours.

Answer: 7.2 hours

Question 4

Q4: A number is increased by 20% and then decreased by 20%. Find the net percentage change.

Solution:

Let original = 100. After +20% → 120. After −20% → 120 − 24 = 96.

Net change = 100 − 96 = 4. Net % = 4% decrease (always a loss of (20/10)² %).

Answer: 4% decrease

Question 5

Q5: Pointing to a photo, Ravi said, ‘He is the son of my grandfather’s only son.’ How is the person related to Ravi?

Solution:

Grandfather’s only son = Ravi’s father. Son of Ravi’s father = Ravi himself (or his brother).

In standard puzzle framing with one son implied for the speaker context: the person is Ravi’s brother (or Ravi). Most campus keys take Brother.

Answer: Brother

Question 6

Q6: Find the next number in the series: 8, 6, 9, 23, 87, ?

Solution:

Pattern: ×1+6? Classic: ×1−2, ×2−3, ×3−4, ×4−5 → 8×1−2=6, 6×2−3=9, 9×3−4=23, 23×4−5=87, 87×5−6=429

Next term = 429.

Answer: 429

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 ‘Genuine’.

Solution:

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

Answer: Authentic

Question 9: binary tree level order

Show solution

Problem Statement: Return the level-order traversal of a binary tree.

Example:

Input: [3,9,20,null,null,15,7]
Output: [[3],[9,20],[15,7]]

Solution (Java):

public List<List<Integer>> levelOrder(TreeNode root) {
List<List<Integer>> res = new ArrayList<>();
if (root == null) return res;
Queue<TreeNode> q = new ArrayDeque<>();
q.add(root);
while (!q.isEmpty()) {
int sz = q.size();
List<Integer> level = new ArrayList<>();
for (int i = 0; i < sz; i++) {
TreeNode n = q.poll();
level.add(n.val);
if (n.left != null) q.add(n.left);
if (n.right != null) q.add(n.right);
}
res.add(level);
}
return res;
}

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

Question 10: valid parentheses

Show solution

Problem Statement: Given a string of brackets, determine if it is valid.

Example:

Input: "()[]{}"
Output: true

Solution (Java):

public boolean isValid(String s) {
Deque<Character> st = new ArrayDeque<>();
Map<Character, Character> pair = Map.of(')', '(', ']', '[', '}', '{');
for (char c : s.toCharArray()) {
if (pair.containsValue(c)) st.push(c);
else if (st.isEmpty() || st.pop() != pair.get(c)) return false;
}
return st.isEmpty();
}

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

Question 11: 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)

Hiring volume

2024 Data: Bank of America hired 200-500 candidates from top engineering colleges in 2024. The company conducted placement drives at 30+ colleges across India.

Salary packages

2024 Packages: ₹12-20 LPA for freshers

Process changes

2024 Updates: Updated online assessment platform, new interview formats

Key insights from 2024 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
  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, verbal ability

Bank of America 2024 interview experiences

Based on candidate experiences from 2024 Bank of America interviews:

2024 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, problem-solving, CS fundamentals (for tech roles)
  3. HR Interview (30-45 minutes): Behavioral questions, company fit, motivation, banking industry interest

Common 2024 Interview Topics:

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

2024 Interview Questions Examples:

  • Time and Work problems
  • Banking domain knowledge questions
  • CS fundamentals (for tech roles)
  • Behavioral questions about banking industry interest

Success Tips:

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

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

Preparation tips for Bank of America 2024 pattern

  1. Master Aptitude: Focus on quantitative, logical reasoning - practice regularly
  2. Banking Domain Knowledge: Basic understanding of banking industry and financial concepts
  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-2024 to understand patterns
  5. Time Management: Practice completing 20-25 aptitude questions in 30-40 minutes
  6. Verbal Ability: Practice comprehension and grammar
  7. Behavioral Preparation: Prepare examples using STAR format - leadership, teamwork, banking interest
  8. Mock Tests: Take timed practice tests to improve speed and accuracy
  9. Banking Focus: Understand banking industry trends and Bank of America’s services
  10. Communication Skills: Practice articulating thoughts clearly

Comments & Suggestions

Similar companies

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