Upload Button Icon Add office photos

Accenture

Compare button icon Compare button icon Compare

Filter interviews by

Accenture Java Full Stack Developer Interview Questions and Answers

Updated 19 Sep 2024

6 Interview questions

A Java Full Stack Developer was asked 11mo ago
Q. What is the difference between an object and an instance in Java?
Ans. 

An object is a physical entity in memory, while an instance is a specific realization of an object.

  • An object is a general concept, while an instance is a specific occurrence of that concept.

  • Objects are created using classes, while instances are created using the 'new' keyword.

  • Each instance has its own state (values of attributes) and behavior (methods).

  • Example: 'Car' is an object, while 'Toyota Camry' is an instan...

A Java Full Stack Developer was asked 11mo ago
Q. What are classes and objects in Java?
Ans. 

A class is a blueprint for creating objects in Java, while an object is an instance of a class.

  • A class defines the properties and behaviors of objects.

  • An object is created using the 'new' keyword followed by the class name.

  • Multiple objects can be created from the same class.

Java Full Stack Developer Interview Questions Asked at Other Companies

asked in CGI Group
Q1. Coding question - 1. Create a immutable class of orders. What hap ... read more
asked in CGI Group
Q2. How are 4-5 microservices connected in rest api's? which techniqu ... read more
Q3. What is the difference between method overloading and overriding?
asked in CGI Group
Q4. Explain Spring Cloud and how you use it in microservices.
Q5. How do you connect to a database with Java and update data?
A Java Full Stack Developer was asked 11mo ago
Q. How proficient are you in Java and UI development?
Ans. 

I have strong knowledge and experience in Java programming and UI development.

  • Proficient in Java programming language, including core concepts like OOP, multithreading, and collections

  • Skilled in developing UI using technologies like HTML, CSS, JavaScript, and frameworks like React or Angular

  • Experience in integrating backend Java code with frontend UI for full stack development

  • Familiar with UI design principles and...

A Java Full Stack Developer was asked 11mo ago
Q. What are heap and stack memory?
Ans. 

Heap and stack memory are two types of memory in computer systems. Heap memory is used for dynamic memory allocation, while stack memory is used for static memory allocation.

  • Heap memory is used for storing objects and is managed by the JVM. It is larger in size compared to stack memory.

  • Stack memory is used for storing method calls, local variables, and is limited in size. It follows Last In First Out (LIFO) order.

  • ...

What people are saying about Accenture

View All
a junior software engineer
1w
Job offer in Malaysia - legit or scam?
Hey everyone, I received a job proposal from Mindgraph for a Junior Mainframe Developer position in Malaysia (onsite). Not sure if it's a real deal. They found my resume on Naukri and the offer includes: * Experience: 3+ years on cardlink, VSAM, CICS, JCL * Location: Malaysia (Accenture client in Kuala Lumpur) * Notice: 0-60 days * Benefits: One-way ticket, 1-week stay, medical insurance, visa. Has anyone heard of Mindgraph or had a similar experience? Note : This is a permanent position with Mindgragh and you need to work with our client Accenture - Malaysia (Kaula Lumpur) & we will provide one way Air Ticket from India - Malaysia, 1 Week Accommodation, Medical Insurance and will take care of the Visa process also. Any insights would be appreciated!
Got a question about Accenture?
Ask anonymously on communities.
A Java Full Stack Developer was asked
Q. Write a Java code to find the second largest element in an array.
Ans. 

Java code to find second largest element in an array

  • Sort the array in descending order

  • Return the element at index 1 as the second largest element

A Java Full Stack Developer was asked 11mo ago
Q. How does string work in java meaning, how its stored and how its reference is saved in pool
Ans. 

Strings in Java are stored in the String pool, which is a special area in the Java heap memory.

  • Strings in Java are immutable, meaning once a string is created, it cannot be changed.

  • When a string is created in Java, it is stored in the String pool if it does not already exist.

  • String literals are stored in the String pool, while strings created using the 'new' keyword are stored in the heap memory.

  • String pool helps ...

Accenture Java Full Stack Developer Interview Experiences

4 interviews found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Core Java, Spring boot annotations, basic code flow, current role, angular basics
Round 2 - Behavioral 

(1 Question)

  • Q1. Db optimizations, performance enhancements, query optimization, how to handle huge data etc

Interview Preparation Tips

Topics to prepare for Accenture Java Full Stack Developer interview:
  • Oops
  • Java 8
  • Angular basics
  • Communication between components
  • Optimization methods
  • Basic queries to backend
  • Html basics
  • Css basics
  • Interface, abstraction, polymorp
  • Collections
  • Java memory
  • New features in java higher vers
  • Version controlling
  • Basic git commands
Interview preparation tips for other job seekers - Basic concepts should be clear, be prepared to showcase your role in the project, your achievements or challenges etc and explain a little bit on that. Be confident.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(4 Questions)

  • Q1. Introduce yourself
  • Q2. What was role in previous project
  • Q3. What you worked on in previous project
  • Q4. How much java and ui you know
  • Ans. 

    I have strong knowledge and experience in Java programming and UI development.

    • Proficient in Java programming language, including core concepts like OOP, multithreading, and collections

    • Skilled in developing UI using technologies like HTML, CSS, JavaScript, and frameworks like React or Angular

    • Experience in integrating backend Java code with frontend UI for full stack development

    • Familiar with UI design principles and resp...

  • Answered by AI
Round 2 - Technical 

(6 Questions)

  • Q1. What is class and object in java
  • Ans. 

    A class is a blueprint for creating objects in Java, while an object is an instance of a class.

    • A class defines the properties and behaviors of objects.

    • An object is created using the 'new' keyword followed by the class name.

    • Multiple objects can be created from the same class.

  • Answered by AI
  • Q2. What is difference between object and instance in java
  • Ans. 

    An object is a physical entity in memory, while an instance is a specific realization of an object.

    • An object is a general concept, while an instance is a specific occurrence of that concept.

    • Objects are created using classes, while instances are created using the 'new' keyword.

    • Each instance has its own state (values of attributes) and behavior (methods).

    • Example: 'Car' is an object, while 'Toyota Camry' is an instance of...

  • Answered by AI
  • Q3. What is heap and stack memory
  • Ans. 

    Heap and stack memory are two types of memory in computer systems. Heap memory is used for dynamic memory allocation, while stack memory is used for static memory allocation.

    • Heap memory is used for storing objects and is managed by the JVM. It is larger in size compared to stack memory.

    • Stack memory is used for storing method calls, local variables, and is limited in size. It follows Last In First Out (LIFO) order.

    • Examp...

  • Answered by AI
  • Q4. How does string work in java meaning, how its stored and how its reference is saved in pool
  • Ans. 

    Strings in Java are stored in the String pool, which is a special area in the Java heap memory.

    • Strings in Java are immutable, meaning once a string is created, it cannot be changed.

    • When a string is created in Java, it is stored in the String pool if it does not already exist.

    • String literals are stored in the String pool, while strings created using the 'new' keyword are stored in the heap memory.

    • String pool helps in sa...

  • Answered by AI
  • Q5. Some questions on my resume and previous project work
  • Q6. Questions on spring boot and rest api

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through java basics and spring concepts throughly

Skills evaluated in this interview

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

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

Round 1 - Coding Test 

Basic OOPs questions on java,
Write a java program to count the number of unique chars in a string
find the second and third maximum in a int array using stream

Round 2 - One-on-one 

(2 Questions)

  • Q1. Explain the projects you have worked
  • Ans. 

    I have worked on various projects including e-commerce websites, CRM systems, and mobile applications.

    • Developed an e-commerce website using Java Spring framework

    • Implemented a CRM system for managing customer data and interactions

    • Worked on developing mobile applications using React Native

  • Answered by AI
  • Q2. Any critical situations you have faced due your Career
  • Ans. 

    Yes, I have faced critical situations in my career such as handling production issues and resolving them under pressure.

    • Handled a critical production issue where the application was down and impacting business operations. Quickly identified the root cause and implemented a fix to restore functionality.

    • Managed a situation where a major feature release had a critical bug that caused data corruption. Worked with cross-fun...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for Java basics, Stream,Streams, Multithreading, OOPs,
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via LinkedIn and was interviewed in Aug 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Write a java code to find second largest element
  • Ans. 

    Java code to find second largest element in an array

    • Sort the array in descending order

    • Return the element at index 1 as the second largest element

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

I applied via Company Website and was interviewed before Jun 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

First round was coding as well as aptitude done together went well I guess focusing on codes helps a lot.

Round 2 - Technical 

(1 Question)

  • Q1. 2nd round included tr and mr round went quite enegritic

Interview Preparation Tips

Interview preparation tips for other job seekers - Resume skills matters a lot don't fill resume the technologies you don't even aware of

I applied via Campus Placement and was interviewed in Apr 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Are you willing to relocate?
  • Ans. 

    Yes, I am open to relocating for the right opportunity that aligns with my career goals and personal growth.

    • Relocation can provide exposure to new technologies and methodologies.

    • I am excited about the prospect of working in diverse teams and cultures.

    • For example, moving to a tech hub like San Francisco could enhance my career.

    • I understand the challenges of relocating, but I see them as opportunities for growth.

  • Answered by AI
  • Q2. Why should I hire you?
  • Ans. 

    I bring a unique blend of skills, experience, and passion for software development that aligns perfectly with your team's goals.

    • Proven experience in developing scalable applications, such as a recent project where I improved performance by 30%.

    • Strong problem-solving skills demonstrated through my contributions to open-source projects, enhancing functionality and fixing bugs.

    • Excellent teamwork and communication abilitie...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - My technical and Hr interview done at same place. It lasted about 40minutes. The interviewer test both my technical knowledge and communication skills. I tell most of the answer. They check patience level.He stressed on my final year project . Asking about range and specification of compotents which I heve used in my project. Finally ask some HR questions.

Interview Questionnaire 

1 Question

  • Q1. How to use multiple dispatch in redux?
  • Ans. 

    Multiple dispatch is not a feature of Redux. It can be achieved using middleware or custom logic.

    • Middleware like redux-thunk or redux-saga can be used to dispatch multiple actions based on a single action.

    • Custom logic can be implemented in the reducer to handle multiple actions based on a single action type.

    • For example, a single 'ADD_ITEM' action can trigger multiple actions like 'UPDATE_TOTAL', 'UPDATE_HISTORY', etc.

    • M...

  • Answered by AI

Skills evaluated in this interview

Are these interview questions helpful?

I applied via Campus Placement and was interviewed before Jun 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Simple program
  • Q2. I wrote a simple program in C

Interview Preparation Tips

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

I applied via Naukri.com and was interviewed before Oct 2019. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What technical challenges have you faced in your work till now and how did you overcome it?
  • Ans. 

    Faced various technical challenges, including system integration and performance optimization, which I successfully navigated through strategic solutions.

    • Integration of legacy systems with modern applications: I utilized APIs and middleware to ensure seamless data flow.

    • Performance bottlenecks in a web application: Implemented caching strategies and optimized database queries, resulting in a 40% speed increase.

    • Debugging...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be truthful and give detailed explanation of the issues and how it was resolved. Explain the severity of the problem and what blockage it had caused in your daily work. How did you chose a solution and how fast was it implemented.

I applied via Naukri.com and was interviewed before Apr 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Technical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - I have visited interview location on morning 7am DLF block Hyderabad. Buy my interview was taken in evening 6:45pm. That was not an interview test it was a patience test.

Accenture Interview FAQs

How many rounds are there in Accenture Java Full Stack Developer interview?
Accenture interview process usually has 1-2 rounds. The most common rounds in the Accenture interview process are Technical, One-on-one Round and Behavioral.
How to prepare for Accenture Java Full Stack 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, Angular, Full Stack, Java Spring Boot and Multithreading.
What are the top questions asked in Accenture Java Full Stack Developer interview?

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

  1. How does string work in java meaning, how its stored and how its reference is s...read more
  2. What is difference between object and instance in j...read more
  3. What is class and object in j...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4.2/5

based on 5 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 50%
2-4 weeks 50%
View more
Accenture Java Full Stack Developer Salary
based on 133 salaries
₹2.8 L/yr - ₹12.5 L/yr
6% more than the average Java Full Stack Developer Salary in India
View more details

Accenture Java Full Stack Developer Reviews and Ratings

based on 12 reviews

4.2/5

Rating in categories

3.8

Skill development

4.4

Work-life balance

3.7

Salary

4.0

Job security

4.3

Company culture

3.4

Promotions

3.8

Work satisfaction

Explore 12 Reviews and Ratings
Java Full Stack Developer

Mumbai,

Navi Mumbai

6-10 Yrs

Not Disclosed

Explore more jobs
Application Development Analyst
39.3k salaries
unlock blur

₹3 L/yr - ₹12 L/yr

Application Development - Senior Analyst
27.7k salaries
unlock blur

₹8.3 L/yr - ₹16.1 L/yr

Team Lead
26.5k salaries
unlock blur

₹7.3 L/yr - ₹26.6 L/yr

Senior Analyst
19.4k salaries
unlock blur

₹5.6 L/yr - ₹21.3 L/yr

Senior Software Engineer
18.5k salaries
unlock blur

₹6.2 L/yr - ₹21 L/yr

Explore more salaries
Compare Accenture with

TCS

3.6
Compare

Cognizant

3.7
Compare

Capgemini

3.7
Compare

Infosys

3.6
Compare
write
Share an Interview