2025 papers
ICICI Bank Placement Papers 2024
Overview
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.
ICICI Bank Online Assessment 2024 pattern
| 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
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.
Question 1
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
Question 2
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
Question 3
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
Question 4
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
Question 5
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
Question 6
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
Question 7
Q7: Choose the antonym of ‘Voluntary’.
Solution:
‘Voluntary’ means roughly the opposite of Compulsory.
Answer: Compulsory
Question 8
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
Question 9: valid parentheses
Show solution
Problem Statement: Given a string of brackets, determine if it is valid.
Example:
Input: "()[]{}"Output: trueSolution (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 10: maximum subarray sum
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)
Question 11: longest common prefix
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
- Aptitude Section is Critical: Must perform well in quantitative and logical reasoning
- Technical MCQs: Strong emphasis on programming fundamentals, DBMS, OOPs, banking domain knowledge
- Coding Section: 1-2 coding problems in 30 minutes requires good problem-solving skills
- Time Management: 20-25 aptitude in 30 min + 15-20 technical in 30 min + 1-2 coding in 30 min
- Success Rate: Only 20-25% cleared assessment and advanced to interviews
- Platform: ICICI Bank assessment platform
- Focus Areas: Quantitative aptitude, logical reasoning, programming fundamentals, banking domain knowledge
ICICI Bank 2024 interview experiences
Based on candidate experiences from 2024 ICICI Bank interviews:
2024 Interview Process:
- Online Assessment (90 minutes): Aptitude (20-25) + Technical (15-20) + Coding (1-2)
- Technical Interview (45-60 minutes): Programming concepts, DBMS, OOPs, banking domain knowledge, problem-solving
- 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
- Master Aptitude: Focus on quantitative, logical reasoning - practice regularly
- Technical Fundamentals: Strong understanding of programming, DBMS, OOPs concepts
- Banking Domain: Basic understanding of banking industry and ICICI Bank services
- Practice Previous Year Papers: Solve ICICI Bank assessment papers from 2020-2024 to understand patterns
- Time Management: Practice completing 20-25 aptitude questions in 30 minutes
- Coding Practice: Practice arrays, strings, basic algorithms
- Technical MCQs: Practice programming concepts, DBMS, OOPs, banking basics
- Behavioral Preparation: Prepare examples using STAR format - leadership, teamwork, banking interest
- Mock Tests: Take timed practice tests to improve speed and accuracy
- Banking Focus: Understand banking industry trends and ICICI Bank’s services
Comments & Suggestions
Related resources
Similar companies
HDFC Bank · Paytm · PhonePe · Razorpay · JP Morgan · Goldman Sachs

