Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by DXC Technology Team. If you also belong to the team, you can get access from here

DXC Technology Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

DXC Technology Software Engineer Interview Questions and Answers

Updated 17 Jun 2025

24 Interview questions

A Software Engineer was asked 1mo ago
Q. Tell me about JOIN queries.
Ans. 

JOIN queries combine rows from two or more tables based on related columns, enabling complex data retrieval.

  • INNER JOIN: Returns records with matching values in both tables. Example: SELECT * FROM A INNER JOIN B ON A.id = B.a_id;

  • LEFT JOIN: Returns all records from the left table and matched records from the right table. Example: SELECT * FROM A LEFT JOIN B ON A.id = B.a_id;

  • RIGHT JOIN: Returns all records from the r...

🔥 Asked by recruiter 2 times
A Software Engineer was asked 3mo ago
Q. Explain OOPS concepts.
Ans. 

OOP concepts include encapsulation, inheritance, polymorphism, and abstraction, forming the foundation of object-oriented programming.

  • Encapsulation: Bundling data and methods that operate on the data within one unit (class). Example: A class 'Car' with attributes like 'speed' and methods like 'accelerate()'.

  • Inheritance: Mechanism where a new class inherits properties and behavior from an existing class. Example: '...

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Four people need to cross a bridge at night with only one torch t ... read more
asked in Capgemini
Q2. In a dark room, there is a box of 18 white and 5 black gloves. Yo ... read more
Q3. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q4. Puzzle : 100 people are standing in a circle .each one is allowed ... read more
asked in TCS
Q5. Find the Duplicate Number Problem Statement Given an integer arra ... read more
A Software Engineer was asked 10mo ago
Q. What is OOPS, and can you explain each of its core principles?
Ans. 

OOPs stands for Object-Oriented Programming. It is a programming paradigm based on the concept of objects.

  • OOPs consists of four main principles: Inheritance, Encapsulation, Abstraction, and Polymorphism.

  • Inheritance allows a class to inherit properties and behavior from another class.

  • Encapsulation refers to the bundling of data and methods that operate on the data into a single unit.

  • Abstraction focuses on hiding th...

A Software Engineer was asked 11mo ago
Q. Do you know how to create a user?
Ans. 

Yes, I know how to create user accounts in software applications.

  • Use a user interface to input user information such as username, password, and email.

  • Store user information securely in a database.

  • Implement authentication and authorization mechanisms to control user access.

  • Provide functionality for users to update their profiles and reset passwords.

What people are saying about DXC Technology

View All
lazyboyy
Verified Icon
4d
works at
DXC Technology
The Cost of Speaking Up in Corporate Culture
"अगर हम कॉर्पोरेट की सच्चाई बोलें तो मैनेजर को गुस्सा आ जाता है, लेकिन जब वही मैनेजर कुछ भी सुनाए तो हमें चुप रहना पड़ता है — क्योंकि अगर हमने कुछ कहा, तो हमें ही झूठा साबित कर दिया जाएगा। यही तो सालों से होता आ रहा है। अगर कोई लड़का चुप है, तो उसे चुप रहने दो… लेकिन जैसे ही वो अपनी बात कहता है, उसे बाहर का रास्ता दिखा दिया जाता है। ये कहां का इंसाफ है?" "If we speak the truth about what really happens in corporate, the manager gets offended. But when the manager says something unfair, we’re expected to stay silent — because if we speak up, we’re the ones labeled as wrong. This has been happening for years. If a guy stays quiet, let him be… but the moment he speaks up, he’s shown the door. Where’s the fairness in that?"
Got a question about DXC Technology?
Ask anonymously on communities.
A Software Engineer was asked
Q. Write an SQL query to find the second highest salary from an Employee table with columns ID, Name, Salary, and Department.
Ans. 

To find the second highest salary in an employee table using SQL, we can use various methods like subqueries or the DISTINCT clause.

  • Use a subquery: SELECT MAX(Salary) FROM Employee WHERE Salary < (SELECT MAX(Salary) FROM Employee).

  • Use DISTINCT: SELECT DISTINCT Salary FROM Employee ORDER BY Salary DESC LIMIT 1 OFFSET 1.

  • Use ROW_NUMBER(): SELECT Salary FROM (SELECT Salary, ROW_NUMBER() OVER (ORDER BY Salary DESC) ...

What are the roles & responsibilities of a Software Engineer at DXC Technology?

Software Development

  • Write, test, and debug code
  • Support the documentation of software requirements and specifications
  • Develop application solutions to enhance productivity

Read full roles & responsibilities

🔥 Asked by recruiter 2 times
A Software Engineer was asked
Q. What are the four pillars of OOP?
Ans. 

4 Pillars of OOPs are Abstraction, Encapsulation, Inheritance, and Polymorphism.

  • Abstraction: Hiding implementation details and showing only necessary information.

  • Encapsulation: Binding data and functions together and restricting access to them.

  • Inheritance: Creating new classes from existing ones, inheriting properties and methods.

  • Polymorphism: Ability of objects to take on multiple forms or behaviors.

DXC Technology HR Interview Questions

81 questions and answers

Q. Can you describe your work experience and training experience?
Q. What qualifications and skills do you possess that make you suitable for th ... read more
Q. What are your experiences regarding workplace behavior?
A Software Engineer was asked
Q. Given a string, determine if it is a palindrome.
Ans. 

Check if a given string is a palindrome or not.

  • A palindrome is a word, phrase, number, or other sequence of characters that reads the same forward and backward.

  • To check if a string is a palindrome, compare the first and last characters, then the second and second-to-last characters, and so on.

  • If all pairs match, the string is a palindrome. If any pair does not match, the string is not a palindrome.

Are these interview questions helpful?
A Software Engineer was asked
Q. What are the differences between DELETE, TRUNCATE, and DROP statements?
Ans. 

DELETE removes specific rows, TRUNCATE removes all rows, DROP removes entire table.

  • DELETE is a DML command, TRUNCATE and DROP are DDL commands.

  • DELETE can have a WHERE clause to specify which rows to delete.

  • TRUNCATE resets the table and cannot be undone.

  • DROP removes the table and all associated objects.

  • Example: DELETE FROM table WHERE id = 1;

  • Example: TRUNCATE table;

  • Example: DROP TABLE table;

A Software Engineer was asked
Q. Can you write the code shown below in any language you know?
Ans. 

Yes, I can write the code in multiple languages.

  • I am proficient in multiple programming languages such as Java, Python, C++, and JavaScript.

  • I can write the code in any of these languages based on the requirements.

  • The code shown in the question is not provided, so I cannot provide an example.

  • However, I can assure you that I have the necessary skills to write the code in any language.

A Software Engineer was asked
Q. What is software?
Ans. 

Software is a set of instructions that tell a computer what to do.

  • Software is a collection of programs, data, and instructions that tell a computer how to perform specific tasks.

  • It can be categorized into system software, application software, and middleware.

  • Examples of software include Microsoft Office, Adobe Photoshop, and Google Chrome.

DXC Technology Software Engineer Interview Experiences

39 interviews found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in May 2025, where I was asked the following questions.

  • Q1. Tell me about JOIN queries
  • Ans. 

    JOIN queries combine rows from two or more tables based on related columns, enabling complex data retrieval.

    • INNER JOIN: Returns records with matching values in both tables. Example: SELECT * FROM A INNER JOIN B ON A.id = B.a_id;

    • LEFT JOIN: Returns all records from the left table and matched records from the right table. Example: SELECT * FROM A LEFT JOIN B ON A.id = B.a_id;

    • RIGHT JOIN: Returns all records from the right ...

  • Answered by AI
  • Q2. Tell me about your projects
  • Ans. 

    I have worked on various projects, including web applications, mobile apps, and data analysis tools, showcasing my diverse skill set.

    • Developed a responsive web application using React and Node.js for an e-commerce platform, improving user engagement by 30%.

    • Created a mobile app for tracking fitness activities, utilizing Flutter and Firebase, which gained over 10,000 downloads in the first month.

    • Implemented a data analys...

  • Answered by AI

Software Engineer Interview Questions & Answers

user image PRASANTH CNM

posted on 16 May 2025

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Apr 2025, where I was asked the following questions.

  • Q1. Can you describe your work experience?
  • Ans. 

    I have over five years of experience in software development, focusing on web applications and cloud-based solutions.

    • Developed a scalable e-commerce platform using React and Node.js, improving load times by 30%.

    • Led a team of 4 in migrating legacy systems to AWS, resulting in a 40% reduction in operational costs.

    • Implemented CI/CD pipelines using Jenkins, which decreased deployment times from hours to minutes.

    • Collaborate...

  • Answered by AI
  • Q2. Can you describe your roles and responsibilities?
  • Ans. 

    As a Software Engineer, I design, develop, and maintain software applications while collaborating with cross-functional teams.

    • Developed and maintained web applications using JavaScript and React, improving user experience and performance.

    • Collaborated with product managers to gather requirements and translate them into technical specifications.

    • Participated in code reviews to ensure code quality and adherence to best pra...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Work diligently and ensure you have a thorough understanding of the task at hand.

Software Engineer Interview Questions & Answers

user image monika sharma

posted on 21 Sep 2024

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Fibonacci series and program to find the max number in list

Round 2 - Technical 

(2 Questions)

  • Q1. What is oops and explain each of the terms
  • Q2. What is list, dictionary, set and tuple and difference between them
  • Ans. 

    List, dictionary, set, and tuple are data structures in Python with different characteristics and use cases.

    • List: ordered collection of items, mutable (can be changed), represented by square brackets []

    • Dictionary: unordered collection of key-value pairs, mutable, represented by curly braces {}

    • Set: unordered collection of unique items, mutable, represented by curly braces {}

    • Tuple: ordered collection of items, immutable ...

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. What is Dns and what are its use
  • Ans. 

    DNS stands for Domain Name System. It is a decentralized naming system for computers, services, or any resource connected to the Internet.

    • DNS translates domain names to IP addresses

    • It helps in locating resources on the Internet

    • DNS servers store domain name records like A, CNAME, MX, etc.

    • Examples: www.google.com translates to 172.217.3.196

  • Answered by AI
  • Q2. Do you know how to create user
  • Ans. 

    Yes, I know how to create user accounts in software applications.

    • Use a user interface to input user information such as username, password, and email.

    • Store user information securely in a database.

    • Implement authentication and authorization mechanisms to control user access.

    • Provide functionality for users to update their profiles and reset passwords.

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Aptitude Test 

Reasoning and arthamatic

Interview Preparation Tips

Interview preparation tips for other job seekers - Skills c and paython programing language

Software Engineer Interview Questions & Answers

user image Shivani Velchuri

posted on 16 Apr 2025

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Oct 2024, where I was asked the following questions.

  • Q1. Tell me about yourself
  • Q2. Explain oops concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - all good . good for experienced since this is work from home.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Sep 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Coding Test 

2 coding questions followed by some aptitude questions.

Round 3 - One-on-one 

(3 Questions)

  • Q1. He asked me 1 coding question after introduction and after that some HR questions.
  • Q2. The interviewer was calm and the interview went well.
  • Q3. Why should i hire you.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Instahyre and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Self introduction technical questions
  • Q2. Technical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Get well prepared for programming language
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - HR 

(4 Questions)

  • Q1. Why should I hire you
  • Q2. Where you want to see in 5 years?
  • Q3. What do you know about company ?
  • Q4. What's your strength and week ness?
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

Basic aptitude and essay

Round 2 - Technical 

(1 Question)

  • Q1. Easy, questions around rojects

DXC Technology Interview FAQs

How many rounds are there in DXC Technology Software Engineer interview?
DXC Technology interview process usually has 2-3 rounds. The most common rounds in the DXC Technology interview process are Technical, Aptitude Test and Resume Shortlist.
How to prepare for DXC Technology Software Engineer interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at DXC Technology. The most common topics and skills that interviewers at DXC Technology expect are Recruitment, Troubleshooting, Social Media Marketing, Debugging and Project Development.
What are the top questions asked in DXC Technology Software Engineer interview?

Some of the top questions asked at the DXC Technology Software Engineer interview -

  1. 1. Describe project 2. What do you understand by OOPs. 3. What all Access modif...read more
  2. Can you write the codee which is shown below in any of the languages which you...read more
  3. 2.In second round which is technical round, again they gave one pgm which is li...read more
How long is the DXC Technology Software Engineer interview process?

The duration of DXC Technology Software Engineer interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

3.9/5

based on 22 interview experiences

Difficulty level

Easy 29%
Moderate 71%

Duration

Less than 2 weeks 64%
2-4 weeks 14%
4-6 weeks 21%
View more
DXC Technology Software Engineer Salary
based on 2k salaries
₹4.4 L/yr - ₹12.1 L/yr
14% less than the average Software Engineer Salary in India
View more details

DXC Technology Software Engineer Reviews and Ratings

based on 203 reviews

3.7/5

Rating in categories

3.4

Skill development

3.7

Work-life balance

3.1

Salary

3.4

Job security

3.6

Company culture

2.9

Promotions

3.2

Work satisfaction

Explore 203 Reviews and Ratings
Analyst I software Engineering

Hyderabad / Secunderabad

2-7 Yrs

₹ 2.8-11 LPA

Analyst I Software Engineering

Bangalore / Bengaluru

2-3 Yrs

₹ 2.8-12 LPA

Explore more jobs
Associate Professional Software Engineer
2.2k salaries
unlock blur

₹3 L/yr - ₹7.8 L/yr

Software Engineer
2k salaries
unlock blur

₹4.4 L/yr - ₹12.1 L/yr

Software Developer
1.2k salaries
unlock blur

₹3.7 L/yr - ₹21.3 L/yr

Senior Software Engineer
1.1k salaries
unlock blur

₹11.3 L/yr - ₹24.5 L/yr

Professional 1
1.1k salaries
unlock blur

₹5 L/yr - ₹11.5 L/yr

Explore more salaries
Compare DXC Technology with

Cognizant

3.7
Compare

Capgemini

3.7
Compare

TCS

3.5
Compare

Wipro

3.7
Compare
write
Share an Interview