Upload Button Icon Add office photos

Filter interviews by

Accenture Associate Engineer Interview Questions, Process, and Tips

Updated 23 Jan 2025

Top Accenture Associate Engineer Interview Questions and Answers

View all 21 questions

Accenture Associate Engineer Interview Experiences

77 interviews found

Associate Engineer Interview Questions & Answers

user image Shivam Mittal

posted on 18 Oct 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via campus placement at S J B Institute of Technology, Bangalore

Round 1 - Technical 

(5 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a dedicated and detail-oriented engineer with a passion for problem-solving and continuous learning.

    • Graduated with a degree in Engineering

    • Completed internships at engineering firms

    • Proficient in CAD software such as AutoCAD and SolidWorks

    • Strong analytical and problem-solving skills

    • Excellent communication and teamwork abilities

  • Answered by AI
  • Q2. Detailed explanation of projects
  • Ans. 

    I have worked on various projects including designing a new software system for a manufacturing company and implementing a data analysis tool for a research project.

    • Designed and implemented a new software system for a manufacturing company to streamline their production process

    • Developed a data analysis tool using Python and SQL for a research project to analyze large datasets

    • Collaborated with a team of engineers to opt...

  • Answered by AI
  • Q3. Role in project
  • Ans. 

    My role in the project was to design and implement software solutions to meet project requirements.

    • Designed software solutions based on project requirements

    • Implemented and tested software solutions

    • Collaborated with team members to ensure project success

  • Answered by AI
  • Q4. Biggest achievement till now
  • Ans. 

    Leading a team to successfully implement a new software system for a major client

    • Led a team of 5 engineers in designing and implementing a custom software solution

    • Met all project deadlines and delivered the final product ahead of schedule

    • Received positive feedback from the client for the efficiency and effectiveness of the new system

  • Answered by AI
  • Q5. Challenges faced in project
  • Ans. 

    Managing tight deadlines, communication issues, technical challenges

    • Tight deadlines requiring efficient time management

    • Communication issues with team members or stakeholders

    • Technical challenges such as software bugs or hardware malfunctions

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

I applied via Campus Placement and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Logical ability, quantitive aptitude, math, pseudo code, english comprehension

Round 2 - Coding Test 

45mins, basic math questions

Round 3 - Technical 

(2 Questions)

  • Q1. What is the difference between var and let keywords 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.

    • Example: var x = 10; function test() { var x = 20; console.log(x); } test

  • Answered by AI
  • Q2. What is the difference between == and ===?
  • Ans. 

    The difference between == and === is that == checks for equality after type coercion, while === checks for equality without type coercion.

    • The == operator compares two values after converting them to a common type if they are of different types.

    • The === operator compares two values without type conversion, so they must be of the same type to be considered equal.

    • Example: 5 == '5' will return true because the values are eq...

  • Answered by AI

Skills evaluated in this interview

Associate Engineer Interview Questions Asked at Other Companies

asked in Nagarro
Q1. Count Ways To Reach The N-th Stair Problem Statement You are give ... read more
asked in Nagarro
Q2. Trailing Zeros in Factorial Problem Find the number of trailing z ... read more
asked in Nagarro
Q3. Convert First Letter to Upper Case Given a string STR, transform ... read more
asked in Tata Steel
Q4. What are the test done during maintenance of a power transformer?
asked in Tata Steel
Q5. how to control the speed of an EOT crane without VFD?
Interview experience
3
Average
Difficulty level
Easy
Process Duration
2-4 weeks
Result
No response

I applied via Campus Placement and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude was there and if you are passed in apti then you will move to coding round in an hour.

Round 2 - Coding Test 

In coding round 2 questions there, first is easy level and other is moderate level. But may times, there software doesn't work properly so test cases of soo easy question don't pass.

Round 3 - HR 

(3 Questions)

  • Q1. Introduce about yourself.
  • Ans. 

    I am a recent graduate with a degree in Engineering, passionate about problem-solving and eager to learn and grow in a professional environment.

    • Recent graduate with a degree in Engineering

    • Passionate about problem-solving

    • Eager to learn and grow in a professional environment

  • Answered by AI
  • Q2. What challenges did you face in your project?
  • Q3. What are your strengths and weaknesses
  • Ans. 

    My strengths include problem-solving skills and attention to detail. My weaknesses include public speaking and time management.

    • Strengths: problem-solving skills

    • Strengths: attention to detail

    • Weaknesses: public speaking

    • Weaknesses: time management

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - You can practice question on you tube and other platforms like prep insta etc. And the coding question will be easy but this is not important that the test cases will be passes as there software has so much issues and also test will be open if your laptop will not have any third arty apps, so before test ensure that you delete all of these types of apps for smooth performance.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Good with logical and quants

Round 2 - Coding Test 

Simple questions on arrays and strings

Round 3 - Communication 

(2 Questions)

  • Q1. Reading the sentence
  • Q2. Listening and speaking
Round 4 - HR 

(2 Questions)

  • Q1. Introduce yourself
  • Q2. Project

Accenture interview questions for designations

 Associate Technical Engineer

 (1)

 Associate

 (112)

 Associate Software Engineer

 (668)

 Associate Systems Engineer

 (8)

 Associate Data Engineer

 (3)

 Associate Engineer Trainee

 (2)

 Associate Network Engineer

 (1)

 Associate Engineer 1

 (1)

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

Its was easy and thus helped a lot.

Round 2 - Coding Test 

Same as the above it was good and easy.

Round 3 - Technical 

(2 Questions)

  • Q1. Tell me about your project
  • Ans. 

    Developed a mobile application for tracking daily water intake and setting hydration goals.

    • Researched user needs and preferences for water intake tracking

    • Designed user-friendly interface for inputting water consumption

    • Implemented reminder notifications for staying hydrated throughout the day

  • Answered by AI
  • Q2. Tell me about array and strings
  • Ans. 

    Arrays are collections of elements stored in contiguous memory locations, while strings are arrays of characters used to represent text.

    • Arrays can store multiple elements of the same data type, accessed by index.

    • Strings are arrays of characters, often terminated by a null character.

    • Arrays and strings can be manipulated using various operations like sorting, searching, and concatenation.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It's not that difficult to get into job if your aptitude is good.

Skills evaluated in this interview

Get interview-ready with Top Accenture Interview Questions

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

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

Round 1 - Aptitude Test 

The questions were easy to moderate

Round 2 - Coding Test 

Array and string based questions

Round 3 - Technical 

(2 Questions)

  • Q1. What is your project about?
  • Ans. 

    My project focuses on developing a new software application for data analysis in the field of renewable energy.

    • Developing a software application for data analysis

    • Focused on renewable energy

    • Implementing algorithms for efficient energy production

    • Testing and optimizing the software for accuracy and speed

  • Answered by AI
  • Q2. Why did you choose this project?
  • Ans. 

    I chose this project because it aligns with my passion for sustainable engineering solutions.

    • Passion for sustainable engineering solutions

    • Interest in the specific technology or industry of the project

    • Opportunity to learn and grow in a new area

    • Alignment with personal values and goals

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just prepare your project well

Associate Engineer Jobs at Accenture

View all
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Aptitude Test 

It was easy to medium, make sure to keep track of time

Round 2 - Coding Test 

1Q easy(string) 1Q hard(dp)

Round 3 - Technical 

(2 Questions)

  • Q1. Questions about project
  • Q2. I did a training, so asked me about that
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Aptitude Test 

It is about reasoning,verbal and ms office, cloud

Round 2 - Coding Test 

Two coding questions are given, we have to solve one completely, another one is partially

Round 3 - HR 

(3 Questions)

  • Q1. What is about yourself
  • Ans. 

    I am a dedicated and detail-oriented engineer with a passion for problem-solving and continuous learning.

    • I have a Bachelor's degree in Engineering from XYZ University.

    • I have completed internships at ABC Company and DEF Company, where I gained hands-on experience in engineering projects.

    • I am proficient in CAD software and have strong analytical skills.

    • I enjoy collaborating with team members to find innovative solutions

  • Answered by AI
  • Q2. What is your strength
  • Ans. 

    My strength lies in my problem-solving skills and ability to work well under pressure.

    • Strong analytical skills to identify and solve complex problems

    • Ability to remain calm and focused in high-pressure situations

    • Effective communication skills to collaborate with team members and stakeholders

    • Proven track record of successfully completing projects on time and within budget

  • Answered by AI
  • Q3. Expain your projects
  • Ans. 

    I have worked on various projects including developing a mobile app for tracking fitness goals and a web application for managing inventory.

    • Developed a mobile app using React Native to track fitness goals and provide workout plans

    • Created a web application using Angular for inventory management and tracking

    • Implemented RESTful APIs for communication between front-end and back-end systems

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepare well
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

I applied via campus placement at G L Bajaj Institute of Technology & Management, Greater Noida and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

It was an aptitude test consisting of 90 questions with a duration of 90 minutes.

Round 2 - Coding Test 

A coding test consisting of two coding questions.

Round 3 - HR 

(5 Questions)

  • Q1. Introduce yourself
  • Q2. Can you provide details about your projects?
  • Q3. What key challenges did you face in your projects?
  • Q4. Who get the idea of this project.
  • Q5. Will you able to relocate?

Interview Preparation Tips

Topics to prepare for Accenture Associate Engineer interview:
  • Java
  • New Projects
Interview preparation tips for other job seekers - focus on your skills and be relevant about your skills.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via LinkedIn and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Consists of 90 questions

Round 2 - Coding Test 

Consists of two coding

Round 3 - Technical 

(5 Questions)

  • Q1. Self intro ,why should we hire you
  • Ans. 

    I am a dedicated and skilled engineer with a strong technical background and a passion for problem-solving.

    • I have a solid foundation in engineering principles and have successfully completed projects that demonstrate my technical abilities.

    • I am a quick learner and adapt easily to new technologies and tools.

    • I am a team player and have excellent communication skills, which allow me to collaborate effectively with colleag...

  • Answered by AI
  • Q2. Are you in social media
  • Ans. 

    Yes, I am active on social media platforms such as LinkedIn and Twitter.

    • I use social media for professional networking and staying updated on industry news.

    • I share relevant articles and engage with other professionals in my field.

    • I have connected with colleagues and mentors through social media platforms.

    • I follow industry influencers and participate in relevant discussions.

  • Answered by AI
  • Q3. What is your hobby
  • Ans. 

    My hobby is photography, capturing moments and telling stories through images.

    • I enjoy exploring different locations to find unique perspectives

    • I like experimenting with different lighting techniques and editing styles

    • I often participate in photography contests and exhibitions

  • Answered by AI
  • Q4. What is your favorite subject and why
  • Ans. 

    My favorite subject is mathematics because I enjoy solving complex problems and finding patterns.

    • I love the challenge of solving equations and puzzles

    • I find joy in discovering new mathematical concepts and theories

    • Mathematics is a universal language that can be applied to various fields such as engineering and physics

  • Answered by AI
  • Q5. Are you ready to work in night shift
  • Ans. 

    Yes, I am ready to work in night shift as required for the role of Associate Engineer.

    • I am flexible with my working hours and can adapt to different shifts.

    • I understand the importance of round-the-clock support in certain industries.

    • I have previous experience working night shifts and have proven my ability to perform well during those hours.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - In accenture they will not concentrate on technical during interview ,important is communication.

Accenture Interview FAQs

How many rounds are there in Accenture Associate Engineer interview?
Accenture interview process usually has 2-3 rounds. The most common rounds in the Accenture interview process are Coding Test, Aptitude Test and HR.
How to prepare for Accenture Associate Engineer 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 Project Management, AutoCAD, Computer Networking, Quality Assurance and Advanced Excel.
What are the top questions asked in Accenture Associate Engineer interview?

Some of the top questions asked at the Accenture Associate Engineer interview -

  1. In how many and in which cities of India Accenture is locate...read more
  2. What is the difference between var and let keywords in JavaScri...read more
  3. How would you increase your coding skil...read more
How long is the Accenture Associate Engineer interview process?

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

Tell us how to improve this page.

Accenture Associate Engineer Interview Process

based on 75 interviews

4 Interview rounds

  • Aptitude Test Round
  • Coding Test Round
  • HR Round - 1
  • HR Round - 2
View more
Accenture Associate Engineer Salary
based on 332 salaries
₹2 L/yr - ₹7.5 L/yr
16% less than the average Associate Engineer Salary in India
View more details

Accenture Associate Engineer Reviews and Ratings

based on 46 reviews

4.0/5

Rating in categories

3.8

Skill development

3.7

Work-life balance

3.6

Salary

3.9

Job security

3.9

Company culture

3.3

Promotions

3.7

Work satisfaction

Explore 46 Reviews and Ratings
Risk Engineering Associate

Bangalore / Bengaluru

1-3 Yrs

₹ 2.2-8 LPA

Explore more jobs
Application Development Analyst
38.9k salaries
unlock blur

₹3 L/yr - ₹12 L/yr

Application Development - Senior Analyst
27.1k salaries
unlock blur

₹6.8 L/yr - ₹20.2 L/yr

Team Lead
24.2k salaries
unlock blur

₹7 L/yr - ₹25.4 L/yr

Senior Software Engineer
18.3k salaries
unlock blur

₹6 L/yr - ₹19.1 L/yr

Software Engineer
17.5k salaries
unlock blur

₹3.6 L/yr - ₹12.8 L/yr

Explore more salaries
Compare Accenture with

TCS

3.7
Compare

Cognizant

3.8
Compare

Capgemini

3.8
Compare

Infosys

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