Upload Button Icon Add office photos

Filter interviews by

Accenture Development Analyst Interview Questions and Answers

Updated 27 Sep 2023

Accenture Development Analyst Interview Experiences

1 interview found

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

I applied via Naukri.com and was interviewed before Sep 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 tips
Round 2 - Technical 

(2 Questions)

  • Q1. About Power Bi Dax
  • Q2. Use relationship row level security
  • Ans. 

    Relationship row level security is a feature that allows users to restrict access to specific rows of data based on relationships between tables.

    • Define relationships between tables in the database

    • Set up security policies to restrict access to specific rows based on these relationships

    • Users can only view data that they have permission to access

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. About myself why this company salary discussion

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. What is the Java code for comparing two strings for equality?
  • Ans. 

    Use the equals() method in Java to compare two strings for equality.

    • Use the equals() method to compare two strings for equality.

    • Example: String str1 = "hello"; String str2 = "hello"; if(str1.equals(str2)) { // strings are equal }

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Job Fair

Round 1 - Aptitude Test 

Verbal, reasoning,aptitude

Round 2 - Technical 

(1 Question)

  • Q1. MCQs related to CS
Round 3 - Coding Test 

2Coding questions and it was moderate level

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

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

Round 1 - Aptitude Test 

Game based reasoning

Round 2 - Coding Test 

2 codes are given we have to solve them in python and 2 SQL queries are given we have to solve them and finally we should develop a website using HTML, CSS and js

Round 3 - Group Discussion 

General knowledge based like Ai

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

I applied via Company Website and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

In aptitude que and if it's clear so 2 coding que

Round 2 - Technical 

(2 Questions)

  • Q1. Difference between linklist and arraylist
  • Ans. 

    LinkedList is a data structure where elements are linked using pointers, while ArrayList is a resizable array implementation.

    • LinkedList uses nodes with pointers to the next element, allowing for efficient insertions and deletions.

    • ArrayList uses a dynamic array to store elements, providing fast random access but slower insertions and deletions.

    • LinkedList is better for frequent insertions and deletions, while ArrayList i...

  • Answered by AI
  • Q2. Reverse string program of java
  • Ans. 

    Java program to reverse a string

    • Use StringBuilder class to reverse the string

    • Convert the string to a StringBuilder object, call reverse() method, then convert back to string

    • Alternatively, use a loop to iterate through the characters of the string in reverse order

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident

Skills evaluated in this interview

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

I applied via Campus Placement

Round 1 - One-on-one 

(3 Questions)

  • Q1. What is SDLC? Explain briefly
  • Ans. 

    SDLC stands for Software Development Life Cycle, a process used by software development teams to design, develop, and test high-quality software.

    • SDLC is a structured process that consists of several phases such as planning, analysis, design, implementation, testing, and maintenance.

    • Each phase has its own set of activities and deliverables that contribute to the overall success of the project.

    • SDLC helps ensure that the ...

  • Answered by AI
  • Q2. Can you tell me the core concepts of Object Oriented Programming?
  • Ans. 

    Core concepts of Object Oriented Programming include encapsulation, inheritance, and polymorphism.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit (object).

    • Inheritance: Allowing a new class to inherit properties and behavior from an existing class.

    • Polymorphism: The ability for objects of different classes to respond to the same message in different ways.

    • Example: Inheritance - A 'Car'...

  • Answered by AI
  • Q3. Project related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview Level - Easy

Questions -
1. Basic of SDLC
2. OOP basics
3. Projects and related questions

Tip -
Make sure you know everything that you mention in your resume

Skills evaluated in this interview

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

(1 Question)

  • Q1. Salary expected
  • Ans. 

    Negotiable based on the responsibilities and opportunities offered by the role.

    • I am open to discussing salary based on the responsibilities and opportunities presented by the role.

    • I have a range in mind, but I am flexible depending on the overall compensation package.

    • I am more focused on finding the right fit and growth potential rather than a specific salary number.

  • Answered by AI
Interview experience
4
Good
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 tips
Round 2 - Technical 

(1 Question)

  • Q1. Tech stack related question
Round 3 - Technical 

(1 Question)

  • Q1. Project related discussion
Round 4 - HR 

(1 Question)

  • Q1. General HR question

I applied via Recruitment Consulltant and was interviewed in Sep 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Aptitude Test 

Logical maths, percentages, years, calendars etc..

Round 3 - Technical 

(5 Questions)

  • Q1. Technical language skills
  • Q2. Self introduction and technical questions on language skills
  • Q3. Tell me about yourself
  • Q4. Explain oops concept?
  • Ans. 

    OOPs is a programming paradigm that focuses on objects and their interactions to solve problems.

    • OOPs stands for Object-Oriented Programming.

    • It is based on the concept of objects, which have properties and methods.

    • Encapsulation, inheritance, and polymorphism are the three main pillars of OOPs.

    • Encapsulation refers to the practice of hiding the internal details of an object from the outside world.

    • Inheritance allows object...

  • Answered by AI
  • Q5. What is polymorphism?
  • Ans. 

    Polymorphism is the ability of an object to take on many forms.

    • Polymorphism allows objects of different classes to be treated as if they are of the same class.

    • It is achieved through method overriding and method overloading.

    • Examples include function overloading in C++ and Java, and operator overloading in C++.

    • Polymorphism is a key concept in object-oriented programming.

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Brief about ourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - I want to join immediately, so please take my interview as soon as possible.
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Feb 2023. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Assignment 

About BDE how we will cantact with the costomers

Round 3 - Group Discussion 

How to understand the costomers

Round 4 - HR 

(2 Questions)

  • Q1. Explain about coustomer and work
  • Ans. 

    Customers are the foundation of any business. Understanding their needs and providing quality work is crucial for success.

    • Customers are the reason for a business's existence

    • It is important to listen to their needs and concerns

    • Providing quality work and excellent customer service is key to retaining customers

    • Building strong relationships with customers can lead to repeat business and referrals

    • Regular communication with ...

  • Answered by AI
  • Q2. How to develop ur business Development Executive
  • Ans. 

    To develop a business development executive, focus on training, mentorship, and providing opportunities for growth.

    • Provide regular training sessions to improve skills and knowledge

    • Assign a mentor to provide guidance and support

    • Offer opportunities for professional growth and advancement

    • Encourage networking and relationship building

    • Provide feedback and recognition for achievements

    • Set clear goals and expectations

    • Continuou

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Tata Group (Bde)business Development Executive interview:
  • Self introduction
Interview preparation tips for other job seekers - Mingle with coustomer as a Friendly and family. Coustomer problem ur responsibility

Accenture Interview FAQs

How many rounds are there in Accenture Development Analyst interview?
Accenture interview process usually has 3 rounds. The most common rounds in the Accenture interview process are Resume Shortlist, Technical and HR.
How to prepare for Accenture Development Analyst 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 Customer Service, Workforce Management, Leadership Development, CRM and Excel.
What are the top questions asked in Accenture Development Analyst interview?

Some of the top questions asked at the Accenture Development Analyst interview -

  1. use relationship row level secur...read more
  2. About Power Bi ...read more

Tell us how to improve this page.

Accenture Development Analyst Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 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
 • 3k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
View all
Accenture Development Analyst Salary
based on 138 salaries
₹5.2 L/yr - ₹11.9 L/yr
17% less than the average Development Analyst Salary in India
View more details

Accenture Development Analyst Reviews and Ratings

based on 4 reviews

3.5/5

Rating in categories

4.3

Skill development

3.0

Work-life balance

3.0

Salary

3.8

Job security

2.8

Company culture

3.0

Promotions

3.0

Work satisfaction

Explore 4 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.8 L/yr - ₹20.2 L/yr

Team Lead
24.2k salaries
unlock blur

₹7.1 L/yr - ₹25.4 L/yr

Senior Software Engineer
18.3k salaries
unlock blur

₹6 L/yr - ₹19.5 L/yr

Software Engineer
17.5k salaries
unlock blur

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