Upload Button Icon Add office photos

Accenture

Compare button icon Compare button icon Compare

Filter interviews by

Accenture Senior Application Analyst Interview Questions and Answers

Updated 5 Feb 2024

Accenture Senior Application Analyst Interview Experiences

3 interviews found

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

(1 Question)

  • Q1. Opps concept, patterns, sql questions
Round 2 - HR 

(1 Question)

  • Q1. About past experience

I applied via Approached by company and was interviewed in Aug 2021. There were 3 interview rounds.

Round 1 - Case Study 

Emphasize upon skills and roles, Way of driving projects and conducting communications with clients. How well one understand the business and problem statements and devise effective strategies and solutions.

Round 2 - Group Discussion 

Ability to be a valuable asset and true differentiaor.

Round 3 - HR 

(5 Questions)

  • Q1. What are your salary expectations?
  • Q2. Why should we hire you?
  • Q3. Why are you looking for a change?
  • Q4. What are your strengths and weaknesses?
  • Q5. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and define your compassion well enough.

Senior Application Analyst Interview Questions Asked at Other Companies

asked in TEKsystems
Q1. what is power bi
asked in TEKsystems
Q2. what is sql join

I applied via Naukri.com and was interviewed in Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. GitHub basic questions
  • Q2. Android basic questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Read the basics of android and GitHub

Interview questions from similar companies

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

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

Round 1 - Technical 

(3 Questions)

  • Q1. What is a project that you have worked on before?
  • Ans. 

    Developed a web-based inventory management system for a retail company

    • Utilized Java for backend development

    • Implemented responsive design using HTML, CSS, and JavaScript

    • Integrated barcode scanning functionality for efficient inventory tracking

  • Answered by AI
  • Q2. What was your role within the team?
  • Ans. 

    I was responsible for providing technical support to end users and troubleshooting application issues within the team.

    • Providing technical support to end users

    • Troubleshooting application issues

    • Collaborating with team members to resolve issues

    • Documenting solutions and best practices

  • Answered by AI
  • Q3. What SQL-based queries were asked during your interview? like self join , average
Interview experience
3
Average
Difficulty level
Easy
Process Duration
-
Result
No response
Round 1 - Technical 

(2 Questions)

  • Q1. About splunk topics. Thry asked sbout alerts, reports snd dashboards
  • Q2. Unix commands and shell scripting and few scenarios
Round 2 - HR 

(1 Question)

  • Q1. Package discussion and about the shift
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Regarding application
  • Q2. Regarding program
Round 2 - One-on-one 

(2 Questions)

  • Q1. Related to manage customer
  • Q2. How to tackle end users
  • Ans. 

    Tackling end users involves effective communication, patience, and problem-solving skills.

    • Listen actively to understand their issues

    • Communicate clearly and patiently

    • Provide step-by-step instructions or guidance

    • Empathize with their frustrations

    • Offer solutions or workarounds

    • Follow up to ensure the issue is resolved

  • Answered by AI
Round 3 - Coding Test 

How to write code regarding customer

Round 4 - Case Study 

Case study regarding related to project

Round 5 - One-on-one 

(1 Question)

  • Q1. HR manager one on one round
Round 6 - Assignment 

Application project management

Interview Preparation Tips

Interview preparation tips for other job seekers - Plz guide regarding issue
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
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 

(2 Questions)

  • Q1. Depends on your skill
  • Q2. All technical questions related linux,Unix,SQL, oracle
Round 3 - Technical 

(2 Questions)

  • Q1. Linux,Unix,SQL, oracle, Jenkin, DEVOPS,AWS,hpsm,ITIL, service now
  • Q2. Depends on your skills
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

WAP to count each word in a sentence and dispaly the output.
Questions on marker inetrface and functional interface.
sprinboot annotation questions

I applied via LinkedIn and was interviewed in Aug 2022. There were 2 interview rounds.

Round 1 - Technical 

(4 Questions)

  • Q1. How do you allocate memory to 2D array dynamically? How and why does that work?
  • Ans. 

    Dynamic allocation of memory to 2D array is done using double pointer and malloc function.

    • Declare a double pointer to hold the 2D array.

    • Allocate memory to the first dimension using malloc function.

    • Allocate memory to the second dimension using a loop and malloc function.

    • Free the memory after use to avoid memory leaks.

    • Example: int **arr; arr = (int **)malloc(rows * sizeof(int *));

    • Example: for(int i=0; i

  • Answered by AI
  • Q2. Given string 'aabbdbdges', write a function to return a string in which there would be the letter followed by it's count of occurrence. (the output from the function for the given string should be a2b3d2g2...
  • Q3. Questions regarding memory allocation layout in C
  • Q4. Questions on Code lifecycle. Like, what is assembly code? what are macros?
Round 2 - Manegerial round 

(2 Questions)

  • Q1. Detailed questions regarding what is sprint, what is iteration? what is a story? what is a scrum? what is the role of scrum master?
  • Q2. Explain waterfall model
  • Ans. 

    Waterfall model is a linear sequential approach to software development.

    • It follows a sequential process where each phase must be completed before moving to the next one.

    • It is a rigid model and changes cannot be made easily once a phase is completed.

    • It is suitable for projects with well-defined requirements and a clear understanding of the end product.

    • Phases include requirements gathering, design, implementation, testin...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for DXC Technology Application Developer interview:
  • C
Interview preparation tips for other job seekers - Prepare how the memory layout works in C.
And have hands on practice writing small small C codes.

Skills evaluated in this interview

Accenture Interview FAQs

How many rounds are there in Accenture Senior Application Analyst interview?
Accenture interview process usually has 2-3 rounds. The most common rounds in the Accenture interview process are HR, Case Study and Group Discussion.
What are the top questions asked in Accenture Senior Application Analyst interview?

Some of the top questions asked at the Accenture Senior Application Analyst interview -

  1. GitHub basic questi...read more
  2. Android basic questio...read more
  3. opps concept, patterns, sql questi...read more

Tell us how to improve this page.

Accenture Senior Application 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 Senior Application Analyst Salary
based on 394 salaries
₹6 L/yr - ₹19.5 L/yr
9% less than the average Senior Application Analyst Salary in India
View more details

Accenture Senior Application Analyst Reviews and Ratings

based on 22 reviews

3.6/5

Rating in categories

3.8

Skill development

4.0

Work-life balance

3.6

Salary

4.1

Job security

4.0

Company culture

3.4

Promotions

3.7

Work satisfaction

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

₹3 L/yr - ₹12 L/yr

Application Development - Senior Analyst
26.2k salaries
unlock blur

₹6.9 L/yr - ₹20.2 L/yr

Team Lead
24.2k salaries
unlock blur

₹7.1 L/yr - ₹25.5 L/yr

Senior Software Engineer
18.3k salaries
unlock blur

₹6 L/yr - ₹19.4 L/yr

Software Engineer
17.5k 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