Upload Button Icon Add office photos

Accenture

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Accenture Software Development Senior Analyst Interview Questions, Process, and Tips

Updated 6 Mar 2025

Top Accenture Software Development Senior Analyst Interview Questions and Answers

  • Q1. How can we pass multiple values from controller to view in asp.net core MVC?
  • Q2. Dependency injection and use of entity framework for connecting our asp.net MVC web app to database.
  • Q3. Linq queries for left, right and inner join?
View all 10 questions

Accenture Software Development Senior Analyst Interview Experiences

10 interviews found

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

I was interviewed in Sep 2024.

Round 1 - Technical 

(5 Questions)

  • Q1. What are SOLID principals?
  • Ans. 

    SOLID principles are five design principles aimed at making software designs more understandable, flexible, and maintainable.

    • S - Single Responsibility Principle: A class should have one, and only one, reason to change. Example: A class handling user data should not also handle logging.

    • O - Open/Closed Principle: Software entities should be open for extension but closed for modification. Example: Using interfaces to allo...

  • Answered by AI
  • Q2. How can we pass multiple values from controller to view in asp.net core MVC?
  • Ans. 

    In ASP.NET Core MVC, multiple values can be passed from a controller to a view using ViewData, ViewBag, or a strongly-typed model.

    • Use ViewData: Pass values as key-value pairs. Example: ViewData['Message'] = 'Hello World!';

    • Use ViewBag: Similar to ViewData but uses dynamic properties. Example: ViewBag.Title = 'My Page';

    • Use a ViewModel: Create a class to hold multiple properties. Example: public class MyViewModel { public...

  • Answered by AI
  • Q3. Linq queries for left, right and inner join?
  • Ans. 

    LINQ queries allow for efficient data manipulation and retrieval using left, right, and inner joins in C#.

    • Inner Join: Combines records from two collections where there is a match. Example: var result = from a in collectionA join b in collectionB on a.Id equals b.AId select new { a, b };

    • Left Join: Returns all records from the left collection and matched records from the right. Example: var result = from a in collectionA...

  • Answered by AI
  • Q4. Regular expressions in C# .net?
  • Ans. 

    Regular expressions in C# are powerful tools for pattern matching and text manipulation using the System.Text.RegularExpressions namespace.

    • Use the Regex class: `Regex regex = new Regex(pattern);`

    • Match a string: `Match match = regex.Match(input);`

    • Find all matches: `MatchCollection matches = regex.Matches(input);`

    • Replace text: `string result = regex.Replace(input, replacement);`

    • Example pattern: `\d+` matches one or more

  • Answered by AI
  • Q5. Dependency injection and use of entity framework for connecting our asp.net MVC web app to database.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. About my previous project
  • Q2. Scenario based questions
Round 2 - One-on-one 

(2 Questions)

  • Q1. SWOT analysis was asked
  • Q2. Different types of SDLC
  • Ans. 

    SDLC stands for Software Development Life Cycle. There are different types including Waterfall, Agile, Iterative, Spiral, V-Model, etc.

    • Waterfall: Sequential approach with distinct phases

    • Agile: Iterative and incremental development

    • Iterative: Repeating cycles of development

    • Spiral: Risk-driven approach with multiple iterations

    • V-Model: Corresponding testing phase for each development phase

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Salary discussion
  • Q2. Salary negotiations

Skills evaluated in this interview

Software Development Senior Analyst Interview Questions Asked at Other Companies

asked in Accenture
Q1. How can we pass multiple values from controller to view in asp.ne ... read more
asked in Accenture
Q2. Dependency injection and use of entity framework for connecting o ... read more
asked in Accenture
Q3. Linq queries for left, right and inner join?
Q4. write a flowchart for a given problem statement
asked in Accenture
Q5. What are SOLID principals?
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Collections, Java 8 features, hibernate, DevOops
  • Q2. Treemap and hashmap difference?
  • Ans. 

    Treemap is a sorted map based on natural ordering of keys, while hashmap is an unordered map.

    • Treemap stores key-value pairs in sorted order based on the natural ordering of keys.

    • Hashmap does not guarantee any specific order of key-value pairs.

    • Treemap uses a red-black tree for storage and retrieval, while hashmap uses hash table.

    • Treemap is slower than hashmap for most operations due to the sorting overhead.

    • Example: Tree...

  • Answered by AI
  • Q3. Hashmap internal working?
  • Ans. 

    HashMap is a data structure that stores key-value pairs and uses hashing to efficiently retrieve values based on keys.

    • HashMap internally uses an array of linked lists to store key-value pairs.

    • When a key-value pair is added, the key is hashed to determine the index in the array where the pair will be stored.

    • If multiple keys hash to the same index, a linked list is used to handle collisions.

    • Retrieving a value involves ha...

  • Answered by AI
  • Q4. Stream api in java 8?
  • Ans. 

    Stream API in Java 8 provides a functional approach to processing collections of objects.

    • Stream API allows for processing collections of objects in a functional style.

    • It supports operations like filter, map, reduce, and collect.

    • Streams can be sequential or parallel, allowing for efficient processing of large datasets.

    • Example: List names = Arrays.asList("Alice", "Bob", "Charlie"); names.stream().filter(name -> name.sta

  • Answered by AI
  • Q5. Hibernate sessions?

Interview Preparation Tips

Interview preparation tips for other job seekers - After interview I got the offer but no response from the açcenture team to revise few details

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Questions based on Core Java OOP Concept
  • Q2. 2 coding easy level questions

Accenture interview questions for designations

 Software Development Analyst

 (6)

 Senior Software Analyst

 (5)

 Senior Software Development Engineer

 (1)

 Application Development - Senior Analyst

 (147)

 Senior Application Development Software Analyst

 (1)

 Software Analyst

 (16)

 Software Engineering Senior Analyst

 (5)

 Senior Software Test Analyst

 (1)

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Design pattern, hashmap internal working
  • Q2. Microservices vs monolithic
  • Ans. 

    Microservices allow for modular and scalable architecture, while monolithic is simpler but can be harder to maintain.

    • Microservices break down applications into smaller, independent services that communicate through APIs.

    • Monolithic architecture involves building the entire application as a single unit.

    • Microservices offer flexibility, scalability, and fault isolation.

    • Monolithic applications are easier to develop and depl...

  • Answered by AI

Skills evaluated in this interview

Get interview-ready with Top Accenture Interview Questions

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

(2 Questions)

  • Q1. Java related questions
  • Q2. BDD Framework related questions
Round 2 - Coding Test 

Multiple choice questions

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

I applied via LinkedIn and was interviewed in Dec 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 Resume tips
Round 2 - Aptitude Test 

Before technical interview we have to clear the aptitude test. Question are going to based on your primary skil.

Round 3 - Technical 

(2 Questions)

  • Q1. After Clearing the aptitude test. Technical interview is going to be shedule, interview duration will be between 30 to 60 Min. Question are going to be based on your primary skill.
  • Q2. SAP ABAP Interview questions. What is TMG .? What is event in table What are the Lock object , what are fm for that Why do we use the driver program? What is the final window What is the destinati...
Round 4 - HR 

(1 Question)

  • Q1. 1 ) why you are changing your current organization. 2) Reason to join us. 3) what do you mean by work life balance. 4) what do you mean by good package. 5) If we give an offer, you still going to loo...
  • Ans. 1) for the career growth i have to learn new technologies and work on that , and finance reason also. 2) learn from Google about company 3) After office hours you must have time for your family. 4 ) According to market get a idea about package. 5) yes, if you give me assurance you are not going to take interview with other candidate for same position for which you select me.
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - 1) Don't lose the hope After getting rejected.
Rejection is part of process.

2) Always record your interview by video , audio it will help you alot to find where you are lacking.

I applied via Recruitment Consultant and was interviewed in Jul 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Cognos Administration and Development

Interview Preparation Tips

Interview preparation tips for other job seekers - Try to make a good resume and mention the skills which you exactly know. When you have command over your skills no one can stop you where ever you want to be.
Be confident, formally dressed even if the interview is online. Nice and professional behavior is what makes a good impression.

Interview Questionnaire 

4 Questions

  • Q1. Angular
  • Ans. You need to know in and out of angular with unit testing
  • Answered Anonymously
  • Q2. Javascript
  • Q3. HTML,CSS
  • Q4. Good Understanding of HTML,CSS and it's Preprocessors

I applied via Company Website and was interviewed in Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. My knowledge of dot net
  • Q2. My knowledge on Microsoft LUIS
  • Q3. About my projects

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was 30min. long then on same day they schedule hr interview where interviewer verified my id and details later I received an email to upload my documents then salary negotiation happened and location discussion and next day they released me offer letter. It was fast.
Contribute & help others!
anonymous
You can choose to be anonymous

Accenture Interview FAQs

How many rounds are there in Accenture Software Development Senior Analyst interview?
Accenture interview process usually has 1-2 rounds. The most common rounds in the Accenture interview process are Technical, HR and One-on-one Round.
How to prepare for Accenture Software Development Senior 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 Application Development, Process Improvement, Software Development, Process Excellence and Process automation.
What are the top questions asked in Accenture Software Development Senior Analyst interview?

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

  1. How can we pass multiple values from controller to view in asp.net core M...read more
  2. Dependency injection and use of entity framework for connecting our asp.net MVC...read more
  3. Linq queries for left, right and inner jo...read more

Recently Viewed

INTERVIEWS

Bird Worldwide Flight Services

No Interviews

REVIEWS

Bird Worldwide Flight Services

No Reviews

REVIEWS

Bird Worldwide Flight Services

No Reviews

REVIEWS

Bird Worldwide Flight Services

No Reviews

INTERVIEWS

Menzies Aviation Bobba

No Interviews

INTERVIEWS

SG Analytics

10 top interview questions

REVIEWS

Bird Worldwide Flight Services

No Reviews

LIST OF COMPANIES

Bird Worldwide Flight Services

Locations

REVIEWS

Bird Worldwide Flight Services

No Reviews

INTERVIEWS

Fortis Healthcare

No Interviews

Tell us how to improve this page.

Accenture Software Development Senior Analyst Interview Process

based on 12 interviews

1 Interview rounds

  • Technical Round
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Capgemini Interview Questions
3.7
 • 4.7k 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 Software Development Senior Analyst Salary
based on 1.2k salaries
₹4.8 L/yr - ₹20 L/yr
6% more than the average Software Development Senior Analyst Salary in India
View more details

Accenture Software Development Senior Analyst Reviews and Ratings

based on 63 reviews

4.3/5

Rating in categories

4.3

Skill development

4.0

Work-life balance

3.8

Salary

4.1

Job security

4.3

Company culture

3.7

Promotions

4.2

Work satisfaction

Explore 63 Reviews and Ratings
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