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
3.7

based on 9.6k Reviews

Filter interviews by

DXC Technology Senior Java Developer Interview Questions, Process, and Tips

Updated 28 Aug 2023

DXC Technology Senior Java Developer Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
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 - Technical 

(8 Questions)

  • Q1. DESCRIBE TYPES JVM MEMORY.
  • Ans. 

    JVM memory consists of Young Generation, Old Generation, and Permanent Generation.

    • Young Generation: where new objects are allocated and aged before moving to Old Generation.

    • Old Generation: where long-lived objects are stored.

    • Permanent Generation: where metadata such as class definitions and method information are stored.

  • Answered by AI
  • Q2. DIFFERENCE BETWEEN INTERFACE AND ABSTRACT CLASS.
  • Ans. 

    Interface is a contract with no implementation, while abstract class can have some implementation.

    • Interface cannot have any method implementation, while abstract class can have some method implementations.

    • A class can implement multiple interfaces, but can only extend one abstract class.

    • Interfaces are used to achieve multiple inheritance in Java.

    • Abstract classes can have constructors, while interfaces cannot.

    • Example: In...

  • Answered by AI
  • Q3. HOW TO CREATE OUR OWN IMMUTABLE CLASS? WHY IMMUTABLE CLASS
  • Ans. 

    Immutable classes in Java are classes whose objects cannot be modified once they are created.

    • Make the class final to prevent inheritance

    • Make all fields private and final

    • Do not provide setter methods for fields

    • Ensure that any mutable objects within the class are also immutable

  • Answered by AI
  • Q4. WHAT IS DIFFERENCE BETWEEN COMPOSITION AND AGGREGATION ?
  • Ans. 

    Composition is a strong relationship where the child object cannot exist independently of the parent object, while aggregation is a weak relationship where the child object can exist independently.

    • Composition is a 'has-a' relationship, where the child object is a part of the parent object.

    • Aggregation is a 'has-a' relationship, where the child object is not a part of the parent object.

    • In composition, the child object is...

  • Answered by AI
  • Q5. DIFFERENCE BETWEEN COMPARABLE AND COMPARATOR.
  • Ans. 

    Comparable is an interface used for natural ordering of objects, while Comparator is an interface used for custom ordering of objects.

    • Comparable interface is implemented by the class whose objects are to be compared, while Comparator interface is implemented by a separate class.

    • Comparable interface has a single method compareTo() for comparing objects, while Comparator interface has a single method compare() for custom...

  • Answered by AI
  • Q6. DIFFERENCE BETWEEN HASHMAP AND CONCURRENTHASH MAP
  • Ans. 

    HashMap is not thread-safe while ConcurrentHashMap is thread-safe.

    • HashMap is not thread-safe and can lead to ConcurrentModificationException if modified during iteration.

    • ConcurrentHashMap allows concurrent read and write operations without the need for external synchronization.

    • ConcurrentHashMap achieves thread-safety by dividing the map into segments, allowing multiple threads to operate on different segments concurren...

  • Answered by AI
  • Q7. DIFFERENCE BETWEEN COLLECTION AND STREAM
  • Ans. 

    Collections store data while streams process data in a functional way.

    • Collections are used to store and manage groups of objects, while streams are used to process collections of objects.

    • Collections are mutable, meaning you can add, remove, or modify elements, while streams are immutable and do not change the original data.

    • Streams use functional programming concepts like map, filter, and reduce to process data efficien...

  • Answered by AI
  • Q8. IN WHICH SITUATION WE USE @PRIMARY AND @ QUALIFIER ?
  • Ans. 

    Use @Primary to specify a primary bean when multiple beans of the same type are present. Use @Qualifier to specify a specific bean when multiple beans of the same type are present.

    • Use @Primary to indicate the primary bean to be used when multiple beans of the same type are present in the Spring application context.

    • Use @Qualifier along with @Autowired to specify a specific bean to be injected when multiple beans of the ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Everyone should focus on core java and java 1.8.
Spring boot and microservices

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Walk-in and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Given an array {1, 2, 1, 4, 5, 4, 8, 7}, how can you use Streams to remove duplicates while retaining only the even numbers?
  • Ans. 

    Use Streams to remove duplicates and retain only even numbers from an array.

    • Convert the array to a stream using Arrays.stream()

    • Use distinct() to remove duplicates

    • Filter out odd numbers using filter()

    • Collect the result using collect(Collectors.toList())

  • Answered by AI
  • Q2. What is the use of Static and final when you will use Static methods
  • Ans. 

    Static methods can be accessed without creating an instance of the class, while final keyword makes the method unchangeable.

    • Static methods belong to the class itself, not to any specific instance

    • Final keyword ensures that the method cannot be overridden in subclasses

    • Static methods are commonly used for utility methods that do not require access to instance variables

    • Example: Math class in Java has static methods like Ma

  • Answered by AI
  • Q3. What is the difference between @restController and @controller Annotation
  • Ans. 

    The @RestController annotation is used to define RESTful web services while @Controller annotation is used to define MVC controller.

    • RestController is a specialized version of Controller used for RESTful web services

    • RestController eliminates the need for @ResponseBody annotation

    • Controller is used for traditional MVC controller functionality

    • RestController returns data directly without needing to go through a view resolve...

  • Answered by AI
  • Q4. What is microservices why we use it
  • Ans. 

    Microservices are a software development technique where applications are composed of small, independent services that communicate with each other.

    • Microservices allow for easier scalability and maintenance of complex applications.

    • Each service in a microservices architecture can be developed, deployed, and scaled independently.

    • Microservices promote flexibility and agility in software development.

    • Examples of companies us...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Cognizant Senior Java Developer interview:
  • Java SpringBoot
Interview preparation tips for other job seekers - Need to have strong knowledge on basics Java Spring boot and Microservices
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Coding Test 

The first round was an interview conducted with a GENAI virtual bot.

Round 2 - One-on-one 

(2 Questions)

  • Q1. Internal architecture of Spring boot, how enable autoconfiguration works
  • Ans. 

    Spring Boot uses autoconfiguration to automatically configure the Spring application based on dependencies and properties.

    • Spring Boot autoconfiguration is achieved through @EnableAutoConfiguration annotation

    • Autoconfiguration classes are located in the org.springframework.boot.autoconfigure package

    • Autoconfiguration classes are conditionally applied based on the presence of specific classes or properties

  • Answered by AI
  • Q2. Questions mostly on microservices and coding question on restTemplate

Interview Preparation Tips

Topics to prepare for Wipro Senior Java Developer interview:
  • Java
  • Spring Boot
  • Microservices
  • REST API
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I was interviewed in Sep 2024.

Round 1 - Assignment 

There were MCQ questions consists of different sections like Design Pattern,Java 8

Round 2 - Technical 

(2 Questions)

  • Q1. Questions related to Multithreading,Design patterns
  • Q2. Java coding questions
Round 3 - Technical 

(2 Questions)

  • Q1. Questions related to Multithreading
  • Q2. Java coding questions
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(8 Questions)

  • Q1. Write a program on java8 ?
  • Ans. 

    Program using Java 8 features to filter a list of strings starting with 'A' and convert them to uppercase.

    • Use Java 8 stream API to filter the strings starting with 'A'.

    • Use map() function to convert the filtered strings to uppercase.

    • Collect the results into a new list using collect() function.

  • Answered by AI
  • Q2. How connect two dbs in spring boot?
  • Ans. 

    To connect two databases in Spring Boot, you can configure multiple data sources and use JPA to interact with them.

    • Configure multiple data sources in application.properties or application.yml file

    • Define multiple DataSource beans in your configuration class

    • Use @Primary annotation to specify the primary data source

    • Use @Qualifier annotation to specify which data source to use in a specific repository or service

    • Use @Transa...

  • Answered by AI
  • Q3. Index in MySQL?
  • Ans. 

    An index in MySQL is a data structure that improves the speed of data retrieval operations on a database table.

    • Indexes are used to quickly locate rows in a table without having to search every row.

    • They can be created on one or more columns in a table.

    • Indexes can be unique, which means that the indexed columns must contain unique values.

    • Examples of indexes include primary keys, unique keys, and regular indexes.

  • Answered by AI
  • Q4. Difference between post & get mapping in spring boot and can we update the data using post mapping?
  • Ans. 

    Post mapping is used to create or update data, while get mapping is used to retrieve data. Yes, data can be updated using post mapping.

    • Post mapping is used to create or update data in the server, while get mapping is used to retrieve data from the server.

    • Post mapping is typically used for operations that modify data, such as creating a new resource or updating an existing one.

    • Get mapping is used for operations that do ...

  • Answered by AI
  • Q5. Microservices design patterns?
  • Ans. 

    Design patterns in microservices architecture help in solving common problems and improving scalability, maintainability, and flexibility.

    • Service Registry pattern - used for service discovery and registration, such as Netflix Eureka

    • Circuit Breaker pattern - prevents cascading failures by failing fast and providing fallback mechanisms, like Hystrix

    • API Gateway pattern - acts as a single entry point for clients to access ...

  • Answered by AI
  • Q6. Explain about SOLID principles in java?
  • Ans. 

    SOLID principles are a set of five design principles in object-oriented programming to make software designs more understandable, flexible, and maintainable.

    • S - Single Responsibility Principle: A class should have only one reason to change.

    • O - Open/Closed Principle: Classes should be open for extension but closed for modification.

    • L - Liskov Substitution Principle: Objects of a superclass should be replaceable with obje...

  • Answered by AI
  • Q7. What are the advantages of spring boot over spring?
  • Ans. 

    Spring Boot simplifies the development of Spring applications by providing out-of-the-box configurations and reducing boilerplate code.

    • Spring Boot provides a quick and easy way to set up a Spring application with minimal configuration.

    • It includes embedded servers like Tomcat, Jetty, or Undertow, eliminating the need for deploying WAR files.

    • Auto-configuration feature in Spring Boot automatically configures the applicati...

  • Answered by AI
  • Q8. Give one API task and need to sort the employee or users data based on the interviewer requirement?

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected
Round 1 - Technical 

(1 Question)

  • Q1. Java 8, exception handling for method overriding, collections basic on HashMap , hash set, blocking queue. Transient volatile

Interview Preparation Tips

Topics to prepare for Virtusa Consulting Services Senior Java Developer interview:
  • Java 8
  • exception handling
  • coding questions
Interview preparation tips for other job seekers - The 1st technical round was fine but the 2nd one was overwhelming since 4-5 people came to interview with cameras on so please be prepared.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(8 Questions)

  • Q1. Tell me about your self
  • Q2. How garbage collection works in java
  • Ans. 

    Garbage collection in Java is the process of automatically reclaiming memory by destroying unused objects.

    • Garbage collection is performed by the JVM to free up memory occupied by objects that are no longer needed.

    • It involves identifying and deleting objects that are no longer reachable by any part of the program.

    • Java provides automatic garbage collection, so developers do not have to manually manage memory allocation a...

  • Answered by AI
  • Q3. Difference between String s = "xyz" and String s = new String("xyz")
  • Ans. 

    The first statement creates a string literal in the string pool, while the second statement creates a new string object in the heap memory.

    • String s = "xyz" creates a string literal in the string pool.

    • String s = new String("xyz") creates a new string object in the heap memory.

    • Using String s = new String("xyz") can lead to unnecessary memory usage.

  • Answered by AI
  • Q4. Difference between JVM JRE JDK
  • Ans. 

    JVM is the virtual machine that runs Java programs, JRE is the runtime environment for Java programs, and JDK is the development kit for creating Java programs.

    • JVM (Java Virtual Machine) is the virtual machine that runs Java bytecode and converts it into machine code.

    • JRE (Java Runtime Environment) is the environment in which Java programs are executed. It includes JVM, libraries, and other necessary components.

    • JDK (Jav...

  • Answered by AI
  • Q5. What is public static void main method
  • Ans. 

    The public static void main method is the entry point of a Java program, where execution begins.

    • It must be declared as public so that it can be accessed from outside the class.

    • It must be declared as static so that it can be called without creating an instance of the class.

    • It must have a return type of void, indicating that it does not return any value.

    • It takes an array of strings (String[] args) as a parameter, which a...

  • Answered by AI
  • Q6. Difference between final finally finalize
  • Ans. 

    final is a keyword used to declare constants, finally is a block used in exception handling, and finalize is a method used for cleanup.

    • final keyword is used to declare constants that cannot be changed

    • finally block is used in exception handling to ensure a piece of code is always executed

    • finalize method is used for cleanup operations before an object is garbage collected

  • Answered by AI
  • Q7. Internal working of HashSet
  • Ans. 

    HashSet is a collection class in Java that stores unique elements using a hash table.

    • Uses hashing to store elements

    • Does not maintain insertion order

    • Allows null values

    • Implements Set interface

  • Answered by AI
  • Q8. Hierarchy of ArrayList
  • Ans. 

    ArrayList is a resizable array implementation in Java.

    • ArrayList is a class in Java that implements the List interface.

    • It allows dynamic resizing of the array, unlike regular arrays.

    • Elements can be added, removed, or accessed using index.

    • Example: ArrayList names = new ArrayList<>();

Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Hacker rank test objective and coding

Round 2 - Technical 

(1 Question)

  • Q1. Spribg boot annotations
Round 3 - One-on-one 

(1 Question)

  • Q1. Java 8 stream api
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(4 Questions)

  • Q1. Asked program to return element in a balance array element. Solid design principle Springboot questions
  • Q2. Asked grouping by stream program
  • Q3. Spring questions
  • Q4. How to remove autoconfiguration in springboot
  • Ans. 

    To remove autoconfiguration in Spring Boot, exclude the specific autoconfiguration class from the application.

    • Exclude the autoconfiguration class using @EnableAutoConfiguration annotation with exclude attribute

    • Create a configuration class and exclude the specific autoconfiguration class using @EnableAutoConfiguration annotation

    • Use application.properties or application.yml to exclude autoconfiguration classes

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Write a spring boot rest controller
  • Ans. 

    A Spring Boot REST controller is used to handle incoming HTTP requests and return appropriate responses.

    • Create a new Java class annotated with @RestController

    • Define request mapping annotations like @GetMapping, @PostMapping, @PutMapping, @DeleteMapping

    • Inject dependencies using @Autowired annotation

    • Return response using ResponseEntity or directly as method return value

  • Answered by AI
  • Q2. Write a code for get a reverse String having a comma separated value in java
  • Ans. 

    Code to reverse a comma separated string in Java

    • Split the input string by comma to get an array of strings

    • Iterate through the array in reverse order and append each element to a new string with a comma

    • Return the reversed comma separated string

  • Answered by AI

Skills evaluated in this interview

DXC Technology Interview FAQs

How many rounds are there in DXC Technology Senior Java Developer interview?
DXC Technology interview process usually has 2 rounds. The most common rounds in the DXC Technology interview process are Technical and Resume Shortlist.
How to prepare for DXC Technology Senior Java Developer 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 Core Java, J2Ee, Struts, AWS and Agile Methodology.
What are the top questions asked in DXC Technology Senior Java Developer interview?

Some of the top questions asked at the DXC Technology Senior Java Developer interview -

  1. HOW TO CREATE OUR OWN IMMUTABLE CLASS? WHY IMMUTABLE CL...read more
  2. IN WHICH SITUATION WE USE @PRIMARY AND @ QUALIFIER...read more
  3. WHAT IS DIFFERENCE BETWEEN COMPOSITION AND AGGREGATIO...read more

Tell us how to improve this page.

DXC Technology Senior Java Developer Salary
based on 20 salaries
₹5.8 L/yr - ₹23.6 L/yr
12% less than the average Senior Java Developer Salary in India
View more details

DXC Technology Senior Java Developer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

4.0

Skill development

4.0

Work-Life balance

3.0

Salary & Benefits

3.0

Job Security

3.0

Company culture

3.0

Promotions/Appraisal

3.0

Work Satisfaction

Explore 1 Review and Rating
Associate Professional Software Engineer
2.2k salaries
unlock blur

₹2 L/yr - ₹7 L/yr

Software Engineer
2k salaries
unlock blur

₹2.4 L/yr - ₹11.7 L/yr

Associate Professional
1.6k salaries
unlock blur

₹1.8 L/yr - ₹7 L/yr

Professional 1
1.2k salaries
unlock blur

₹3.3 L/yr - ₹13.6 L/yr

Associate Software Engineer
1.2k salaries
unlock blur

₹3 L/yr - ₹6.7 L/yr

Explore more salaries
Compare DXC Technology with

Cognizant

3.8
Compare

Capgemini

3.8
Compare

TCS

3.7
Compare

Wipro

3.7
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview