Upload Button Icon Add office photos

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

Java Developer Interview Questions & Answers

user image Marriboina gangadhar

posted on 7 Jul 2024

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Fair and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. It depends on company premises
Round 2 - HR 

(1 Question)

  • Q1. It depends on company premises
Round 3 - HR 

(1 Question)

  • Q1. It depends on company premises

Java Developer Interview Questions & Answers

user image Aditi Sinha

posted on 26 Feb 2025

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Java, OOPs project worked on, with basic coding questions

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
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Oops concepts and some basics of collection
  • Q2. Spring boot questions and some basic annotations
Round 2 - HR 

(2 Questions)

  • Q1. Just few questions about previous
  • Q2. Same that happened projects previous
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - One-on-one 

(3 Questions)

  • Q1. Interview was started from the basic question like what is class and then increased the level
  • Q2. Set v/s list v/s array, lots of question related to difference between
  • Q3. Opps concept, basic of spingboot, how you can create the object in springboot, what is bean

Interview Preparation Tips

Interview preparation tips for other job seekers - worst experience ever, interviewer told me that they will release the offer letter in next 2-3 hours, but i didn't received any call or mail, even for followup they didn't reply to my mail

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)

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

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

Round 1 - Technical 

(3 Questions)

  • Q1. What is wait, notify, notifyall
  • Ans. 

    wait, notify, and notifyAll are methods used for inter-thread communication in Java.

    • wait() method causes the current thread to wait until another thread invokes the notify() or notifyAll() method for this object.

    • notify() method wakes up a single thread that is waiting on this object's monitor.

    • notifyAll() method wakes up all threads that are waiting on this object's monitor.

  • Answered by AI
  • Q2. Difference between spring and springboot
  • Ans. 

    Spring is a framework for building Java applications, while Spring Boot is a tool that simplifies the setup and configuration of Spring applications.

    • Spring is a comprehensive framework for building Java applications, providing support for various modules like Spring MVC, Spring Security, and Spring Data.

    • Spring Boot is an opinionated tool that simplifies the setup and configuration of Spring applications by providing de...

  • Answered by AI
  • Q3. What is lambda expression
  • Ans. 

    Lambda expression is a concise way to represent an anonymous function in Java.

    • Lambda expressions are used to provide implementation of functional interfaces.

    • They enable you to treat functionality as a method argument, or code as data.

    • Syntax: (parameters) -> expression or (parameters) -> { statements; }

    • Example: (int a, int b) -> a + b

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare multi threading, streams for interview

Skills evaluated in this interview

Get interview-ready with Top Accenture Interview Questions

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

I applied via Referral and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - Technical 

(5 Questions)

  • Q1. Abstract class and Interface Difference
  • Ans. 

    Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.

    • Abstract class can have constructor, fields, and methods, while interface cannot have any of these.

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

    • Abstract classes are used to define common behavior among subclasses, while interfaces are used to define a contract for classes to...

  • Answered by AI
  • Q2. HashSet and HashMap Implementations
  • Q3. Different SpringBoot Annotations
  • Ans. 

    SpringBoot annotations are used to simplify the development process by providing shortcuts for common tasks.

    • 1. @SpringBootApplication - marks the class as a Spring Boot application

    • 2. @RestController - marks the class as a controller where methods return data directly instead of a view

    • 3. @Autowired - injects a bean by type

    • 4. @GetMapping, @PostMapping, @PutMapping, @DeleteMapping - map HTTP methods to controller methods

    • 5...

  • Answered by AI
  • Q4. Coding on Stream API filtering numbers
  • Ans. 

    Filter numbers using Stream API in Java

    • Use filter() method to specify the condition for filtering numbers

    • Use mapToInt() method to convert Stream of numbers to IntStream

    • Use collect() method to collect the filtered numbers into a list

  • Answered by AI
  • Q5. SQL Question based on Aggregate Function and Group by clause
Round 2 - HR 

(2 Questions)

  • Q1. Salary Discussion
  • Q2. Last working day

Interview Preparation Tips

Interview preparation tips for other job seekers - - Focus on basics from core java
- f/w related questions
- SQL

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
2-4 weeks
Result
No response

I applied via Referral and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What happens if application properties file is removed
  • Ans. 

    The application will not be able to read the properties specified in the file, leading to potential errors or failures.

    • The application may fail to start or function properly if it relies on specific properties defined in the file.

    • Any configurations or settings specified in the properties file will not be applied.

    • The application may throw exceptions or errors related to missing properties or configurations.

    • It is importa...

  • Answered by AI
  • Q2. Basic java stuff

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Java 8 features
  • Q2. Basic Java questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Instead of waiting for their reply search another job is better and you get job also
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What are SOLID principles?
  • Ans. 

    SOLID principles are a set of five design principles that help 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: Software entities should be open for extension but closed for modification.

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

  • Answered by AI
  • Q2. Can we perform Multiple inheritance in JAVA?
  • Ans. 

    No, Java does not support multiple inheritance.

    • Java does not support multiple inheritance to avoid the Diamond Problem.

    • Instead, Java supports multiple interface inheritance.

    • Example: Class A extends Class B and Class C, which both have a common method. This would lead to ambiguity in Java.

  • Answered by AI

Skills evaluated in this interview

Java Developer Interview Questions & Answers

user image Ankita Otta

posted on 23 Jun 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - HR 

(3 Questions)

  • Q1. Salary expectations
  • Q2. Location preference
  • Q3. Notice period (date of availability)
Round 2 - Technical 

(2 Questions)

  • Q1. Intermediate java and sql questions
  • Q2. Java and sql code
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

REVIEWS

Ernst & Young

No Reviews

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