ICICI Bank 2025 papers
Latest ICICI Bank placement papers with current year questions
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 |
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.
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
Solution:
Combined rate = 1/10 + 1/15 = (10+15)/(10×15). Time = 10×15/(10+15) = 6 hours.
Answer: 6 hours
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
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
Solution:
Positions from left: A = 8, B = 43 − 13 + 1 = 31. Students between = 31 − 8 − 1 = 22.
Answer: 22
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
Solution:
‘Voluntary’ means roughly the opposite of Compulsory.
Answer: Compulsory
Solution:
Use since with a point in time; use for with a duration.
Correct: since.
Answer: since
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)
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)
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)
Based on candidate experiences from 2024 ICICI Bank interviews:
2024 Interview Process:
Common 2024 Interview Topics:
Success Tips:
For detailed interview experiences, visit ICICI Bank Interview Experience page.
ICICI Bank 2025 papers
Latest ICICI Bank placement papers with current year questions
ICICI Bank aptitude questions
Complete collection of ICICI Bank aptitude problems
ICICI Bank interview experience
Real interview experiences from successful candidates
ICICI Bank preparation guide
Comprehensive preparation strategy for ICICI Bank placement
ICICI Bank main page
Complete ICICI Bank placement guide with eligibility, process, and salary
HDFC Bank · Paytm · PhonePe · Razorpay · JP Morgan · Goldman Sachs
Practice 2024 papers to understand ICICI Bank pattern and prepare effectively!