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 Developer Interview Questions and Answers for Freshers

Updated 10 Dec 2024

DXC Technology Software Developer Interview Experiences for Freshers

5 interviews found

Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-

I appeared for an interview in Nov 2022.

Round 1 - Aptitude Test 

An aptitude test is a way for employers to assess a candidates abilities through a variety of different testing formats

Round 2 - HR 

(2 Questions)

  • Q1. An interview that typically conducted by a human resources generalist at the beginning of the hiring process
  • Q2. While the HR interview gets a bad reputation for being a formality

Interview Preparation Tips

Interview preparation tips for other job seekers - Fight for happiness
Learn something new every day
Market yourself

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

Software Developer Interview Questions Asked at Other Companies for Fresher

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
Q2. Validate Binary Tree Nodes Problem You are provided with 'N' bina ... read more
asked in Nagarro
Q3. Crazy Numbers Pattern Challenge Ninja enjoys arranging numbers in ... read more
asked in Mr Cooper
Q4. Connect Ropes Problem Statement Given a number of ropes denoted a ... read more
asked in Wipro
Q5. Minimum Operations to Make Strings Equal Given two strings, A and ... read more

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

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 😊

DXC Technology interview questions for designations

 Associate Software Developer

 (2)

 Junior Software Developer

 (1)

 Software Developer fresher

 (1)

 Senior Software Developer

 (1)

 Software Developer 1

 (1)

 Software Engineer

 (36)

 Software Associate

 (2)

 Software Tester

 (2)

Interview Questionnaire 

2 Questions

  • Q1. Tell about you
  • Q2. What is computer networking
  • Ans. 

    Computer networking is the practice of connecting devices together to share resources and communicate with each other.

    • Computer networking involves the use of hardware and software to connect devices together, such as computers, printers, and servers.

    • Networking protocols, such as TCP/IP, are used to facilitate communication between devices.

    • Examples of computer networks include local area networks (LANs), wide area netwo...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - 1 round will be aptitude test and 2 nd round will be group discussion and finally there will be technical hr and general hr round

Skills evaluated in this interview

Interview questions from similar companies

Interview Questionnaire 

5 Questions

  • Q1. How to give interview
  • Q2. Java
  • Q3. Database
  • Q4. HTML
  • Q5. C language

I applied via LinkedIn and was interviewed before Dec 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. What's is different between c and c++
  • Ans. 

    C++ is an extension of C with object-oriented programming features.

    • C++ supports object-oriented programming while C does not.

    • C++ has classes and templates while C does not.

    • C++ has better support for function overloading and default arguments.

    • C++ has a standard library that includes many useful functions.

    • C++ allows for both procedural and object-oriented programming.

    • C++ is generally considered to be a more complex langu

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Dont show your weakness

Skills evaluated in this interview

I applied via LinkedIn and was interviewed in May 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What is garbage collection?
  • Ans. 

    Garbage collection is an automatic memory management process.

    • It frees up memory that is no longer being used by the program.

    • It helps prevent memory leaks and crashes caused by running out of memory.

    • Examples of languages that use garbage collection are Java, Python, and Ruby.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good to study basic level code

Skills evaluated in this interview

I appeared for an interview in Oct 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 180 Minutes
Round difficulty - Medium

1 CODING ROUND CONSISTING OF 2 CODING QUESTIONS.
1 MCQ ROUND CONTAINING TECHNICAL AND APTITUDE QUESTIONS.

  • Q1. 

    Ninja and Candies Problem

    Ninja, a boy from Ninjaland, receives 1 coin every morning from his mother. He wants to purchase exactly 'N' candies. Each candy usually costs 2 coins, but it is available for 1 ...

  • Ans. 

    Calculate the earliest day on which Ninja can buy all candies with special offers.

    • Iterate through each day and check if any special offer is available for candies Ninja wants to buy

    • Keep track of the minimum day on which Ninja can buy all candies

    • Consider both regular price and sale price of candies

  • Answered by AI
  • Q2. 

    Replace Character Problem Statement

    Given an input string S and two characters 'c1' and 'c2', your task is to replace every occurrence of the character 'c1' with the character 'c2' in the given string.

    I...

  • Ans. 

    Replace every occurrence of a character in a string with another character.

    • Iterate through the input string and replace 'c1' with 'c2' using string manipulation functions.

    • Return the updated string as the output.

  • Answered by AI
Round 2 - HR 

Round duration - 15 Minutes
Round difficulty - Easy

HR round

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in BengaluruEligibility criteriaABOVE 6.5 CGPAAccenture interview preparation:Topics to prepare for the interview - DBMS, ALGORITHM, DATA SCIENCE, C++, JAVA, PYTHONTime required to prepare for the interview - 5 MonthsInterview preparation tips for other job seekers

Tip 1 : CLEAR YOUR BASICS.
Tip 2 : PRACTICE BASIC CODING QUESTIONS
Tip 3 : BE CLEAR ON YOUR PROJECTS

Application resume tips for other job seekers

Tip 1 : HAVE INTERNSHIPS
Tip 2 : HAVE PROJECTS(ATLEAST 1)

Final outcome of the interviewSelected

I applied via Recruitment Consultant and was interviewed in Aug 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. I had job Complete graduated with 80 per

Interview Preparation Tips

Interview preparation tips for other job seekers - I'm a fresher present I'm training for the java developer...

DXC Technology Interview FAQs

How many rounds are there in DXC Technology Software Developer interview for freshers?
DXC Technology interview process for freshers usually has 3 rounds. The most common rounds in the DXC Technology interview process for freshers are Resume Shortlist, Aptitude Test and HR.
How to prepare for DXC Technology Software Developer 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 Jenkins, Ansible, Application Development, Automation Testing and CI.
What are the top questions asked in DXC Technology Software Developer interview for freshers?

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

  1. What is computer network...read more
  2. How to send a file without any internet connection if you are in first floor an...read more
  3. Normal questions about Sap ABAP, was very basic interview. If you are good in R...read more
How long is the DXC Technology Software Developer interview process?

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

Tell us how to improve this page.

DXC Technology Software Developer Interview Process for Freshers

based on 1 interview

Interview experience

2
  
Poor
View more
DXC Technology Software Developer Salary
based on 1.1k salaries
₹3.6 L/yr - ₹14.9 L/yr
At par with the average Software Developer Salary in India
View more details

DXC Technology Software Developer Reviews and Ratings

based on 99 reviews

3.9/5

Rating in categories

3.6

Skill development

4.2

Work-life balance

3.5

Salary

3.8

Job security

3.9

Company culture

3.2

Promotions

3.5

Work satisfaction

Explore 99 Reviews and Ratings
Associate Professional Software Engineer
2.2k salaries
unlock blur

₹2.6 L/yr - ₹7.2 L/yr

Software Engineer
2k salaries
unlock blur

₹2.4 L/yr - ₹11.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