Skip to content

DXC Technology Placement Papers 2025

Overview

This page is a working set of DXC Technology placement papers from 2025: from student reports questions, the 2025 online assessment pattern, and step-by-step solutions. Use it to see what DXC Technology 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 DXC Technology drive.

DXC Technology Online Assessment 2025 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 2025 - actual questions & solutions

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

Question 1

Q1: 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 2

Q2: A shopkeeper marks goods 40% above cost and gives a 10% discount. Find the profit percentage.

Solution:

Let CP = 100. MP = 140. SP after 10% discount = 126.

Profit % = 126 − 100 = 26%.

Answer: 26%

Question 3

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

Solution:

Let original = 100. After +10% → 110. After −10% → 110 − 11 = 99.

Net change = 100 − 99 = 1. Net % = 1% decrease (always a loss of (10/10)² %).

Answer: 1% decrease

Question 4

Q4: Simple interest on ₹8000 at 10% per annum for 2 years is?

Solution:

SI = (P × R × T)/100 = (8000 × 10 × 2)/100 = ₹1600.

Answer: ₹1600

Question 5

Q5: Statements: All books are items. Some items are cheap. Conclusions: I. Some books are cheap. II. All items are books.

Solution:

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

Neither conclusion follows.

Answer: Neither I nor II follows

Question 6

Q6: Find the next number in the series: 7, 10, 15, 22, 31, ?

Solution:

Pattern: Differences +3,+5,+7,+9 → next +11

Next term = 42.

Answer: 42

Question 7

Q7: Choose the antonym of ‘Optimistic’.

Solution:

‘Optimistic’ means roughly the opposite of Pessimistic.

Answer: Pessimistic

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: first non-repeating character

Show solution

Problem Statement: Return the first non-repeating character in a string, or ‘_’ if none.

Example:

Input: "swiss"
Output: 'w'

Solution (Java):

public char firstUnique(String s) {
int[] freq = new int[256];
for (char c : s.toCharArray()) freq[c]++;
for (char c : s.toCharArray()) if (freq[c] == 1) return c;
return '_';
}

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

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

Key insights from 2025 DXC Technology 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, digital transformation concepts
  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: DXC Technology assessment platform
  7. Focus Areas: Quantitative aptitude, logical reasoning, programming fundamentals, digital transformation
  8. Enhanced Emphasis: Optimal solutions and digital transformation knowledge

DXC Technology 2025 interview experiences

Based on recent candidate experiences from 2025 DXC Technology interviews:

2025 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, digital transformation, problem-solving
  3. HR Interview (30-45 minutes): Behavioral questions, company fit, motivation

2025 Interview Trends:

  • Increased emphasis on digital transformation and modern technologies
  • More focus on optimal solutions and cloud technologies
  • Enhanced behavioral questions about adaptability and learning
  • Questions about digital transformation and IT services modernization

Common 2025 Interview Topics:

  • Aptitude: Quantitative reasoning, logical reasoning, combinations
  • Technical: Programming concepts, DBMS, OOPs, digital transformation, cloud basics
  • Coding: Arrays, strings, basic algorithms, optimal solutions
  • Behavioral: Problem-solving approach, teamwork, motivation, adaptability

Success Tips:

  • Strong aptitude performance is essential - practice quantitative and logical reasoning
  • Understand programming fundamentals, DBMS, OOPs, digital transformation concepts
  • Practice coding problems - arrays, strings, basic algorithms
  • Prepare behavioral examples using STAR format
  • Understand DXC Technology’s business model and digital transformation focus

For detailed interview experiences from 2025, visit DXC Technology Interview Experience page.

Preparation tips for DXC Technology 2025 pattern

  1. Master Aptitude: Focus on quantitative, logical reasoning - practice regularly
  2. Technical Fundamentals: Strong understanding of programming, DBMS, OOPs, digital transformation
  3. Practice Previous Year Papers: Solve DXC Technology assessment papers from 2020-2025 to understand evolving patterns
  4. Time Management: Practice completing 20-25 aptitude questions in 30 minutes
  5. Coding Practice: Practice arrays, strings, basic algorithms, optimal solutions
  6. Technical MCQs: Practice programming concepts, DBMS, OOPs, digital transformation
  7. Behavioral Preparation: Prepare examples using STAR format - leadership, teamwork, adaptability
  8. Mock Tests: Take timed practice tests to improve speed and accuracy
  9. Digital Transformation: Understand digital transformation concepts and cloud technologies
  10. Communication Skills: Practice articulating thoughts clearly

Comments & Suggestions

Similar companies

Infosys · TCS · Wipro · Accenture · Capgemini · HCL