Capital One 2025 paper 1
Latest Capital One placement paper with coding problems and solutions
This page is a working set of Capital One placement papers from 2025: from student reports questions, the 2025 online assessment pattern, and step-by-step solutions. Use it to see what Capital One 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 Capital One drive.
Capital One 2025 paper 1
Latest Capital One placement paper with coding problems and solutions
Capital One 2025 paper 2
Additional 2025 Capital One paper with detailed solutions
Capital One 2025 paper 3
Another 2025 Capital One 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 Capital One 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:
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:
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:
Old sum = 5 × 20 = 100. New sum = 100 − 15 + 25 = 110. New average = 110/5 = 22.
Answer: 22
Solution:
SI = (P × R × T)/100 = (8000 × 10 × 2)/100 = ₹1600.
Answer: ₹1600
Solution:
Positions from left: A = 10, B = 41 − 10 + 1 = 32. Students between = 32 − 10 − 1 = 21.
Answer: 21
Solution:
Pattern: All divisible by 5 except 54
Odd one out = 54.
Answer: 54
Solution:
In placement verbal sections, ‘Concise’ is closest in meaning to Brief among common options.
Answer: Brief
Solution:
Use since with a point in time; use for with a duration.
Correct: since.
Answer: since
Problem Statement: Given an array of integers and a target, return indices of two numbers that add up to target.
Example:
Input: nums = [2, 7, 11, 15], target = 9Output: [0, 1]Solution (Java):
public int[] twoSum(int[] nums, int target) { Map<Integer, Integer> map = new HashMap<>(); for (int i = 0; i < nums.length; i++) { int need = target - nums[i]; if (map.containsKey(need)) return new int[]{map.get(need), i}; map.put(nums[i], i); } return new int[]{};}Time Complexity: O(n)
Space Complexity: O(n)
Problem Statement: Return true if the linked list has a cycle.
Example:
Input: 3→2→0→-4→(back to 2)Output: trueSolution (Java):
public boolean hasCycle(ListNode head) { ListNode slow = head, fast = head; while (fast != null && fast.next != null) { slow = slow.next; fast = fast.next.next; if (slow == fast) return true; } return false;}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)
Hiring volume
2025 Data: Capital One is actively hiring 600-1200 candidates in 2025. The company is conducting placement drives at 60+ colleges across India.
Salary packages
2025 Packages: ₹18-28 LPA for freshers (updated packages)
Process updates
2025 Updates: Latest assessment tools, improved interview process
Based on recent candidate experiences from 2025 Capital One interviews:
2025 Interview Process:
2025 Interview Trends:
Common 2025 Interview Topics:
Success Tips:
For detailed interview experiences from 2025, visit Capital One Interview Experience page.
JP Morgan · Goldman Sachs · Bank of America · Wells Fargo · HSBC · Barclays