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 Interview Questions, Process, and Tips for Freshers

Updated 4 Apr 2025

Top DXC Technology Interview Questions and Answers for Freshers

View all 53 questions

DXC Technology Interview Experiences for Freshers

Popular Designations

136 interviews found

I applied via Recruitment Consultant and was interviewed in Jan 2021. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. IBM Watson Assistant, studio, few other services
  • Q2. Azure chatbot development steps
  • Ans. 

    Azure chatbot development involves creating a bot, connecting it to Azure services, and training it to understand user queries.

    • Create a bot using Azure Bot Service

    • Connect the bot to Azure services like Azure Cognitive Services for natural language processing

    • Train the bot using machine learning algorithms to understand user queries

    • Deploy the bot to a messaging platform like Facebook Messenger or Skype

  • Answered by AI
  • Q3. Luis integration and training. Chatbot training. Intents, entities so on
  • Q4. Context switching. Problems faced during chatbot development and delivery to customers.
  • Ans. 

    Context switching during chatbot development can lead to problems in delivery to customers.

    • Context switching can cause delays in development and testing.

    • It can also lead to miscommunication and errors in the chatbot's responses.

    • Developers may need to switch between different programming languages or platforms, which can be challenging.

    • Testing and debugging can become more difficult when context switching is frequent.

    • Pr...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Not very difficult interview. They asked all most all concepts in chat bot design and development, training. Both azure and IBM nearly 2hrs.

Skills evaluated in this interview

Senior Professional Engineer Interview Questions asked at other Companies

Q1. Context switching. Problems faced during chatbot development and delivery to customers.
View answer (1)

Interview Questions & Answers

user image Anonymous

posted on 18 Dec 2022

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

I applied via Walk-in and was interviewed before Dec 2021. There were 4 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 - Group Discussion 

All about trending technology like cloud and AI

Round 3 - Technical 

(2 Questions)

  • Q1. All about degree last year project
  • Q2. Tell me about yourself
Round 4 - HR 

(3 Questions)

  • Q1. Can you do relocation?
  • Q2. Can you work in shift?
  • Q3. What is your Hobbies?

Interview Preparation Tips

Topics to prepare for DXC Technology interview:
  • Resume
Interview preparation tips for other job seekers - Prepare yiur resume. Questions asked based on resume

I applied via Campus Placement and was interviewed before Jul 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

They ask the basic aptitude and reasoning questions

Round 2 - Technical 

(1 Question)

  • Q1. They will ask the questions based on your resume

Interview Preparation Tips

Interview preparation tips for other job seekers - Dxc is always best for freshers they wil give you project immediately after training and we wil learn a lot.

Top DXC Technology Associate Professional Software Engineer Interview Questions and Answers

Q1. which technology stands on top in future
View answer (1)

Associate Professional Software Engineer Interview Questions asked at other Companies

Q1. which technology stands on top in future
View answer (1)

I applied via Campus Placement and was interviewed before Oct 2021. There were 3 interview rounds.

Round 1 - Coding Test 

10 MCQ for code snippets
3 Coding questions - 2 Basic , 1 Intermediate

Round 2 - Technical 

(4 Questions)

  • Q1. 1. Resume based questions 2. Write and explain 2 basic coding questions 2. Basic SQL 3. Basic concepts of OOPs
  • Q2. 1. check if string is 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.

  • Answered by AI
  • Q3. 2. Difference between DELETE and TRUNCATE and DROP
  • 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;

  • Answered by AI
  • Q4. What are 4 Pillars of OOPs
  • 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.

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. 30 mins around Basic questions about you goal and ambitions About the company

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was somewhat easy to intermediate. Just have your basics clear.

Skills evaluated in this interview

Top DXC Technology Software Engineer Interview Questions and Answers

Q1. 1. Describe project 2. What do you understand by OOPs. 3. What all Access modifiers are there in Java. 4. Difference between protected and default. 5. Overloading and overriding (difference, example and questions related to it) 6. Find the ... read more
View answer (1)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (223)

DXC Technology interview questions for popular designations

 Associate Software Engineer

 (50)

 Associate Professional

 (37)

 Software Engineer

 (36)

 Associate Professional Software Engineer

 (27)

 Software Developer

 (21)

 Associate Engineer

 (18)

 Business Analyst

 (17)

 Analyst

 (16)

I appeared for an interview before Oct 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 30 Minutes
Round difficulty - Medium

  • Q1. 

    Count Ways to Reach the N-th Stair Problem Statement

    You are provided with a number of stairs, and initially, you are located at the 0th stair. You need to reach the Nth stair, and you can climb one or tw...

  • Ans. 

    The problem involves counting the number of distinct ways to climb N stairs by taking 1 or 2 steps at a time.

    • Use dynamic programming to solve the problem efficiently.

    • The number of ways to reach the Nth stair is equal to the sum of ways to reach (N-1)th stair and (N-2)th stair.

    • Handle base cases for N=0 and N=1 separately.

    • Consider using modulo operation to avoid overflow for large values of N.

  • Answered by AI
Round 2 - HR 

Round duration - 15 Minutes
Round difficulty - Easy

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in HyderabadEligibility criteria6.5DXC Technology interview preparation:Topics to prepare for the interview - Oops, Dbms, Sql, c++ , data structures, computer networkTime required to prepare for the interview - 3 MonthsInterview preparation tips for other job seekers

Tip 1 : learn oops concept on tips 
Tip 2 : try to do fixing questions in any language 
Tip 3 : try to practice for aptitude very well practice 50-100 questions daily

Application resume tips for other job seekers

Tip 1 : must have 2 projects
Tip 2 : only write those things in your resume you are sure about them and have a very great knowledge about them

Final outcome of the interviewSelected

Top DXC Technology Software Developer Interview Questions and Answers

Q1. Count Ways to Reach the N-th Stair Problem Statement You are provided with a number of stairs, and initially, you are located at the 0th stair. You need to reach the Nth stair, and you can climb one or two steps at a time. Your task is to d... read more
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (43)

Get interview-ready with Top DXC Technology Interview Questions

Interview Questionnaire 

1 Question

  • Q1. Regarding C and C++

Interview Preparation Tips

Interview preparation tips for other job seekers - It was prety easy to answer,upon Hr questions was normal

Top DXC Technology Software Developer Interview Questions and Answers

Q1. Count Ways to Reach the N-th Stair Problem Statement You are provided with a number of stairs, and initially, you are located at the 0th stair. You need to reach the Nth stair, and you can climb one or two steps at a time. Your task is to d... read more
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (43)

Jobs at DXC Technology

View all

I applied via Recruitment Consultant and was interviewed in Dec 2020. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Tell me about yourself
  • Q2. What are your weaknesses
  • Q3. What do you know about insurance sector
  • Ans. 

    Insurance sector involves the business of providing financial protection against potential risks and losses.

    • Insurance sector is a part of the financial services industry.

    • It involves the transfer of risk from an individual or entity to an insurance company.

    • Insurance policies are contracts that outline the terms and conditions of coverage.

    • Types of insurance include life, health, property, auto, and liability insurance.

    • In...

  • Answered by AI
  • Q4. What are your personal interest

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm and confident

Process Associate Interview Questions asked at other Companies

Q1. How will you explain a red colour (or any colour) to a person who is blind since his or her birth?
View answer (22)
Round 1 - Aptitude Test 

Normal apti test.
Followed by interview

Interview Preparation Tips

Interview preparation tips for other job seekers - Very simple. Just brush up CS basics and you're good to go.

Top DXC Technology Software Engineer Interview Questions and Answers

Q1. 1. Describe project 2. What do you understand by OOPs. 3. What all Access modifiers are there in Java. 4. Difference between protected and default. 5. Overloading and overriding (difference, example and questions related to it) 6. Find the ... read more
View answer (1)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (223)

Interview Questions & Answers

user image Anonymous

posted on 7 Nov 2021

I applied via Campus Placement and was interviewed in May 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basics questions of c , c++ ,java ,aws, mainframe

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with basis questions

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

Interview Questionnaire 

4 Questions

  • Q1. 1. Introduce yourself?
  • Q2. 2.Why DXC?
  • Q3. 3.As a non-IT why to software? (I'm from ece)
  • Q4. 4. About your weakness and how you overcome it?

Interview Preparation Tips

Interview preparation tips for other job seekers - My interview is good. My advice is that don't panic, overtensed or nervous. This is the chance to prove yourself what you are. And other this is many people think there is no need of preparation for interview, in my point of view.. For fresher must and should prepare or beware of that. As we all know that are the HR questions but we don't know the answers for that so, be prepared for that. And important thing is RESUME many questions about this so, build your resume by you and study about your projects and all.
All the best ✊
Thankyou 😊

Top DXC Technology Software Developer Interview Questions and Answers

Q1. Count Ways to Reach the N-th Stair Problem Statement You are provided with a number of stairs, and initially, you are located at the 0th stair. You need to reach the Nth stair, and you can climb one or two steps at a time. Your task is to d... read more
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (43)

DXC Technology Interview FAQs

How many rounds are there in DXC Technology interview for freshers?
DXC Technology interview process for freshers usually has 2-3 rounds. The most common rounds in the DXC Technology interview process for freshers are Aptitude Test, Technical and Resume Shortlist.
How to prepare for DXC Technology interview for freshers?
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 Accounting, Finance, Communication Skills, bcom and Commerce.
What are the top questions asked in DXC Technology interview for freshers?

Some of the top questions asked at the DXC Technology interview for freshers -

  1. What is IP address What are the classes of IP What is workgroup and domain What...read more
  2. how can you increase the Ranking and visibility of a website in a Search engine...read more
  3. What is perform? Mention its different typ...read more
How long is the DXC Technology interview process?

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

Tell us how to improve this page.

DXC Technology Interview Process for Freshers

based on 50 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Accenture Interview Questions
3.8
 • 8.3k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Cognizant Interview Questions
3.7
 • 5.7k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Genpact Interview Questions
3.8
 • 3.2k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
Nagarro Interview Questions
4.0
 • 763 Interviews
NTT Data Interview Questions
3.8
 • 627 Interviews
Publicis Sapient Interview Questions
3.5
 • 621 Interviews
View all

DXC Technology Reviews and Ratings

based on 10.3k reviews

3.7/5

Rating in categories

3.6

Skill development

3.8

Work-life balance

3.1

Salary

3.6

Job security

3.5

Company culture

2.8

Promotions

3.4

Work satisfaction

Explore 10.3k Reviews and Ratings
Sr Analyst III ERP Package Applications

Chennai

5-6 Yrs

₹ 11-15.75 LPA

Sr Analyst III Software Engineering

Hyderabad / Secunderabad

3-11 Yrs

Not Disclosed

Associate Manager Procurement and Supply Chain

Bangalore / Bengaluru

5-7 Yrs

Not Disclosed

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

₹2.6 L/yr - ₹7.8 L/yr

Software Engineer
2k salaries
unlock blur

₹2.4 L/yr - ₹12.1 L/yr

Associate Professional
1.4k salaries
unlock blur

₹2 L/yr - ₹7 L/yr

Associate Software Engineer
1.2k salaries
unlock blur

₹3 L/yr - ₹7.1 L/yr

Professional 1
1.2k salaries
unlock blur

₹3.2 L/yr - ₹12.9 L/yr

Explore more salaries
Compare DXC Technology with

Cognizant

3.7
Compare

Capgemini

3.7
Compare

TCS

3.7
Compare

Wipro

3.7
Compare
Did you find this page helpful?
Yes No
write
Share an Interview