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 Analyst II Interview Questions and Answers

Updated 15 Sep 2024

DXC Technology Analyst II Interview Experiences

3 interviews found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Aptitude Test 

I took aptitude test as a part of interview process. Overall, it was a challenging yet, rewarding experience that allow me to show-case my skills and problem solving abilities.

Round 2 - Technical 

(2 Questions)

  • Q1. We expect questions that assess our understanding of java programming concepts, problem solving and ability to write clean and efficient code.
  • Q2. Oops concept What is Polymorphism About Projects
  • Ans. 

    Polymorphism is the ability of a function or method to behave differently based on the object it is acting upon.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • It enables a single interface to be used for different data types or classes.

    • Examples include method overloading and method overriding in object-oriented programming languages like Java.

  • Answered by AI

Analyst II Interview Questions & Answers

user image Anonymous

posted on 15 Sep 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected

I applied via Freshersworld and was interviewed before Sep 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What are your strength and weaknesses?
  • Ans. 

    Strengths include analytical skills and attention to detail. Weaknesses include tendency to overthink and difficulty delegating tasks.

    • Analytical skills

    • Attention to detail

    • Tendency to overthink

    • Difficulty delegating tasks

  • Answered by AI
  • Q2. What is Aws and what services it provides
  • Ans. 

    AWS (Amazon Web Services) is a cloud computing platform that offers a wide range of services for computing, storage, databases, machine learning, and more.

    • Provides computing power through EC2 (Elastic Compute Cloud)

    • Offers storage solutions like S3 (Simple Storage Service)

    • Includes database services such as RDS (Relational Database Service)

    • Provides machine learning services like SageMaker

    • Offers serverless computing throu

  • Answered by AI

Skills evaluated in this interview

Analyst II Interview Questions Asked at Other Companies

asked in MiQ Digital
Q1. SQL: 1. find the duplicates in a given dataset 2. order of execut ... read more
Q2. What is Aws and what services it provides
Q3. Flexible Shift Timings around the clock based on volumes
Q4. Strength and weakness is must 2 with example
Q5. oops concept What is Polymorphism About Projects

Analyst II Interview Questions & Answers

user image Anonymous

posted on 25 Jul 2024

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

I applied via Campus Placement and was interviewed before Jul 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic aptitude , dbms wuestions

Round 2 - Coding Test 

Given the coding problem

Round 3 - Technical 

(1 Question)

  • Q1. Projects related questions

Analyst II Jobs at DXC Technology

View all

Interview questions from similar companies

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

I applied via Campus Placement and was interviewed in Sep 2022. 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 - Aptitude Test 

It will be the basic aptitude test .

Round 3 - Coding Test 

It would be the technical test where you will be having some output based questions and some coding questions.

Round 4 - HR 

(1 Question)

  • Q1. Tell me about yourself? Tell me about your hobbies? Why you want to join Capgemini?

Interview Preparation Tips

Interview preparation tips for other job seekers - I just want to share only one tip ,that please speak something . Wheather it's wrong or right . Atleast speak . Be fluent in english. Work on your communication skills.

Interview Questionnaire 

3 Questions

  • Q1. Technical questions
  • Q2. Resume based
  • Q3. Tell me about your self

Interview Questionnaire 

1 Question

  • Q1. About Resume, about Major project

I appeared for an interview before Jul 2021.

Round 1 - Aptitude Test 

This will be a general apptitude test where a questionnaire is consist of reasoning, English and Maths questions

Round 2 - One-on-one 

(3 Questions)

  • Q1. Tell us about yourself
  • Q2. What do you know about our company
  • Q3. Where do you see yourself in the next 5 years

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare yourself for general apptitude. And for interview one-on-one, Stay calm and focused. Just be yourself, know you gonna provide to the company

I applied via Recruitment Consulltant and was interviewed before Jul 2021. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. *Introduce yourself *Purpose of working in the Company *Educational Background *Family Background *Goals and Ambition

Interview Preparation Tips

Interview preparation tips for other job seekers - Be bold and confident about what you speak.

I appeared for an interview before Nov 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 180 Minutes
Round difficulty - Medium

The test was started in the evening 4pm approx.
It was flexible due to Corona so we gave the test from our home only.
It had listening skill activity too according to which we were marked .
Interviewer was very supportive because of which it was easier for us to open up easily .

  • Q1. 

    Arithmetic Expression Evaluation Problem Statement

    You are provided with a string expression consisting of characters '+', '-', '*', '/', '(', ')' and digits '0' to '9', representing an arithmetic express...

  • Ans. 

    Evaluate arithmetic expressions in infix notation with given operators and precedence rules.

    • Parse the infix expression to postfix using a stack and then evaluate the postfix expression using another stack

    • Use a stack to keep track of operators and operands while parsing the expression

    • Handle operator precedence and associativity rules while converting to postfix and evaluating the expression

  • Answered by AI
  • Q2. 

    Valid Parentheses Problem Statement

    Given a string 'STR' consisting solely of the characters “{”, “}”, “(”, “)”, “[” and “]”, determine if the parentheses are balanced.

    Input:

    The first line contains an...
  • Ans. 

    The task is to determine if a given string of parentheses is balanced or not.

    • Iterate through the characters of the string and use a stack to keep track of opening parentheses.

    • When encountering an opening parenthesis, push it onto the stack. When encountering a closing parenthesis, check if it matches the top of the stack.

    • If the stack is empty at the end or there are unmatched parentheses, the string is not balanced.

    • Exa...

  • Answered by AI
Round 2 - HR 

(1 Question)

Round duration - 20 Minutes
Round difficulty - Medium

Interview

  • Q1. 

    Reverse Number Problem Statement

    Ninja is exploring new challenges and desires to reverse a given number. Your task is to assist Ninja in reversing the number provided.

    Note:

    If a number has trailing ze...

  • Ans. 

    Implement a function to reverse a given number, omitting trailing zeros.

    • Create a function that takes an integer as input and reverses it while omitting trailing zeros

    • Use string manipulation to reverse the number and remove any trailing zeros

    • Handle test cases where the number has leading zeros as well

    • Ensure the reversed number is printed for each test case on a new line

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaCGPA above 6.5 and no active backlogsAccenture interview preparation:Topics to prepare for the interview - Oops, dmbs, rdbms, mysql, SDLC, projects, data structure and basic electronics.Time required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip 1 : confidence is the key.
Tip 2 : focus on communication skills.
Tip 3 : be honest and well prepared about your projects and trainings .

Application resume tips for other job seekers

Tip 1 : it should be to the point.
Tip 2 : be honest. And one should know everything that is written down there.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Recruitment Consulltant and was interviewed before Aug 2021. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Java. Spring boot, micro service, hibernate
Round 2 - HR 

(1 Question)

  • Q1. Salary, technical, company details

Interview Preparation Tips

Topics to prepare for Accenture Software Developer interview:
  • Java
  • Spring Boot
  • Micro service
  • Hibernate
  • JSP
Interview preparation tips for other job seekers - Java, spring boot, micro service, hibernate

DXC Technology Interview FAQs

How many rounds are there in DXC Technology Analyst II interview?
DXC Technology interview process usually has 2 rounds. The most common rounds in the DXC Technology interview process are Technical, Aptitude Test and Coding Test.
How to prepare for DXC Technology Analyst II 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 Social Media Marketing, Data Analysis, Recruitment, Social Media and IT Infrastructure Services.
What are the top questions asked in DXC Technology Analyst II interview?

Some of the top questions asked at the DXC Technology Analyst II interview -

  1. What is Aws and what services it provi...read more
  2. oops concept What is Polymorphism About Proje...read more
  3. we expect questions that assess our understanding of java programming concepts,...read more

Tell us how to improve this page.

DXC Technology Analyst II Interview Process

based on 10 interviews

Interview experience

4.1
  
Good
View more

Interview Questions from Similar Companies

Accenture Interview Questions
3.8
 • 8.2k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.7
 • 5.6k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
Nagarro Interview Questions
4.0
 • 759 Interviews
NTT Data Interview Questions
3.8
 • 624 Interviews
Publicis Sapient Interview Questions
3.5
 • 618 Interviews
View all
DXC Technology Analyst II Salary
based on 473 salaries
₹2.5 L/yr - ₹7.5 L/yr
35% less than the average Analyst II Salary in India
View more details

DXC Technology Analyst II Reviews and Ratings

based on 80 reviews

3.4/5

Rating in categories

3.5

Skill development

3.5

Work-life balance

2.7

Salary

3.6

Job security

3.3

Company culture

2.3

Promotions

3.2

Work satisfaction

Explore 80 Reviews and Ratings
RR-0109254 - Analyst II Infrastructure Services

Bangalore / Bengaluru

1-3 Yrs

₹ 4.48-4.8 LPA

Analyst II ERP Package Applications

Pune

1-5 Yrs

₹ 4-5.6 LPA

Analyst II Finance Information System

Bangalore / Bengaluru

2-3 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 L/yr

Associate Professional
1.5k salaries
unlock blur

₹2 L/yr - ₹6.8 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 - ₹14 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