2025 papers
DXC Technology Placement Papers 2024
Overview
This page collects DXC Technology 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 DXC Technology patterns and the latest shifts.
DXC Technology 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 |
DXC Technology Placement Papers 2024 - actual questions & solutions
This section contains practice questions styled on DXC Technology 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 10 days. B alone takes 15 days. How many days does A alone take?
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
Question 2
Q2: 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 3
Q3: A train 180 m long crosses a pole in 12 seconds. Find its speed in km/h.
Solution:
Speed = distance/time = 180/12 m/s = (180/12) × (18/5) = 54 km/h.
Answer: 54 km/h
Question 4
Q4: Simple interest on ₹5000 at 8% per annum for 3 years is?
Solution:
SI = (P × R × T)/100 = (5000 × 8 × 3)/100 = ₹1200.
Answer: ₹1200
Question 5
Q5: If in a certain code PEN is written as 161514 and INK as 91411, how is TIP written?
Solution:
Pattern: positions concatenated T=20,I=9,P=16
Therefore TIP → 20916.
Answer: 20916
Question 6
Q6: 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 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 antonym of ‘Ancient’.
Solution:
‘Ancient’ means roughly the opposite of Modern.
Answer: Modern
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: merge two sorted lists
Show solution
Problem Statement: Merge two sorted linked lists and return a new sorted list.
Example:
Input: 1→2→4 , 1→3→4Output: 1→1→2→3→4→4Solution (Java):
public ListNode mergeTwoLists(ListNode a, ListNode b) { ListNode dummy = new ListNode(0), cur = dummy; while (a != null && b != null) { if (a.val <= b.val) { cur.next = a; a = a.next; } else { cur.next = b; b = b.next; } cur = cur.next; } cur.next = (a != null) ? a : b; return dummy.next;}Time Complexity: O(n + m)
Space Complexity: O(1)
Question 11: reverse a string
Show solution
Problem Statement: Given a string, return it reversed.
Example:
Input: "placement"Output: "tnemecalp"Solution (Java):
public String reverse(String s) { return new StringBuilder(s).reverse().toString();}Time Complexity: O(n)
Space Complexity: O(n)
Key insights from 2024 DXC Technology Online Assessment
- Aptitude Section is Critical: Must perform well in quantitative and logical reasoning
- Technical MCQs: Strong emphasis on programming fundamentals, DBMS, OOPs, IT services 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: DXC Technology assessment platform
- Focus Areas: Quantitative aptitude, logical reasoning, programming fundamentals, IT services domain
DXC Technology 2024 interview experiences
Based on candidate experiences from 2024 DXC Technology 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, IT services domain knowledge, problem-solving
- HR Interview (30-45 minutes): Behavioral questions, company fit, motivation
Common 2024 Interview Topics:
- Aptitude: Quantitative reasoning, logical reasoning, probability
- Technical: Programming concepts, DBMS, OOPs, IT services domain knowledge
- Coding: Arrays, strings, basic algorithms
- Behavioral: Problem-solving approach, teamwork, motivation
Success Tips:
- Strong aptitude performance is essential - practice quantitative and logical reasoning
- Understand programming fundamentals, DBMS, OOPs, IT services basics
- Practice coding problems - arrays, strings, basic algorithms
- Prepare behavioral examples using STAR format
- Understand DXC Technology’s business model and IT services offerings
For detailed interview experiences, visit DXC Technology Interview Experience page.
Preparation tips for DXC Technology 2024 pattern
- Master Aptitude: Focus on quantitative, logical reasoning - practice regularly
- Technical Fundamentals: Strong understanding of programming, DBMS, OOPs concepts
- IT Services Domain: Basic understanding of IT services industry and DXC services
- Practice Previous Year Papers: Solve DXC Technology 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, IT services basics
- Behavioral Preparation: Prepare examples using STAR format - leadership, teamwork, problem-solving
- Mock Tests: Take timed practice tests to improve speed and accuracy
- Service-Based Focus: Understand service-based company culture and IT services expectations

