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 Associate Software Trainee Interview Questions and Answers

Updated 12 Aug 2023

DXC Technology Associate Software Trainee Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement

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 - Aptitude Test 

It was about aptitude , it was quite easy to solve

Round 3 - Technical 

(2 Questions)

  • Q1. Interview was about 20 mins , questions were about basics of c
  • Q2. Pointers in c basics
  • Ans. 

    Pointers in C are variables that store memory addresses. They are used to access and manipulate data indirectly.

    • Pointers are declared using the * symbol, e.g. int *ptr;

    • To access the value at the memory address pointed to by a pointer, use the * operator, e.g. *ptr = 10;

    • Pointers can be used to pass variables by reference to functions, allowing the function to modify the original variable's value.

    • Pointers can also be use...

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

I applied via Naukri.com and was interviewed before May 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Explain me about yourself
  • Q2. Just be brief don't bore them

Interview Preparation Tips

Interview preparation tips for other job seekers - Be bold and confident.

Interview Questionnaire 

2 Questions

  • Q1. Java ( socket programming, OOPS, DS )
  • Q2. Write about your dream
  • Ans. 

    My dream is to build innovative software solutions that positively impact people's lives.

    • Developing cutting-edge technology

    • Creating user-friendly interfaces

    • Solving complex problems

    • Collaborating with talented individuals

    • Making a difference in society

    • Continuous learning and growth

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: GRE givers , you can make it through this. Brush up your technical skills for the programming section.
Tips: GRE quant and verbal and quick review from tutorialspoint.com would do the trick.

Round: Group Discussion
Experience: I had fun. I won a few debate competitions in various technical symposiums so, It gave a good experience about being quiet at the right moment.
Tips: Turn to your GRAB-ON mode. Never miss any chance. Learn to know when to be quiet and when to talk in a GD. Try to bring down the heat If two participants are getting into a argumentative discussion.

Round: Stress Interview
Experience: It was really difficult. Exactly after the GD, we were asked to right an essay in a very less time and our capability to manage the stress was observed.
Tips: Be calm and write all that you know in a presentable way.

Round: Technical Interview
Experience: I did a project in my 3rd year which included few concepts on Socket programming which helped me a bit in this round. I answered confidently and I was put to a confidence test too to see how sure I was about the answer.
Tips: A quick review on the day of interview and involving in friendly discussion about programming languages before the test helps.

Round: HR Interview
Experience: I was asked few technical questions in this round and later moved on to the general logical questions. Questions like, cutting a bread into multiple slices, finding the corresponding switch among 3 switches for 3 bulbs in room were asked. Find the sum of 1-10 in 4 seconds was asked suddenly. Thanks to Arithmetic Progressions :P.
Tips: Use your logical ability to answer.

Skills: Java, C, Body Language, Mental ability, Confidence.
College Name: Malla Reddy Institute of Engineering & Technology ( MRIET )
Motivation: Ranked among the top 50 of the Fortune 500. Expanding organizations which include lot of opportunities.

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

Round 1 - Aptitude Test 

Average questions with combination of logical verbal reasoning

Round 2 - HR 

(5 Questions)

  • Q1. What is your family background?
  • Q2. Why should we hire you?
  • Q3. Where do you see yourself in 5 years?
  • Q4. What are your strengths and weaknesses?
  • Q5. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice math.If you have good written and verbal skills you can easily crack the interview

Interview Questionnaire 

11 Questions

  • Q1. What is the difference between C and C++?
  • Ans. 

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

    • C++ supports classes and objects while C does not.

    • C++ has better support for polymorphism and inheritance.

    • C++ has a standard template library (STL) which C does not have.

    • C++ allows function overloading while C does not.

    • C++ has exception handling while C does not.

  • Answered by AI
  • Q2. What is the difference between for and while loop?
  • Ans. 

    For loop is used for iterating over a sequence while while loop is used for iterating until a condition is met.

    • For loop is used when the number of iterations is known beforehand

    • While loop is used when the number of iterations is not known beforehand

    • For loop is faster than while loop for iterating over a sequence

    • While loop is useful for iterating until a specific condition is met

    • For loop can be used with range() functio...

  • Answered by AI
  • Q3. Write a program to add two numbers without using + operator
  • Q4. How to you reverse a string without using any looping and inbuilt functions?
  • Ans. 

    To reverse a string without using any looping and inbuilt functions, we can use recursion.

    • Create a function that takes a string as input.

    • If the length of the string is 0 or 1, return the string.

    • Otherwise, call the function recursively with the substring starting from the second character and concatenate the first character at the end.

    • Return the reversed string.

    • Example: reverseString('hello') returns 'olleh'.

  • Answered by AI
  • Q5. How many queues will you use to implement a priority queue?
  • Ans. 

    A priority queue can be implemented using a single queue or multiple queues.

    • One approach is to use a single queue and assign priorities to elements using a separate data structure.

    • Another approach is to use multiple queues, each representing a different priority level.

    • For example, if there are three priority levels, three queues can be used to implement the priority queue.

  • Answered by AI
  • Q6. Which datastructure would you use to implement an heteregenous array?
  • Ans. 

    An array of objects can be used to implement a heterogeneous array.

    • Each element in the array can be an object that represents a different data type.

    • The objects can have different properties and methods based on their respective data types.

    • For example, an element can be an object representing a string with a 'value' property and a 'length' method.

  • Answered by AI
  • Q7. Tell me about yourself?
  • Q8. Describe your project?
  • Ans. 

    Developed a web-based inventory management system for a retail company.

    • Used HTML, CSS, and JavaScript for the front-end development.

    • Implemented a RESTful API using Node.js and Express for the back-end.

    • Utilized a MySQL database to store and manage inventory data.

    • Implemented features like product search, order management, and reporting.

    • Ensured data security and user authentication using encryption and JWT.

    • Collaborated wi...

  • Answered by AI
  • Q9. You are given a match-box and two candles of equal size, which can burn 1 hour each. You have to measure 90 minutes with these candles. (There is no scale or clock). How do you do?
  • Q10. You have 8 balls which are identical(completely). You are given a weighing scale. How many times would you measure to get the odd ball out?
  • Q11. Three friends rent a room for Rs.30 by paying Rs.10 each. The owner decides to give them a discount Rs.5 and gives it to the broker. The broker who a cunning man takes Rs.2. and returns one rupee to each ...
  • Ans. 

    The missing rupee is not actually missing. The calculation is misleading and does not account for the total amount paid.

    • The initial amount paid by each person was Rs.10, totaling Rs.30.

    • The owner gave them a discount of Rs.5, so they paid Rs.25 in total.

    • The broker took Rs.2, leaving them with Rs.23.

    • When the broker returned Rs.1 to each person, they each received Rs.1 back, totaling Rs.3.

    • So, the total amount paid by the ...

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Let me share my interview process with Sapient. As I did not find any helpful papers before attending interview.The initial test was amcat test, which consisted of aptitude, english comprehension(which was annoying because they ask a lot of unknown word meanings), C and C++ basic concepts. I cleared that test.

Round: Technical Interview
Experience: There are 2 interviews round
1) Technical
2) HR

General Tips: Bond: 1.5 yearEligibility Criteria : Greater than 6.5 CGPA
Skills: C++, Java, Algorithm
College Name: NA
Motivation: Sapient, Trust me it’s an awesome company .Be strong in technical area.

Skills evaluated in this interview

Interview Questionnaire 

13 Questions

  • Q1. Inheritence in java?
  • Ans. 

    Inheritance in Java allows a class to inherit properties and methods from another class.

    • Inheritance is achieved using the 'extends' keyword.

    • The class that is being inherited from is called the superclass or parent class.

    • The class that inherits from the superclass is called the subclass or child class.

    • Subclasses can access the public and protected members of the superclass.

    • Inheritance promotes code reusability and allow...

  • Answered by AI
  • Q2. Overloading and Overridding?
  • Q3. WAP to check if no is palindrom or not?
  • Ans. 

    A program to check if a given number is a palindrome or not.

    • Convert the number to a string.

    • Reverse the string and compare it with the original string.

    • If they are equal, the number is a palindrome.

    • If not, the number is not a palindrome.

  • Answered by AI
  • Q4. Primary key and Composite key?
  • Q5. Normalisation?
  • Ans. 

    Normalisation is the process of organizing data in a database to reduce redundancy and improve data integrity.

    • It involves breaking down a table into smaller tables and defining relationships between them.

    • Normalization helps to eliminate data inconsistencies and anomalies.

    • There are different levels of normalization, with each level having specific rules to follow.

    • For example, first normal form (1NF) requires that each t...

  • Answered by AI
  • Q6. Without lifting the pen meet 9 point arranged in squre of 3×3, using 4 lines?
  • Q7. If I am ready to relocate anywhere in India or Outside upon company needs
  • Ans. 

    Yes, I am ready to relocate anywhere in India or outside upon company needs.

    • I am open to exploring new locations and cultures.

    • I understand that relocation may be necessary for career growth and opportunities.

    • I am adaptable and willing to adjust to new environments.

    • I have experience working in diverse teams and can easily integrate into new settings.

  • Answered by AI
  • Q8. If I am ready to accept a project in Java, if Sapient had trained you in DotNet earlier
  • Ans. 

    I would be ready to accept a project in Java even if I was trained in DotNet earlier.

    • I have a strong foundation in programming principles and concepts, which can be applied to any language.

    • I am confident in my ability to quickly learn and adapt to new technologies.

    • I have experience working with multiple programming languages and frameworks.

    • I can leverage my knowledge of DotNet to understand similar concepts in Java.

    • I a...

  • Answered by AI
  • Q9. Why I want to join Sapient
  • Ans. 

    I want to join Sapient because of its reputation for innovative projects and collaborative work environment.

    • Sapient is known for working on cutting-edge projects that push the boundaries of technology

    • I value the collaborative work environment at Sapient, where team members support each other to achieve success

    • I am impressed by Sapient's commitment to professional development and growth opportunities for employees

  • Answered by AI
  • Q10. My Expectations from Sapient
  • Ans. 

    My expectations from Sapient

    • I expect Sapient to provide a challenging and innovative work environment

    • I expect Sapient to offer opportunities for professional growth and learning

    • I expect Sapient to have a collaborative and supportive team culture

    • I expect Sapient to provide competitive compensation and benefits

    • I expect Sapient to have a strong focus on quality and delivering excellent software solutions

  • Answered by AI
  • Q11. What is Counter Strike. ( I mentioned winning a couple of gaming events in my Resume)
  • Q12. What is Trading/Stocks/Exchange. (I had shown my interest in these things by mentioning the development of DalalStreet website by me)
  • Q13. What are you proud of apart from your website DalalStreet and a few more

Interview Preparation Tips

Round: Test
Experience: Vendor based online test consisting of 4 sections – Maths, Logical Reasoning, English and Technical(C/C++/DS/Debugging based Questions). This includes Sectional CutOff as well.

Round: Technical Interview
Experience: Another One on One Interview. Technical Questions on Languages/DataBases and Projects/Internships mentioned by you in your Resume. Lots of Puzzles.
In my case the Interviewer asked me questions on Database(3-4 queries),PHP,HTML,CSS,Internship,C/C++ Basics. Also I had 4 puzzles.

Round: HR Interview
Experience: Key : Just be yourself and be Confident in whatever you say. Show your eagerness to learn things (even if you don’t want to ). If you don’t know anything, Confidently speak up you don’t know. They hardly care, they only see if you are willing to learn.

General Tips: I would add here that SGM is majorly into developing Trading application. SGM – GlobalMarketInstitute would provide you with 6 months of training in technology(Java/DotNet) and Finance(Share/Exchange/Equities etc), which would be a great experience. Hence a knowledge and interest in Share Trading stuff is highly appreciated if you plan to grow your career in Sapient Global Markets.(Bond Agreement of 1.5 years which includes 6 months of Training Period)
Skills: PHP, Databases, C++, Java, .NET
College Name: MNIT Jaipur

Skills evaluated in this interview

Interview Questionnaire 

13 Questions

  • Q1. Indroduce yourself ?
  • Ans. 

    I am a software developer with experience in various programming languages and frameworks.

    • Proficient in Java, C++, and Python

    • Familiar with web development using HTML, CSS, and JavaScript

    • Experience with database management systems such as MySQL and MongoDB

    • Strong problem-solving and analytical skills

    • Worked on projects involving machine learning and artificial intelligence

  • Answered by AI
  • Q2. Difference between method overloading and methode overriding ?
  • Ans. 

    Method overloading is having multiple methods with the same name but different parameters. Method overriding is having a subclass method with the same name and parameters as a superclass method.

    • Method overloading is used to provide different ways of calling the same method with different parameters.

    • Method overriding is used to provide a specific implementation of a method in a subclass that is already defined in the su...

  • Answered by AI
  • Q3. Difference between switch case and if else statement?
  • Ans. 

    Switch case is used for multiple conditions while if else is used for binary conditions.

    • Switch case is faster than if else for multiple conditions.

    • If else can handle complex conditions while switch case cannot.

    • Switch case can only compare values of the same data type.

    • If else can handle null values while switch case cannot.

    • Example: switch (day) { case 1: console.log('Monday'); break; case 2: console.log('Tuesday'); brea...

  • Answered by AI
  • Q4. What is interface and abstract class?
  • Ans. 

    Interface and abstract class are both used for abstraction in object-oriented programming.

    • An interface is a collection of abstract methods that define a contract for a class to implement.

    • An abstract class is a class that cannot be instantiated and may contain abstract methods.

    • Interfaces are used to achieve multiple inheritance in Java.

    • Abstract classes can have non-abstract methods and instance variables.

    • An example of a...

  • Answered by AI
  • Q5. Whats is polymorphisom?
  • Ans. 

    Polymorphism is the ability of an object to take on many forms.

    • It allows objects of different classes to be treated as if they were objects of the same class.

    • It is achieved through method overriding and method overloading.

    • Example: A shape class can have multiple subclasses like circle, square, etc. and all can be treated as shapes.

    • Example: A method can have different implementations in different classes but with the sa

  • Answered by AI
  • Q6. What is inherritance ?
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a new class is created by inheriting properties of an existing class.

    • Inheritance allows code reusability and saves time and effort in writing new code.

    • The existing class is called the parent or base class, and the new class is called the child or derived class.

    • The child class inherits all the properties and methods of the parent class and can also add its ...

  • Answered by AI
  • Q7. Default case in switch case
  • Ans. 

    Default case in switch case statement

    • Default case is executed when no other case matches the switch expression

    • It is optional and can be placed anywhere in the switch statement

    • It is often used to handle unexpected input or errors

    • It should always be the last case in the switch statement

  • Answered by AI
  • Q8. Introduce yourself apart from resume?
  • Ans. 

    I am a passionate software developer with a strong background in web development and a love for problem-solving.

    • Experienced in HTML, CSS, JavaScript, and various web development frameworks

    • Proficient in backend development using languages like Java, Python, and Node.js

    • Familiar with database management systems such as MySQL and MongoDB

    • Strong problem-solving skills and ability to work well in a team environment

  • Answered by AI
  • Q9. What is your weaknesses ?
  • Ans. 

    I tend to get overly focused on details, which can sometimes slow down my progress.

    • I have a tendency to spend too much time on perfecting small details

    • I sometimes struggle with prioritizing tasks due to my focus on details

    • I am working on improving my time management skills to balance detail-oriented work with efficiency

  • Answered by AI
  • Q10. Do you have any offer from any other company ?
  • Ans. 

    Yes, I have received offers from two other companies.

    • Received offers from Company A and Company B

    • Currently evaluating all offers to make an informed decision

    • Considering factors like company culture, growth opportunities, and compensation

  • Answered by AI
  • Q11. Which company would you like to join apart from sapient ?
  • Ans. 

    I would like to join Google because of their innovative projects and work culture.

    • Google is known for its cutting-edge technology and innovative projects.

    • They have a strong focus on employee well-being and work-life balance.

    • Google offers opportunities for career growth and development.

    • The company has a diverse and inclusive work culture.

    • Google is a leader in the tech industry with a global presence.

  • Answered by AI
  • Q12. Have you ever worked in a team?
  • Ans. 

    Yes, I have worked in multiple teams in various projects.

    • Worked in a team of developers to create a new software application

    • Collaborated with designers, testers, and project managers to meet project deadlines

    • Participated in daily stand-up meetings to discuss progress and roadblocks

  • Answered by AI
  • Q13. 8 metals bolls are similar ?
  • Ans. 

    Yes, they are similar.

    • All 8 metal balls are of the same material.

    • They have the same size and weight.

    • They have the same physical properties.

    • They are interchangeable in any given situation.

  • Answered by AI

Interview Preparation Tips

College Name: NIT Meghalaya

Skills evaluated in this interview

I appeared for an interview before Dec 2015.

Interview Questionnaire 

2 Questions

  • Q1. Basic questions on Java and data structures with few analytics questions
  • Q2. Basic questions

Interview Preparation Tips

Round: Test
Experience: 1 minute for each question. Completely technical round with questions on Java, algorithm and data structures
Duration: 1 hour 30 minutes
Total Questions: 90

Round: HR Interview
Experience: They ask about your interest, your hobbies and once you are done with this they will ask you questions on the hobbies you previously claimed you like.

Skills: Java Programming
College Name: Thapar University, Patiala

Software Engineer Interview Questions & Answers

NTT Data user image NIDHI PRIYADARSHINI

posted on 9 Apr 2015

Interview Questionnaire 

6 Questions

  • Q1. Tell me about your project
  • Ans. 

    Developed a web-based project management tool for a startup

    • Used React for the frontend and Node.js for the backend

    • Implemented user authentication and authorization using JWT

    • Integrated with third-party APIs such as Trello and Slack

    • Implemented real-time updates using WebSockets

    • Deployed on AWS using EC2 and RDS

  • Answered by AI
  • Q2. Write the idea or algorithm for d program of fibonacci series
  • Ans. 

    Fibonacci series is a sequence of numbers where each number is the sum of the two preceding ones.

    • Start with 0 and 1 as the first two numbers

    • Add the previous two numbers to get the next number

    • Repeat until desired number of terms

  • Answered by AI
  • Q3. One question from your subject
  • Q4. Introduce yourself
  • Ans. 

    I am a software engineer with experience in developing web applications and mobile apps.

    • Proficient in programming languages such as Java, Python, and JavaScript

    • Skilled in using frameworks like React, Angular, and Spring Boot

    • Experienced in working with databases such as MySQL and MongoDB

    • Familiar with Agile development methodologies and DevOps practices

  • Answered by AI
  • Q5. If I give you a box full of pencils..in how many ways can you use it
  • Ans. 

    There are numerous ways to use a box full of pencils depending on the context and purpose.

    • Pencils can be used for writing, drawing, sketching, coloring, shading, and more.

    • They can be used for artistic purposes, schoolwork, office work, or personal use.

    • Pencils can also be used as a tool for measurement, as a makeshift stylus, or even as a musical instrument.

    • The number of ways to use a box full of pencils is virtually li...

  • Answered by AI
  • Q6. Do you have any question for me

Interview Preparation Tips

Round: Test
Experience: Time management is very important to clear the aptitude test. Besides this a lot of practice is also very important.  This round is the major filteration round. Though each round is a major filteration round cuz NTT DATA is not a bulk recruiter like cts, infy etc. Almost 2-3 thousand students were there for this round from 6 different colleges and only 100 of them were selected.
Tips: Its better to start with the preparation from before and do consider the previous year placement papers available at indiabix. You can practice more n more. Apart from this you can go through the r.s aggarwal aptitude book also.

Round: Group Discussion
Experience: There were many panels and each panel had 10-12 students. The H.r first decided some other topic but when he asked wether everybody is aware of the topic ..there were few who didn't know about it. .so he picked up another topic. Fortunately he asked me to start with the discussion.  Always try to be the one to break the ice.
Tips: The only key to crack this round is that yku should talk. You should definitely not confuse gd with debate. You should not argue or by any chance shouldn't sound arrogant.

Round: Technical Interview
Experience: They will definitely ask about your project so be thorough with that. Ntt data is a Japanese company . Though this is IT but it will ask  from the subject of your own choice from people those who have a non IT background. After you get shortlisted in d gd they will give you a form to fill. Do fill that form without fail. If it is blank then even if u go to the hr round he will reject you.
Tips: Just be confident and always smile. Be careful on what you write in your resume cuz they can ask about anything based on your resume.

Round: HR Interview
Experience: This round was a cake walk. Just be confident and updated about the company.  Do ask him a question if he asks you to do that.but make sure it shouldn't be vague or out of the picture.
Tips: Keep smiling and don't get nervous.  If they ask you about location preferences,  dun get firm at one place.try to be flexible.

General Tips: Donot loose hope at any cost. You never know when your moment is going to arrive. Do practice the aptitude as much as you can. Finally NTT DATA selected only 50 overall in wch 11 were from my college n i was lucky to be one of them. the offer letter was issued the same day and we were all venerated.  Its just a game of confidence. All the best
Skill Tips: Try to add some co curricular activities and justify your role.
Skills: communication, technical knowledge, management skills, leadership
College Name: SATHYABAMA UNIVERSITY
Motivation: You will find the it companies mostly head quartered in U.S but this company is in Japan. Plus you have better opportunity and growth compared to other companies cuz its not a bulk recruiter.

Skills evaluated in this interview

I applied via Walk-in and was interviewed before Jan 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. About communication skills & professional experience.

Interview Preparation Tips

Interview preparation tips for other job seekers - If was wonderful experience

DXC Technology Interview FAQs

How many rounds are there in DXC Technology Associate Software Trainee interview?
DXC Technology interview process usually has 3 rounds. The most common rounds in the DXC Technology interview process are Resume Shortlist, Aptitude Test and Technical.
What are the top questions asked in DXC Technology Associate Software Trainee interview?

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

  1. Pointers in c bas...read more
  2. Interview was about 20 mins , questions were about basics o...read more

Tell us how to improve this page.

DXC Technology Associate Software Trainee Interview Process

based on 1 interview

Interview experience

5
  
Excellent
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
 • 620 Interviews
View all
Associate Professional Software Engineer
2.2k salaries
unlock blur

₹2 L/yr - ₹7.2 L/yr

Software Engineer
2k salaries
unlock blur

₹2.4 L/yr - ₹11 L/yr

Associate Professional
1.5k salaries
unlock blur

₹2 L/yr - ₹7 L/yr

Associate Software Engineer
1.2k salaries
unlock blur

₹3 L/yr - ₹7 L/yr

Professional 1
1.1k salaries
unlock blur

₹3.2 L/yr - ₹13.5 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