Upload Button Icon Add office photos

Accenture

Compare button icon Compare button icon Compare

Filter interviews by

Accenture Full Stack Software Developer Interview Questions, Process, and Tips

Updated 20 Dec 2024

Top Accenture Full Stack Software Developer Interview Questions and Answers

Accenture Full Stack Software Developer Interview Experiences

6 interviews found

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

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

Round 1 - Technical 

(3 Questions)

  • Q1. Consumer producer
  • Q2. Garbage collection
  • Q3. Features of java 8
  • Ans. 

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

    • Lambda expressions allow for more concise code and easier parallel programming.

    • Functional interfaces enable the use of lambda expressions.

    • Streams provide a way to work with sequences of elements and perform operations on them.

    • Default methods allow interfaces to have method implementations.

    • Optional cl...

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Technical 

(1 Question)

  • Q1. How do you do version upgrades
  • Ans. 

    I use version control systems like Git to manage code changes and upgrades.

    • I create a new branch for the upgrade to isolate changes from the main codebase.

    • I test the upgrade in the new branch to ensure compatibility and functionality.

    • I merge the upgraded code back into the main branch once testing is successful.

    • I document the changes made during the upgrade process for future reference.

  • Answered by AI
Round 2 - Behavioral 

(1 Question)

  • Q1. Can we make applications using on C# code
  • Ans. 

    Yes, applications can be made using C# code.

    • C# is a versatile programming language commonly used for developing applications.

    • C# can be used to create web applications, desktop applications, mobile apps, and more.

    • Popular frameworks like .NET and Xamarin support C# for application development.

  • Answered by AI

Skills evaluated in this interview

Full Stack Software Developer Interview Questions Asked at Other Companies

asked in Synergy
Q1. Oops in Java Patterns in Java JDK,JRE,JVM MVC Array questions str ... read more
asked in UST
Q2. If a application is running slow what process would you follow to ... read more
asked in Cognizant
Q3. Briefly explain the method you will use to execute an array linke ... read more
Q4. How do we link our stylesheet with the HTML?
asked in Cognizant
Q5. What is the difference between primary key, foreign key, candidat ... read more
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Topics related to numbering, sequence, etc

Round 2 - Group Discussion 

Topic on latest problems statements and mechanisms

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 Apr 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

Logical Reasoning, Apptitute with some basic CS knowledge

Round 2 - Coding Test 

2 coding questions related to problem solving

Round 3 - Communication 

(1 Question)

  • Q1. Test english communications skill
Round 4 - HR 

(1 Question)

  • Q1. Discussed some scenario based questions

Accenture interview questions for designations

 Full Stack Developer

 (12)

 Full Stack Engineer

 (2)

 Java Full Stack Developer

 (4)

 Software Developer

 (237)

 Associate Software Developer

 (38)

 Senior Software Developer

 (15)

 Software Developer fresher

 (10)

 Junior Software Developer

 (5)

I applied via Campus Placement and was interviewed in Aug 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

1st round was mixture of aptitude and some psuedo code and the time given was 90 mins for 90 questions.

After clearing the cuttoff there will be 2 coding question one for easy level second will be medium level.

Round 2 - Communication round 

(1 Question)

  • Q1. Ai based english vocabolary and listening test
Round 3 - One-on-one 

(5 Questions)

  • Q1. This round was the easiest of all just basic questions
  • Q2. Oops related question
  • Q3. Project discussion based questions.
  • Q4. Do you know something about modern technologies.
  • Ans. 

    Yes, modern technologies are constantly evolving and I keep myself updated with the latest trends.

    • I am familiar with cloud computing platforms like AWS, Azure, and Google Cloud

    • I have experience with containerization using Docker and Kubernetes

    • I am proficient in programming languages like Python, JavaScript, and Java

    • I have worked with modern front-end frameworks like React and Angular

    • I am familiar with DevOps practices ...

  • Answered by AI
  • Q5. Have any questions for me.

Interview Preparation Tips

Interview preparation tips for other job seekers - Result was selected for FSE

Just clear the first two round rest will be easy .
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at CVR College of Engineering, Hyderabad and was interviewed before 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 was Maths problems Aptitude

Round 3 - Coding Test 

@ simple coding questions were asked

Round 4 - One-on-one 

(1 Question)

  • Q1. It was behaviour Round

Interview Preparation Tips

Interview preparation tips for other job seekers - Questions were easy.

Interview questions from similar companies

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

I was interviewed in Jan 2025.

Round 1 - Coding Test 

Trips for cracking interview

Round 2 - Technical 

(5 Questions)

  • Q1. For example how to replay for all questions
  • Q2. Different questions for all types
  • Q3. Interviews easily cracking trips
  • Q4. How to get good job in software
  • Q5. How to get job

Interview Preparation Tips

Interview preparation tips for other job seekers - Differently thinking for all types of questions and answers
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Good morning sir have a you sir my name is hemant Ramchandra narkhede

Round 2 - Coding Test 

Java script simple frame

Round 3 - HR 

(2 Questions)

  • Q1. What are the different data types present in javascript?
  • Ans. 

    JavaScript has several data types including string, number, boolean, object, function, undefined, and null.

    • String: 'hello', '123'

    • Number: 123, 3.14

    • Boolean: true, false

    • Object: { key: 'value' }

    • Function: function() { }

    • Undefined: undefined

    • Null: null

  • Answered by AI
  • Q2. Difference between var and let keyword in javascript.
  • Ans. 

    var is function-scoped while let is block-scoped in JavaScript.

    • var keyword is function-scoped, meaning it is accessible throughout the function it is declared in.

    • let keyword is block-scoped, meaning it is only accessible within the block it is declared in.

    • Using var can lead to variable hoisting issues, while let provides more predictable behavior.

    • let allows for better variable scoping and reduces the risk of unintended

  • Answered by AI
Round 4 - One-on-one 

(2 Questions)

  • Q1. What are the advantages of pair programming?
  • Ans. 

    Pair programming promotes collaboration, knowledge sharing, and code quality.

    • Enhances code quality through immediate code review and feedback

    • Promotes knowledge sharing and learning from each other

    • Fosters collaboration and teamwork

    • Reduces the likelihood of bugs and errors

    • Increases productivity by leveraging two minds on the same problem

    • Helps in breaking down complex problems into smaller tasks

    • Improves communication skil

  • Answered by AI
  • Q2. How do you handle constructive feedback about your full-stack development projects?
Round 5 - Technical 

(2 Questions)

  • Q1. How do you identify bugs in your code?
  • Ans. 

    I use a combination of manual testing, unit testing, and debugging tools to identify bugs in my code.

    • Perform manual testing by running the code and checking for any unexpected behavior or errors.

    • Write unit tests to verify the functionality of individual components and catch any issues early on.

    • Utilize debugging tools like breakpoints, logging, and stack traces to track down the root cause of bugs.

    • Collaborate with team ...

  • Answered by AI
  • Q2. How long have you been coding primarily in Python?
  • Ans. 

    I have been coding primarily in Python for 5 years.

    • I started learning Python in college and have been using it extensively in my professional career.

    • I have worked on various projects using Python, including web development, data analysis, and automation.

    • I am proficient in Python libraries such as NumPy, Pandas, and Django.

  • Answered by AI
Round 6 - Case Study 

HR round full stack developer experience

Round 7 - Group Discussion 

Best atitude round questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Another source of career guidance is to consult a career counselor or coach. These are trained professionals who can help you with various aspects of your career development, such as exploring your options, setting your goals, making your plans, overcoming your challenges, and enhancing your skills.24 Aug

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is abstract class
  • Ans. 

    Abstract class is a class that cannot be instantiated and is used as a blueprint for other classes to inherit from.

    • Cannot be instantiated directly

    • Can have abstract methods that must be implemented by subclasses

    • Can have non-abstract methods that can be inherited by subclasses

    • Used to define common behavior for subclasses

  • Answered by AI
  • Q2. What are access modifier
  • Ans. 

    Access modifiers are keywords in programming languages that define the accessibility of classes, methods, and variables.

    • Access modifiers control the visibility and accessibility of classes, methods, and variables in a program.

    • Common access modifiers include public, private, protected, and default (package-private).

    • Public access modifier allows access from any other class.

    • Private access modifier restricts access to only...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Git version tool
  • Q2. Project related question
Round 3 - HR 

(1 Question)

  • Q1. Salary expectation

Skills evaluated in this interview

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. HEXA decimal reg expression
  • Q2. What are mime types
  • Ans. 

    Mime types are identifiers used to specify the type of data being sent over the internet.

    • Mime types are used in HTTP headers to indicate the type of content being sent, such as text/html for HTML files or image/jpeg for JPEG images.

    • They help browsers and servers understand how to handle the content being transmitted.

    • Mime types also help in determining how a file should be processed or displayed by the receiving end.

    • Com...

  • Answered by AI

Skills evaluated in this interview

Accenture Interview FAQs

How many rounds are there in Accenture Full Stack Software Developer interview?
Accenture interview process usually has 2-3 rounds. The most common rounds in the Accenture interview process are Aptitude Test, One-on-one Round and Coding Test.
What are the top questions asked in Accenture Full Stack Software Developer interview?

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

  1. Do you know something about modern technologi...read more
  2. Can we make applications using on C# c...read more
  3. How do you do version upgra...read more

Tell us how to improve this page.

Accenture Full Stack Software Developer Interview Process

based on 6 interviews

1 Interview rounds

  • Aptitude Test Round
View more
Accenture Full Stack Software Developer Salary
based on 100 salaries
₹4.3 L/yr - ₹13.9 L/yr
6% less than the average Full Stack Software Developer Salary in India
View more details

Accenture Full Stack Software Developer Reviews and Ratings

based on 10 reviews

3.7/5

Rating in categories

3.3

Skill development

3.6

Work-life balance

3.1

Salary

3.5

Job security

3.1

Company culture

2.6

Promotions

3.0

Work satisfaction

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

₹3 L/yr - ₹12 L/yr

Application Development - Senior Analyst
27k salaries
unlock blur

₹6.9 L/yr - ₹17.5 L/yr

Team Lead
24.3k salaries
unlock blur

₹7.1 L/yr - ₹25.6 L/yr

Senior Software Engineer
18.2k salaries
unlock blur

₹6 L/yr - ₹19.5 L/yr

Software Engineer
17.4k salaries
unlock blur

₹3.6 L/yr - ₹13.4 L/yr

Explore more salaries
Compare Accenture with

TCS

3.7
Compare

Cognizant

3.8
Compare

Capgemini

3.7
Compare

Infosys

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