Skip to content

ICICI Bank Placement Papers 2024

This page collects ICICI Bank 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 ICICI Bank patterns and the latest shifts.

Section Questions Time Difficulty
Aptitude 20-25 30 min Medium
Technical 15-20 30 min Medium
Coding 1-2 30 min Medium

ICICI Bank Placement Papers 2024 - actual questions & solutions

Section titled “ICICI Bank Placement Papers 2024 - actual questions & solutions”

This section contains practice questions styled on ICICI Bank 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.

Q1: The ratio of ages of A and B is 2:3. After 6 years, the ratio becomes 3:4. Find A’s present age.

Solution:

Let ages be 2x and 3x.

(2x + 6)/(3x + 6) = 3/4 4(2x + 6) = 3(3x + 6) 8x + 24 = 9x + 18 x = 6 A’s age = 2×6 = 12 years.

Answer: 12 years

Q2: Pipe A fills a tank in 10 hours, pipe B in 15 hours. How long to fill together?

Solution:

Combined rate = 1/10 + 1/15 = (10+15)/(10×15). Time = 10×15/(10+15) = 6 hours.

Answer: 6 hours

Q3: A and B together finish a job in 12 days. B alone takes 18 days. How many days does A alone take?

Solution:

Together rate = 1/12. B’s rate = 1/18.

A’s rate = 1/12 − 1/18 = (18−12)/(12×18) = 6/216. Days for A alone = 216/6 = 36 days.

Answer: 36 days

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

Solution:

Let original = 100. After +25% → 125. After −25% → 125 − 31.25 = 93.75.

Net change = 100 − 93.75 = 6.25. Net % = 6.25% decrease (always a loss of (25/10)² %).

Answer: 6.25% decrease

Q5: In a row of 43 students, A is 8th from the left and B is 13th from the right. How many students are between A and B if A is to the left of B?

Solution:

Positions from left: A = 8, B = 43 − 13 + 1 = 31. Students between = 31 − 8 − 1 = 22.

Answer: 22

Q6: Statements: All pens are items. Some items are cheap. Conclusions: I. Some pens are cheap. II. All items are pens.

Solution:

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

Neither conclusion follows.

Answer: Neither I nor II follows

Q7: Choose the antonym of ‘Voluntary’.

Solution:

‘Voluntary’ means roughly the opposite of Compulsory.

Answer: Compulsory

Q8: 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

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)

Show solution

Problem Statement: Find the contiguous subarray with the largest sum.

Example:

Input: [-2, 1, -3, 4, -1, 2, 1, -5, 4]
Output: 6 // [4, -1, 2, 1]

Solution (Java):

public int maxSubArray(int[] nums) {
int best = nums[0], cur = nums[0];
for (int i = 1; i < nums.length; i++) {
cur = Math.max(nums[i], cur + nums[i]);
best = Math.max(best, cur);
}
return best;
}

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

Show solution

Problem Statement: Find the longest common prefix string amongst an array of strings.

Example:

Input: ["flower","flow","flight"]
Output: "fl"

Solution (Java):

public String longestCommonPrefix(String[] strs) {
if (strs.length == 0) return "";
String pref = strs[0];
for (int i = 1; i < strs.length; i++) {
while (!strs[i].startsWith(pref)) {
pref = pref.substring(0, pref.length() - 1);
if (pref.isEmpty()) return "";
}
}
return pref;
}

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

Key insights from 2024 ICICI Bank Online Assessment

Section titled “Key insights from 2024 ICICI Bank Online Assessment”
  1. Aptitude Section is Critical: Must perform well in quantitative and logical reasoning
  2. Technical MCQs: Strong emphasis on programming fundamentals, DBMS, OOPs, banking domain knowledge
  3. Coding Section: 1-2 coding problems in 30 minutes requires good problem-solving skills
  4. Time Management: 20-25 aptitude in 30 min + 15-20 technical in 30 min + 1-2 coding in 30 min
  5. Success Rate: Only 20-25% cleared assessment and advanced to interviews
  6. Platform: ICICI Bank assessment platform
  7. Focus Areas: Quantitative aptitude, logical reasoning, programming fundamentals, banking domain knowledge

Based on candidate experiences from 2024 ICICI Bank interviews:

2024 Interview Process:

  1. Online Assessment (90 minutes): Aptitude (20-25) + Technical (15-20) + Coding (1-2)
  2. Technical Interview (45-60 minutes): Programming concepts, DBMS, OOPs, banking domain knowledge, problem-solving
  3. HR Interview (30-45 minutes): Behavioral questions, company fit, motivation, banking industry interest

Common 2024 Interview Topics:

  • Aptitude: Quantitative reasoning, logical reasoning, ratio and proportion
  • Technical: Programming concepts, DBMS, OOPs, banking domain knowledge
  • Coding: Arrays, strings, basic algorithms
  • Behavioral: Problem-solving approach, teamwork, motivation, banking industry interest

Success Tips:

  • Strong aptitude performance is essential - practice quantitative and logical reasoning
  • Understand programming fundamentals, DBMS, OOPs, banking domain basics
  • Practice coding problems - arrays, strings, basic algorithms
  • Prepare behavioral examples using STAR format
  • Understand ICICI Bank’s business model and banking services

For detailed interview experiences, visit ICICI Bank Interview Experience page.

Preparation tips for ICICI Bank 2024 pattern

Section titled “Preparation tips for ICICI Bank 2024 pattern”
  1. Master Aptitude: Focus on quantitative, logical reasoning - practice regularly
  2. Technical Fundamentals: Strong understanding of programming, DBMS, OOPs concepts
  3. Banking Domain: Basic understanding of banking industry and ICICI Bank services
  4. Practice Previous Year Papers: Solve ICICI Bank assessment papers from 2020-2024 to understand patterns
  5. Time Management: Practice completing 20-25 aptitude questions in 30 minutes
  6. Coding Practice: Practice arrays, strings, basic algorithms
  7. Technical MCQs: Practice programming concepts, DBMS, OOPs, banking basics
  8. Behavioral Preparation: Prepare examples using STAR format - leadership, teamwork, banking interest
  9. Mock Tests: Take timed practice tests to improve speed and accuracy
  10. Banking Focus: Understand banking industry trends and ICICI Bank’s services

HDFC Bank · Paytm · PhonePe · Razorpay · JP Morgan · Goldman Sachs


Practice 2024 papers to understand ICICI Bank pattern and prepare effectively!