Upload Button Icon Add office photos

Accenture

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Accenture Developer Associate Interview Questions and Answers

Updated 17 Jan 2025

Accenture Developer Associate Interview Experiences

4 interviews found

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

I applied via Naukri.com and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. List the Git commands that you know?
  • Ans. 

    List of common Git commands for version control

    • git init - initialize a new Git repository

    • git clone - clone a repository into a new directory

    • git add - add file changes to the staging area

    • git commit - commit changes to the repository

    • git push - push changes to a remote repository

    • git pull - fetch and merge changes from a remote repository

    • git branch - list, create, or delete branches

    • git merge - merge changes from one branch...

  • Answered by AI
  • Q2. CI/CD pipeline explanantion
Round 2 - Technical 

(2 Questions)

  • Q1. Where do you save ansible files
  • Ans. 

    Ansible files are typically saved in a version control system like Git for easy access and collaboration.

    • Save ansible files in a version control system like Git

    • Create separate repositories for different projects or roles

    • Organize files into directories based on their purpose or role

    • Use naming conventions to easily identify files and their functions

  • Answered by AI
  • Q2. How to take jenkins backup using plugins
  • Ans. 

    Use Jenkins plugin to easily backup Jenkins configurations and data

    • Install the 'ThinBackup' plugin in Jenkins

    • Configure the plugin to schedule regular backups of Jenkins configurations and data

    • Specify the backup location and retention policy in the plugin settings

    • Run manual backups as needed through the plugin interface

  • Answered by AI

Skills evaluated in this interview

HCLTech

An opportunity to work for Fortune 500 companies

The biggest brands, the bravest work.

Developer Associate Interview Questions & Answers

user image 4012 BATCHU MAHALAKSHMI PRAJWALITHA

posted on 21 Oct 2023

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 

The round 1 is an apptitude test it consists of multiple choice questions. The topics covered like apptitude (verbal,quants,etc). also the pseudocodes are there you have to find the output , these are also mcq type questions.

Round 3 - Coding Test 

2nd round was coding test there will be c codes to solve. u can use any preferred language

Round 4 - Technical 

(1 Question)

  • Q1. Explain about ur project

Developer Associate Interview Questions Asked at Other Companies

asked in FICO
Q1. Cycle Detection in a Singly Linked List Determine if a given sing ... read more
asked in SAP
Q2. Reverse a Linked List Iteratively You are given a singly linked l ... read more
asked in SAP
Q3. Inorder Successor in a Binary Tree Given a node in an arbitrary b ... read more
asked in SAP
Q4. Uncommon Characters Problem Statement Given two strings str1 and ... read more
asked in Cognizant
Q5. Merge Sort Problem Statement You are given a sequence of numbers, ... read more
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected

I applied via Campus Placement and was interviewed before Jan 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Questions were at Medium difficulty level.

Round 2 - Coding Test 

One basic level coding problem on loops and one medium level problem on data structure.

Round 3 - Technical 

(1 Question)

  • Q1. Questions were based on skills mentioned in resume and the projects worked on.

Developer Associate Interview Questions & Answers

user image BHARGAVI MEDAGAM

posted on 15 Jun 2023

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 Jun 2022. There were 3 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 

Aptitude test we can write first

Round 3 - Communication 

(2 Questions)

  • Q1. We can do the afternoon coding communication
  • Q2. They ask about my self and my roles in college and mine internship and about what i know all they ask around 20 min for me

Accenture interview questions for designations

 Associate Software Developer

 (38)

 Associate Application Developer

 (18)

 Senior Associate Developer

 (1)

 Associate Developer 2

 (4)

 Developer

 (9)

 Associate Consultant

 (12)

 Software Associate

 (6)

 QA Associate

 (1)

Developer Associate Jobs at Accenture

View all

Interview questions from similar companies

I was interviewed in Dec 2016.

Interview Questionnaire 

3 Questions

  • Q1. Write the longest program that you can in a language of your choice and explain it line to line
  • Ans. 

    The program generates a Fibonacci sequence up to a given number.

    • The program takes an input number from the user.

    • It initializes an array with the first two Fibonacci numbers.

    • Using a loop, it calculates the next Fibonacci number by summing the previous two numbers.

    • The loop continues until the next Fibonacci number exceeds the given input number.

    • The program then prints the Fibonacci sequence up to the given number.

  • Answered by AI
  • Q2. Do you think your job designation should be solely based on your programme in b.tech
  • Ans. 

    No

    • Job designation should not be solely based on the program in b.tech as it limits the potential of individuals.

    • Skills, experience, and aptitude should also be considered for job designations.

    • A person with a different program or self-taught skills may be equally or more qualified for a job.

    • Job designations should be based on a holistic evaluation of an individual's capabilities.

  • Answered by AI
  • Q3. Did you face any difficulties in IIT Bhubaneswar
  • Ans. 

    Yes, I faced difficulties in IIT Bhubaneswar

    • Adjusting to the new environment and academic rigor

    • Balancing academics with extracurricular activities

    • Navigating the campus and finding resources

    • Dealing with homesickness and being away from family

  • Answered by AI

Interview Preparation Tips

Round: Technical Interview
Tips: Concentrate on Java,Big data

College Name: IIT BHUBANESHWAR

I was interviewed in Nov 2020.

Round 1 - Face to Face 

(1 Question)

Round duration - 45 minutes
Round difficulty - Easy

  • Q1. 

    Merge Sort Problem Statement

    You are given a sequence of numbers, ARR. Your task is to return a sorted sequence of ARR in non-descending order using the Merge Sort algorithm.

    Explanation:

    The Merge Sort...

  • Ans. 

    Implement Merge Sort algorithm to sort a sequence of numbers in non-descending order.

    • Understand the Merge Sort algorithm which involves dividing the array into two halves, sorting each half, and then merging them back together.

    • Recursively apply the Merge Sort algorithm until the base case of having a single element in the array is reached.

    • Merge the sorted halves back together in a way that maintains the non-descending ...

  • Answered by AI
Round 2 - HR 

Round duration - 30 minutes
Round difficulty - Easy

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Developer Associate in BengaluruEligibility criteria7 CGPACognizant interview preparation:Topics to prepare for the interview - Data structures, CCNA, OOPS, C++, C programming, PythonTime required to prepare for the interview - 1.5 monthsInterview preparation tips for other job seekers

Tip 1: Be through with your resume first
Tip 2: Know your project thoroughly
Tip 3: Be strong with the basics of your subjects

Application resume tips for other job seekers

Tip 1 : Mention your projects
Tip 2 : Put which you are confident enough

Final outcome of the interviewSelected

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed before Jul 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Two hours of exam. all basic aptitutde

Round 2 - Coding Test 

One hour graphs, arrays, strings

Round 3 - HR 

(2 Questions)

  • Q1. Tell about yourself
  • Ans. 

    I am a dedicated and passionate developer with experience in web development and programming languages like Java and Python.

    • Experienced in web development

    • Proficient in Java and Python programming languages

    • Passionate about coding and problem-solving

  • Answered by AI
  • Q2. Asked about academic gpa

Interview Preparation Tips

Topics to prepare for IBM Developer Associate interview:
  • Data Structures
  • aptitute
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 - One-on-one 

(1 Question)

  • Q1. About project b what you worked

Interview Preparation Tips

Interview preparation tips for other job seekers - Look for better company, don't waste your career in service based company

I applied via Campus Placement

Round 1 - Aptitude Test 

Online aptitude can prepare from indiabix

Round 2 - Cognitive test 

(1 Question)

  • Q1. Game based check on youtube you’ve to complete it fast
Round 3 - Coding Test 

Needs coding knowledge

Round 4 - Interviews 

(1 Question)

  • Q1. Mine was easy. Only HR questions nothing technical. But other students got technical questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare from YouTube and google. Coding round is the most diffIcult. Others are doable.

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

Interview Questionnaire 

1 Question

  • Q1. Based on projects

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare resume well and have good projects
Contribute & help others!
anonymous
You can choose to be anonymous

Accenture Interview FAQs

How many rounds are there in Accenture Developer Associate interview?
Accenture interview process usually has 3 rounds. The most common rounds in the Accenture interview process are Technical, Aptitude Test and Resume Shortlist.
How to prepare for Accenture Developer Associate 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 Content Development, Agile, Product Management, Proposal Development and Consulting.
What are the top questions asked in Accenture Developer Associate interview?

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

  1. where do you save ansible fi...read more
  2. how to take jenkins backup using plug...read more
  3. List the Git commands that you kn...read more

Recently Viewed

JOBS

Virtusa Consulting Services

No Jobs

JOBS

Ajmera Infotech

No Jobs

JOBS

DigiVersal Consultants

No Jobs

JOBS

Futurism Technologies

No Jobs

JOBS

Chandigarh University

No Jobs

JOBS

Softone Technologies

No Jobs

JOBS

HyTech Professionals

No Jobs

JOBS

Right Fit Resources

No Jobs

JOBS

Techwave Consulting

No Jobs

JOBS

Celzene IT Services

No Jobs

Tell us how to improve this page.

Accenture Developer Associate Interview Process

based on 4 interviews

Interview experience

4
  
Good
View more

Sun Pharmaceutical Industries

Join us and thrive in a company culture that inspires and empowers.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.7
 • 5.6k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
IBM Interview Questions
4.0
 • 2.3k Interviews
View all
Accenture Developer Associate Salary
based on 102 salaries
₹3 L/yr - ₹6.5 L/yr
41% less than the average Developer Associate Salary in India
View more details

Accenture Developer Associate Reviews and Ratings

based on 11 reviews

4.6/5

Rating in categories

4.5

Skill development

4.6

Work-life balance

4.5

Salary

4.5

Job security

4.6

Company culture

4.1

Promotions

4.4

Work satisfaction

Explore 11 Reviews and Ratings
Packaged App Development Associate Manager

Kochi,

Coimbatore

+1

5-10 Yrs

Not Disclosed

Explore more jobs
Application Development Analyst
38.9k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Application Development - Senior Analyst
26.9k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Team Lead
24.3k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
18.1k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Analyst
17.4k salaries
unlock blur

₹0 L/yr - ₹0 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