Upload Button Icon Add office photos

Accenture

Compare button icon Compare button icon Compare

Filter interviews by

Accenture .NET Application Developer Interview Questions and Answers for Experienced

Updated 17 Nov 2024

20 Interview questions

A .NET Application Developer was asked 7mo ago
Q. What is the difference between a global table and a temporary table?
Ans. 

Global tables are accessible to all sessions, while temp tables are only accessible to the session that created them.

  • Global tables are permanent and stored in the database, while temp tables are temporary and stored in memory or tempdb.

  • Global tables can be accessed by multiple users and sessions, while temp tables are local to the session that created them.

  • Global tables require explicit creation and dropping, whil...

A .NET Application Developer was asked 7mo ago
Q. What is the MVC page lifecycle in detail?
Ans. 

MVC page cycle is the sequence of events that occur during the lifespan of a MVC page.

  • MVC page is requested by the user

  • Routing engine determines the appropriate controller and action method

  • Controller executes the action method and returns a view

  • View is rendered and sent back to the user's browser

.NET Application Developer Interview Questions Asked at Other Companies for Experienced

asked in Accenture
Q1. If the class is declared as Sealed, can we inherit from it? What ... read more
asked in Accenture
Q2. Cursors in SQL, Is trigger really required? In what cases can we ... read more
asked in Accenture
Q3. What is abstract class? What is interface? Difference between bot ... read more
asked in Accenture
Q4. What is GC? Can we force GC to run? If yes, how to do it?
asked in Accenture
Q5. How do you maintain the code for Dev/QA/Production?
A .NET Application Developer was asked 7mo ago
Q. What is a regular expression?
Ans. 

Regular expression is a sequence of characters that define a search pattern.

  • Regular expressions are used for pattern matching in strings

  • They can be used for tasks like validation, searching, and replacing text

  • Examples: ^[a-zA-Z0-9]+@[a-zA-Z0-9]+\.[a-zA-Z]{2,4}$ is a regex for email validation

A .NET Application Developer was asked 7mo ago
Q. Explain the ASP.NET Page Lifecycle.
Ans. 

ASP .Net Page Lifecycle is a series of events that occur when a page is requested, processed, and rendered by the server.

  • Page Request: Initiated by the user or browser.

  • Page Initialization: Page properties are set.

  • Page Load: Controls on the page are loaded and data is bound.

  • Postback Event Handling: User interactions trigger events.

  • Page Rendering: Page is rendered to HTML and sent to the browser.

  • Page Unload: Cleanup...

What people are saying about Accenture

View All
lavenderalmond
Verified Icon
2d
works at
Accenture
Which offer should I choose – BP vs UKG (SRE Role)?
Got two offers: 🔹 BP – ₹10 LPA (Pune, Hybrid) Stable MNC, decent WLB, slower growth In-hand ~₹62K/month 🔹 UKG – ₹20 LPA (Noida, Hybrid) Strong perks (₹6L insurance, wellness, equity, bonus), high pay In-hand ~₹1.4L/month, but higher expectations Looking for: SRE growth, WLB, learning, and long-term stability What would you pick and why? Any feedback from current/ex-employees is appreciated!
Got a question about Accenture?
Ask anonymously on communities.
A .NET Application Developer was asked 7mo ago
Q. How do you deploy code in a test environment?
Ans. 

Code deployment in test environment involves creating a deployment package and deploying it to the test server.

  • Create a deployment package containing all necessary files and configurations.

  • Deploy the package to the test server using tools like Octopus Deploy or Azure DevOps.

  • Test the deployed code in the test environment to ensure it functions as expected.

A .NET Application Developer was asked 7mo ago
Q. How do we do Error handling in .Net application?
Ans. 

Error handling in .NET application involves using try-catch blocks to handle exceptions and ensure graceful error recovery.

  • Use try-catch blocks to catch exceptions and handle them appropriately

  • Use specific exception types for different error scenarios

  • Implement logging to track errors and troubleshoot issues

  • Consider using global exception handling for unhandled exceptions

  • Use custom error messages to provide meaning...

A .NET Application Developer was asked 7mo ago
Q. What is MasterPage?
Ans. 

MasterPage is a feature in ASP.NET that allows for creating a consistent layout for multiple pages.

  • MasterPage defines the common structure and interface for all pages in a web application.

  • It allows for the separation of content and layout, making it easier to maintain and update.

  • MasterPage can contain placeholders for content that can be filled in by individual pages.

  • Changes made to the MasterPage will be reflecte...

Are these interview questions helpful?
A .NET Application Developer was asked 7mo ago
Q. How do you maintain the code for Dev/QA/Production?
Ans. 

Code is maintained using version control systems like Git, with separate branches for Dev, QA, and Production.

  • Use version control systems like Git to track changes and manage code.

  • Create separate branches for Dev, QA, and Production to isolate changes and prevent conflicts.

  • Implement a code review process to ensure quality and consistency across environments.

  • Automate deployment processes to easily promote code chan...

🔥 Asked by recruiter 2 times
A .NET Application Developer was asked 7mo ago
Q. What is Lazy Loading?
Ans. 

Lazy loading is a design pattern where data is loaded only when it is needed.

  • Lazy loading helps improve performance by loading data on demand

  • It is commonly used in ORM frameworks like Entity Framework

  • Example: Loading related entities only when accessed in a database query

A .NET Application Developer was asked 7mo ago
Q. What is the purpose of the finally keyword, the final keyword, and the Dispose keyword in C#?
Ans. 

finally is used in exception handling, final is a keyword for classes, Dispose is used for releasing unmanaged resources.

  • finally block is used in exception handling to ensure a piece of code is always executed, whether an exception is thrown or not.

  • final keyword is used in C# to prevent inheritance or overriding of a method, class, or property.

  • Dispose method is used to release unmanaged resources like file handles...

Accenture .NET Application Developer Interview Experiences for Experienced

1 interview found

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

I applied via Referral and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(22 Questions)

  • Q1. How do you review the code of your peers when working on same project?
  • Q2. Follow-up Question:- How do you maintain the code for Dev/QA/Production?
  • Ans. 

    Code is maintained using version control systems like Git, with separate branches for Dev, QA, and Production.

    • Use version control systems like Git to track changes and manage code.

    • Create separate branches for Dev, QA, and Production to isolate changes and prevent conflicts.

    • Implement a code review process to ensure quality and consistency across environments.

    • Automate deployment processes to easily promote code changes f...

  • Answered by AI
  • Q3. ACID properties in the database
  • Ans. 

    ACID properties ensure database transactions are processed reliably.

    • ACID stands for Atomicity, Consistency, Isolation, and Durability.

    • Atomicity ensures that either all operations in a transaction are completed or none are.

    • Consistency ensures that the database remains in a valid state before and after the transaction.

    • Isolation ensures that multiple transactions can occur concurrently without affecting each other.

    • Durabil...

  • Answered by AI
  • Q4. OOPs concept. How do we implement/use/purpose for Encapsulation, Abstraction?
  • Ans. 

    Encapsulation is the concept of bundling data and methods that operate on the data into a single unit. Abstraction is the concept of hiding the implementation details and showing only the necessary features of an object.

    • Encapsulation helps in data hiding and prevents direct access to data from outside the class.

    • Abstraction helps in reducing complexity by hiding unnecessary details and showing only essential features.

    • En...

  • Answered by AI
  • Q5. What is abstract class? What is interface? Difference between both and when do we use them?
  • Ans. 

    Abstract class is a class that cannot be instantiated and may contain abstract methods. Interface is a contract that defines methods that a class must implement.

    • Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.

    • A class can inherit only one abstract class but can implement multiple interfaces.

    • Abstract classes are used when you want to provide a default impleme...

  • Answered by AI
  • Q6. What is Routing? Have you heard about Conventional Routing?
  • Ans. 

    Routing is the process of directing network traffic to its destination. Conventional Routing is a method of defining routes based on conventions.

    • Routing is the process of determining the path that network packets should take from the source to the destination.

    • Conventional Routing involves defining routes based on conventions or predefined rules.

    • In web development, routing refers to mapping URLs to specific controllers ...

  • Answered by AI
  • Q7. What is GC? Can we force GC to run? If yes, how to do it?
  • Ans. 

    GC stands for Garbage Collection. It is a process of automatically reclaiming memory occupied by objects that are no longer in use.

    • GC is a part of the .NET runtime that manages memory by automatically freeing up memory occupied by objects that are no longer needed.

    • We can suggest the GC to run by calling the GC.Collect() method, but it is not recommended to force GC as it can have performance implications.

    • Forcing GC to ...

  • Answered by AI
  • Q8. What is MasterPage?
  • Ans. 

    MasterPage is a feature in ASP.NET that allows for creating a consistent layout for multiple pages.

    • MasterPage defines the common structure and interface for all pages in a web application.

    • It allows for the separation of content and layout, making it easier to maintain and update.

    • MasterPage can contain placeholders for content that can be filled in by individual pages.

    • Changes made to the MasterPage will be reflected acr...

  • Answered by AI
  • Q9. How do we do Error handling in .Net application?
  • Ans. 

    Error handling in .NET application involves using try-catch blocks to handle exceptions and ensure graceful error recovery.

    • Use try-catch blocks to catch exceptions and handle them appropriately

    • Use specific exception types for different error scenarios

    • Implement logging to track errors and troubleshoot issues

    • Consider using global exception handling for unhandled exceptions

    • Use custom error messages to provide meaningful f...

  • Answered by AI
  • Q10. Web API, terminologies
  • Q11. How to deploy code in test environment
  • Ans. 

    Code deployment in test environment involves creating a deployment package and deploying it to the test server.

    • Create a deployment package containing all necessary files and configurations.

    • Deploy the package to the test server using tools like Octopus Deploy or Azure DevOps.

    • Test the deployed code in the test environment to ensure it functions as expected.

  • Answered by AI
  • Q12. What is purpose of finally, final, Dispose keyword in C#?
  • Ans. 

    finally is used in exception handling, final is a keyword for classes, Dispose is used for releasing unmanaged resources.

    • finally block is used in exception handling to ensure a piece of code is always executed, whether an exception is thrown or not.

    • final keyword is used in C# to prevent inheritance or overriding of a method, class, or property.

    • Dispose method is used to release unmanaged resources like file handles or d...

  • Answered by AI
  • Q13. What is Lazy Loading
  • Ans. 

    Lazy loading is a design pattern where data is loaded only when it is needed.

    • Lazy loading helps improve performance by loading data on demand

    • It is commonly used in ORM frameworks like Entity Framework

    • Example: Loading related entities only when accessed in a database query

  • Answered by AI
  • Q14. What is SOLID principle? Name or explain one of them
  • Ans. 

    SOLID is a set of five design principles in object-oriented programming. One of them is the Single Responsibility Principle (SRP).

    • SRP states that a class should have only one reason to change, meaning it should only have one job or responsibility.

    • For example, a class that handles both user authentication and database operations violates SRP. It should be split into two separate classes.

    • SRP helps in making code more mai...

  • Answered by AI
  • Q15. What is MVC page cycle in detail
  • Ans. 

    MVC page cycle is the sequence of events that occur during the lifespan of a MVC page.

    • MVC page is requested by the user

    • Routing engine determines the appropriate controller and action method

    • Controller executes the action method and returns a view

    • View is rendered and sent back to the user's browser

  • Answered by AI
  • Q16. Explain ASP .Net Page Lifecycle
  • Ans. 

    ASP .Net Page Lifecycle is a series of events that occur when a page is requested, processed, and rendered by the server.

    • Page Request: Initiated by the user or browser.

    • Page Initialization: Page properties are set.

    • Page Load: Controls on the page are loaded and data is bound.

    • Postback Event Handling: User interactions trigger events.

    • Page Rendering: Page is rendered to HTML and sent to the browser.

    • Page Unload: Cleanup and ...

  • Answered by AI
  • Q17. If the class is declared as Sealed, can we inherit from it? What do we use it? Can seal class inherit from some other class?
  • Ans. 

    Sealed classes cannot be inherited from. They are used to prevent inheritance and ensure class integrity.

    • Sealed classes are declared using the 'sealed' keyword in C#.

    • They are used to prevent other classes from inheriting from them.

    • Sealed classes can inherit from other classes, but they cannot be inherited from.

  • Answered by AI
  • Q18. Difference between Global & Temp table.
  • Ans. 

    Global tables are accessible to all sessions, while temp tables are only accessible to the session that created them.

    • Global tables are permanent and stored in the database, while temp tables are temporary and stored in memory or tempdb.

    • Global tables can be accessed by multiple users and sessions, while temp tables are local to the session that created them.

    • Global tables require explicit creation and dropping, while tem...

  • Answered by AI
  • Q19. Session management in ASP .Net & different types
  • Ans. 

    Session management in ASP .Net involves storing user-specific data during their visit to a website.

    • ASP .Net provides in-process, state server, and SQL Server session management options

    • In-process session management stores session data in memory on the web server

    • State server session management stores session data in a separate server process

    • SQL Server session management stores session data in a SQL Server database

    • Session...

  • Answered by AI
  • Q20. Cursors in SQL, Is trigger really required? In what cases can we use it? Syntax of it
  • Ans. 

    Cursors in SQL are used to iterate through a result set, triggers are not always required but can be useful for enforcing business rules.

    • Cursors in SQL are used to fetch and process individual rows from a result set.

    • Triggers in SQL are used to automatically perform actions when certain events occur in a database.

    • Triggers can be useful for enforcing data integrity constraints or auditing changes to data.

    • Syntax of a trig...

  • Answered by AI
  • Q21. What is regular expression
  • Ans. 

    Regular expression is a sequence of characters that define a search pattern.

    • Regular expressions are used for pattern matching in strings

    • They can be used for tasks like validation, searching, and replacing text

    • Examples: ^[a-zA-Z0-9]+@[a-zA-Z0-9]+\.[a-zA-Z]{2,4}$ is a regex for email validation

  • Answered by AI
  • Q22. Var keyword in SQL
  • Ans. 

    The var keyword is not used in SQL, it is used in C# to declare implicitly typed variables.

    • The var keyword in C# allows you to declare a variable without explicitly specifying the type, the type is inferred by the compiler.

    • In SQL, you must explicitly specify the data type when declaring variables or columns.

    • Example in C#: var number = 10; // Compiler infers that number is an integer

    • Example in SQL: DECLARE @name VARCHAR...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Accenture .NET Application Developer interview:
  • OOPS
  • ASP.Net
  • ASP.Net MVC
  • SQL

Skills evaluated in this interview

Interview questions from similar companies

I applied via Campus Placement and was interviewed before May 2021. 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 tips
Round 2 - Aptitude Test 

VERBAL QUANT DI/LR and Picture based test

Round 3 - Technical 

(1 Question)

  • Q1. Write a fibonaci series in c++ or C?
  • Ans. 

    Fibonacci series can be easily implemented using loops in C++ or C.

    • Declare variables for first two numbers of the series

    • Use a loop to calculate and print the next number in the series

    • Repeat the loop until desired number of terms are printed

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Informed about the policies and made us sign a document

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be calm and composed while answering the questions.

Skills evaluated in this interview

.NET Application Developer Interview Questions Asked at Other Companies for Experienced

asked in Accenture
Q1. If the class is declared as Sealed, can we inherit from it? What ... read more
asked in Accenture
Q2. Cursors in SQL, Is trigger really required? In what cases can we ... read more
asked in Accenture
Q3. What is abstract class? What is interface? Difference between bot ... read more
asked in Accenture
Q4. What is GC? Can we force GC to run? If yes, how to do it?
asked in Accenture
Q5. How do you maintain the code for Dev/QA/Production?

Interview Questionnaire 

1 Question

  • Q1. Tell me about software system

I applied via Referral and was interviewed before Jan 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. What is abstract class, what is list, SQL,ADO.net
  • Ans. 

    Abstract class is a class that cannot be instantiated, List is a collection of objects, SQL is a language used to manage databases, ADO.net is a framework for accessing databases.

    • Abstract class is used as a base class for other classes

    • List is a generic collection of objects

    • SQL is used to create, modify, and query databases

    • ADO.net provides a set of classes for accessing databases

    • Example: abstract class Animal { public a...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The interviewer wanted to test both my knowledge and communication skills. most of asked to me Dot net quetions.

Skills evaluated in this interview

What people are saying about Accenture

View All
lavenderalmond
Verified Icon
2d
works at
Accenture
Which offer should I choose – BP vs UKG (SRE Role)?
Got two offers: 🔹 BP – ₹10 LPA (Pune, Hybrid) Stable MNC, decent WLB, slower growth In-hand ~₹62K/month 🔹 UKG – ₹20 LPA (Noida, Hybrid) Strong perks (₹6L insurance, wellness, equity, bonus), high pay In-hand ~₹1.4L/month, but higher expectations Looking for: SRE growth, WLB, learning, and long-term stability What would you pick and why? Any feedback from current/ex-employees is appreciated!
Got a question about Accenture?
Ask anonymously on communities.

I applied via Company Website and was interviewed before Jan 2021. There were 5 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Tell me about yourself?
  • Q2. Normalization concept,Java basics inheritance overloading, encapsulation ,update table ,related to projects in final year
  • Q3. Situation based questions based on project

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm and confident and be genuine whatever you explain that should be very specific to question and if u are feeling narvous then put a gentle smile on your face,if you don't know about question ask then try little bit and say sir I will read about this.
All the Best😊😊

I applied via Naukri.com and was interviewed in Jul 2020. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Tell me about yourself?
  • Ans. 

    I'm a passionate software developer with 5 years of experience in building scalable web applications and a strong focus on user experience.

    • Experience in full-stack development using technologies like React, Node.js, and MongoDB.

    • Led a team project that improved application performance by 30% through code optimization.

    • Strong background in Agile methodologies, having participated in multiple sprints and retrospectives.

    • Dev...

  • Answered by AI
  • Q2. What are your Strengths?
  • Ans. 

    I excel in problem-solving, collaboration, and adaptability, which enhance my effectiveness as a software developer.

    • Strong problem-solving skills: I enjoy tackling complex coding challenges, like optimizing algorithms for better performance.

    • Effective collaboration: I have successfully worked in Agile teams, contributing to projects like a web application that improved user engagement.

    • Adaptability: I quickly learn new t...

  • Answered by AI
  • Q3. What are your Weakness?
  • Ans. 

    I tend to be overly critical of my work, which can slow down my progress and affect my confidence in delivering projects.

    • I often spend too much time refining code, which can delay project timelines. For example, I once spent an extra week on a feature.

    • I sometimes struggle with delegation, preferring to handle tasks myself to ensure quality. This was evident in a group project where I took on too much.

    • I can be hesitant ...

  • Answered by AI
  • Q4. What are your salary expectations?
  • Ans. 

    I am looking for a competitive salary that reflects my skills and experience in software development.

    • Based on my research, the average salary for a software developer in this region is between $80,000 and $100,000.

    • I have over 5 years of experience in full-stack development, which I believe warrants a salary towards the higher end of that range.

    • I am open to discussing the entire compensation package, including benefits ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Do your Homework?
Practice
Provide evidence &Data

I applied via Referral and was interviewed before Jun 2021. There were 2 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 - Coding Test 

Java, program logic, software engineering

Interview Preparation Tips

Topics to prepare for Infosys Software Developer interview:
  • Java
Interview preparation tips for other job seekers - Be sharp and alert, focus on topics that you know. Work your way up
Are these interview questions helpful?

I applied via Company Website and was interviewed in May 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. .NET basics

I applied via Walk-in and was interviewed before Feb 2021. There were 3 interview rounds.

Round 1 - Assignment 
Round 2 - HR 

(7 Questions)

  • Q1. Share details of your previous job.
  • Q2. Why should we hire you?
  • Q3. What are your salary expectations?
  • Q4. What is your family background?
  • Ans. 

    I come from a close-knit family that values education, creativity, and support, shaping my personal and professional growth.

    • Supportive Parents: My parents encouraged my interests in technology from a young age, providing resources for learning programming.

    • Siblings: I have a younger sister who is passionate about art, and we often collaborate on projects that blend technology and creativity.

    • Family Traditions: We have a ...

  • Answered by AI
  • Q5. What are your strengths and weaknesses?
  • Q6. Tell me about yourself.
  • Q7. This opportunity is really excited for me
Round 3 - HR 

(7 Questions)

  • Q1. What are your salary expectations?
  • Q2. What is your family background?
  • Ans. 

    I come from a close-knit family that values education, creativity, and support, which has greatly influenced my career path.

    • Supportive Parents: My parents encouraged my interest in technology from a young age, providing me with resources like books and courses.

    • Siblings: I have a younger sister who is also in the tech field, and we often collaborate on projects, sharing ideas and learning from each other.

    • Family Values: ...

  • Answered by AI
  • Q3. Share details of your previous job.
  • Q4. What are your strengths and weaknesses?
  • Q5. Tell me about yourself.
  • Q6. Describe any difficult work situation or project that you have handled
  • Ans. 

    Handled a difficult project involving complex data migration and integration

    • Had to understand the existing data structure and map it to the new system

    • Dealt with multiple data sources and formats

    • Ensured data integrity and accuracy throughout the migration process

    • Collaborated with cross-functional teams to ensure successful integration

    • Implemented automated testing to validate data migration and integration

    • Managed project...

  • Answered by AI
  • Q7. Hard work and smart work
  • Ans. Reaching the building through steps is hard work ,smart work life is smart 6 the uses steps definitely .. reach the destination
  • Answered Anonymously

Interview Preparation Tips

Topics to prepare for Wipro Software Developer interview:
  • Software developer
  • Flash Animation
  • 3D Character Animation
  • Photography
  • Photoshop
  • Basic
  • Logo Design
Interview preparation tips for other job seekers - In my opinion,both are the key of success hardwork give experiences and smart work come from experience so both are important to achieve success
Interview experience
1
Bad
Difficulty level
Hard
Process Duration
More than 8 weeks
Result
No response

I applied via Campus Placement and was interviewed before Nov 2021. There were 2 interview rounds.

Round 1 - Assignment 

Best wishes to you know that you have to come to the day da

Round 2 - Group Discussion 

Hi sir I have sent the best for first year and all the best for your reference

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy easy easy drawing with this picture 🖼️ and avarampatti photos and videos are you please send panta and all the best for your reference

Accenture Interview FAQs

How many rounds are there in Accenture .NET Application Developer interview for experienced candidates?
Accenture interview process for experienced candidates usually has 1 rounds. The most common rounds in the Accenture interview process for experienced candidates are Technical.
How to prepare for Accenture .NET Application Developer interview for experienced candidates?
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 Consulting, Business process, ASP.Net, SQL and MVC.
What are the top questions asked in Accenture .NET Application Developer interview for experienced candidates?

Some of the top questions asked at the Accenture .NET Application Developer interview for experienced candidates -

  1. If the class is declared as Sealed, can we inherit from it? What do we use it? ...read more
  2. Cursors in SQL, Is trigger really required? In what cases can we use it? Syntax...read more
  3. What is GC? Can we force GC to run? If yes, how to do ...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.6
 • 11.1k Interviews
Infosys Interview Questions
3.6
 • 7.9k Interviews
Wipro Interview Questions
3.7
 • 6.1k Interviews
Cognizant Interview Questions
3.7
 • 5.9k Interviews
Capgemini Interview Questions
3.7
 • 5.1k Interviews
Tech Mahindra Interview Questions
3.5
 • 4.1k Interviews
HCLTech Interview Questions
3.5
 • 4.1k Interviews
Genpact Interview Questions
3.7
 • 3.4k Interviews
IBM Interview Questions
4.0
 • 2.5k Interviews
DXC Technology Interview Questions
3.7
 • 841 Interviews
View all
Accenture .NET Application Developer Salary
based on 14 salaries
₹5 L/yr - ₹11.5 L/yr
39% more than the average .NET Application Developer Salary in India
View more details

Accenture .NET Application Developer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

4.0

Skill development

5.0

Work-life balance

5.0

Salary

4.0

Job security

4.0

Company culture

4.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Application Development Analyst
39.3k salaries
unlock blur

₹4.8 L/yr - ₹11 L/yr

Application Development - Senior Analyst
27.7k salaries
unlock blur

₹8.3 L/yr - ₹16.1 L/yr

Team Lead
26.6k salaries
unlock blur

₹12.6 L/yr - ₹22.5 L/yr

Senior Analyst
19.5k salaries
unlock blur

₹9.1 L/yr - ₹15.7 L/yr

Senior Software Engineer
18.5k salaries
unlock blur

₹10.4 L/yr - ₹18 L/yr

Explore more salaries
Compare Accenture with

TCS

3.6
Compare

Cognizant

3.7
Compare

Capgemini

3.7
Compare

Infosys

3.6
Compare
write
Share an Interview