Upload Button Icon Add office photos

Accenture

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Accenture Java Developer Interview Questions, Process, and Tips

Updated 26 Feb 2025

Top Accenture Java Developer Interview Questions and Answers

  • Q1. What are the principles of object oriented programming, such as OOPs concepts in Java
  • Q2. Write a code of prime numbers 1 to 100 and write sql query.
  • Q3. What is the difference between ArrayList and LinkedList?
View all 45 questions

Accenture Java Developer Interview Experiences

51 interviews found

I applied via Company Website and was interviewed in Feb 2022. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What are the principles of object oriented programming, such as OOPs concepts in Java
  • Ans. 

    Object-oriented programming (OOP) principles in Java include encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation: Bundling data and methods together into a single unit (class) to hide implementation details.

    • Inheritance: Creating new classes (subclasses) from existing classes (superclasses) to inherit properties and behaviors.

    • Polymorphism: The ability of an object to take on many forms, allowing obje...

  • Answered by AI
  • Q2. What are the principles of object oriented programming, such as Oops concepts in Java.
  • Ans. 

    Object-oriented programming principles include encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation: Bundling data and methods together in a class.

    • Inheritance: Creating new classes from existing ones, inheriting their attributes and behaviors.

    • Polymorphism: Objects of different classes can be treated as objects of a common superclass.

    • Abstraction: Hiding complex implementation details and providing sim

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Accenture Java Developer interview:
  • Core Java
Interview preparation tips for other job seekers - Prepare well before applying to interviews

Skills evaluated in this interview

I applied via WhatsApp and was interviewed in Jul 2022. There were 2 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 Resume tips
Round 2 - Aptitude Test 

Skill program, HTML, VB script

Interview Preparation Tips

Topics to prepare for Accenture Java Developer interview:
  • Java
Interview preparation tips for other job seekers - I need ur company in Java developer is there archiving

Java Developer Interview Questions Asked at Other Companies

asked in Deloitte
Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size ... read more
Q2. Parent class has run() and walk() . Parent run() - calls walk() C ... read more
asked in Infosys
Q3. Which should be preferred between String and StringBuffer when th ... read more
asked in Deloitte
Q4. Convert BST to Greater Sum Tree Given a Binary Search Tree (BST) ... read more
Q5. 2. What will happen if hashcode only returns a constant? How will ... read more

I applied via Company Website and was interviewed in Jul 2021. There was 1 interview round.

Interview Questionnaire 

5 Questions

  • Q1. Questions related to Collections in Java ?
  • Q2. Write a code of prime numbers 1 to 100 and write sql query.
  • Ans. 

    Code for prime numbers 1 to 100 and SQL query.

    • Use a loop to iterate through numbers 1 to 100.

    • For each number, check if it is divisible by any number from 2 to itself-1.

    • If not divisible, it is a prime number.

    • SQL query: SELECT * FROM table_name WHERE number_column >= 1 AND number_column <= 100 AND is_prime = true;

  • Answered by AI
  • Q3. Questions related to multithreading.
  • Q4. Basics of spring boot.
  • Q5. Question related to your projects.

Interview Preparation Tips

Interview preparation tips for other job seekers - Read your resume well, have good Knowledge of Collections and MultiThreading.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Feb 2022. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Collections of java and their comparisons and performance
  • Ans. 

    Overview of Java collections and their performance

    • Java collections are used to store and manipulate groups of objects

    • ArrayList is faster for accessing elements, LinkedList is faster for adding/removing elements

    • HashSet is faster for adding/removing elements, TreeSet is faster for searching/sorting elements

    • HashMap is faster for adding/removing elements, TreeMap is faster for searching/sorting elements

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Get up to date with java topics like collections, spring and hibernate

Skills evaluated in this interview

Accenture interview questions for designations

 Senior Java Developer

 (5)

 Java Software Developer

 (4)

 Junior Java Developer

 (1)

 Java J2ee Developer

 (1)

 Java Application Developer

 (1)

 Lead Java Developer

 (1)

 Java Trainee

 (1)

 Java Full Stack Developer

 (4)

I applied via Campus Placement and was interviewed in Jul 2021. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. How to developing the java?
  • Ans. 

    Java development involves writing, testing, and deploying code using Java programming language.

    • Write code using Java programming language

    • Test the code using various testing frameworks like JUnit

    • Deploy the code using tools like Maven or Gradle

    • Use Integrated Development Environments (IDEs) like Eclipse or IntelliJ IDEA for development

    • Follow coding best practices and design patterns

    • Collaborate with team members using vers

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The interviewer wanted to test both my knowledge and communication skills

Skills evaluated in this interview

Get interview-ready with Top Accenture Interview Questions

I applied via Company Website and was interviewed in Mar 2021. There were 6 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Java 8 features
  • Ans. 

    Java 8 introduced several new features including lambda expressions, streams, and default methods.

    • Lambda expressions allow for functional programming and simplify code.

    • Streams provide a way to process collections of data in a functional way.

    • Default methods allow for adding new methods to interfaces without breaking existing implementations.

    • Other features include the Date and Time API, Nashorn JavaScript engine, and imp...

  • Answered by AI
  • Q2. Iteration of a arraylist by using stream
  • Ans. 

    Iterating an ArrayList using stream in Java

    • Convert the ArrayList to a stream using stream() method

    • Use forEach() method to iterate through the stream

    • Use lambda expression to perform an action on each element

    • Example: myList.stream().forEach(element -> System.out.println(element));

  • Answered by AI
  • Q3. Spring boot application context
  • Ans. 

    Spring Boot application context is a container that manages the lifecycle of beans and provides dependency injection.

    • Spring Boot application context is responsible for creating and managing beans.

    • It provides dependency injection by wiring beans together.

    • It supports different types of scopes for beans such as singleton, prototype, etc.

    • It can be configured using annotations or XML configuration files.

    • Example: @ComponentS...

  • Answered by AI
  • Q4. How to handle the versions in rest api
  • Ans. 

    Versions in REST API can be handled using URL versioning, header versioning, or media type versioning.

    • URL versioning involves adding the version number in the URL path, e.g. /api/v1/users

    • Header versioning involves adding the version number in the request header, e.g. X-API-Version: 1

    • Media type versioning involves adding the version number in the media type, e.g. application/vnd.company.v1+json

    • Choose a versioning strate...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just focus on the Java 8 features, advantages of spring Boot over spring and you are done

Skills evaluated in this interview

I applied via Monster and was interviewed in Jun 2021. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. What is object
  • Ans. 

    An object is an instance of a class that encapsulates data and behavior.

    • Objects have state and behavior

    • They can interact with other objects through methods

    • Objects can be created from classes

    • Example: A car object has state (color, model) and behavior (drive, stop)

    • Example: A person object has state (name, age) and behavior (eat, sleep)

  • Answered by AI
  • Q2. What Is encapsulation
  • Ans. 

    Encapsulation is the process of hiding implementation details and providing access to only necessary information.

    • Encapsulation is achieved through access modifiers like private, public, and protected.

    • It helps in achieving data security and prevents unauthorized access.

    • Encapsulation also helps in achieving code maintainability and flexibility.

    • For example, a class can have private variables and public methods to access t...

  • Answered by AI
  • Q3. What is polymorphism
  • Ans. 

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

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

    • It is achieved through method overriding and method overloading.

    • Example: A parent class Animal can have child classes like Dog, Cat, and Bird. All these child classes can have their own implementation of the method 'makeSound', which is overridden from the parent...

  • Answered by AI
  • Q4. What is inheritance
  • Ans. 

    Inheritance is a mechanism in OOP where a new class is derived from an existing class.

    • It allows the new class to inherit the properties and methods of the existing class.

    • The existing class is called the superclass or parent class, and the new class is called the subclass or child class.

    • The subclass can add new properties and methods or override the existing ones.

    • Example: A Car class can be a superclass, and a SportsCar...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Firstly interview begins with basic so these questions are suitable

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Basics of spring

Interview Preparation Tips

Interview preparation tips for other job seekers - good good good good good

I applied via Referral and was interviewed in Jun 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions mostly asked on Java and Project related.

Interview Preparation Tips

Interview preparation tips for other job seekers - This interview was a technical interview. It takes around 40 mins.

Interview Questionnaire 

1 Question

  • Q1. Internal working of hashmap, exception handling scenarios, java 8 lambda expression and other concepts, oops in your project
Contribute & help others!
anonymous
You can choose to be anonymous

Accenture Interview FAQs

How many rounds are there in Accenture Java Developer interview?
Accenture interview process usually has 1-2 rounds. The most common rounds in the Accenture interview process are Technical, HR and Resume Shortlist.
How to prepare for Accenture 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 Accenture. The most common topics and skills that interviewers at Accenture expect are Java, Spring, J2Ee, Hibernate and Javascript.
What are the top questions asked in Accenture Java Developer interview?

Some of the top questions asked at the Accenture Java Developer interview -

  1. What are the principles of object oriented programming, such as OOPs concepts i...read more
  2. Write a code of prime numbers 1 to 100 and write sql que...read more
  3. What is the difference between ArrayList and LinkedLi...read more
How long is the Accenture Java Developer interview process?

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

Recently Viewed

COMPANY BENEFITS

Ernst & Young

No Benefits

COMPANY BENEFITS

Ernst & Young

No Benefits

LIST OF COMPANIES

Zealium Technologies

Locations

REVIEWS

Ernst & Young

No Reviews

COMPANY BENEFITS

Ernst & Young

No Benefits

REVIEWS

Ernst & Young

No Reviews

REVIEWS

Ernst & Young

No Reviews

INTERVIEWS

Accenture

No Interviews

INTERVIEWS

Accenture

No Interviews

Tell us how to improve this page.

Accenture Java Developer Interview Process

based on 48 interviews

3 Interview rounds

  • Technical Round
  • HR Round - 1
  • HR Round - 2
View more
Accenture Java Developer Salary
based on 805 salaries
₹2.4 L/yr - ₹11.5 L/yr
22% more than the average Java Developer Salary in India
View more details

Accenture Java Developer Reviews and Ratings

based on 52 reviews

4.0/5

Rating in categories

3.8

Skill development

4.0

Work-life balance

3.7

Salary

3.8

Job security

4.1

Company culture

3.5

Promotions

3.6

Work satisfaction

Explore 52 Reviews and Ratings
Application Development Analyst
38.9k salaries
unlock blur

₹3 L/yr - ₹12 L/yr

Application Development - Senior Analyst
26.9k salaries
unlock blur

₹6.9 L/yr - ₹21.2 L/yr

Team Lead
24.4k salaries
unlock blur

₹7.1 L/yr - ₹25.8 L/yr

Senior Software Engineer
18.1k salaries
unlock blur

₹6 L/yr - ₹20 L/yr

Senior Analyst
17.5k salaries
unlock blur

₹5.4 L/yr - ₹21 L/yr

Explore more salaries
Compare Accenture with

TCS

3.7
Compare

Cognizant

3.7
Compare

Capgemini

3.7
Compare

Infosys

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