Upload Button Icon Add office photos

Accenture

Compare button icon Compare button icon Compare

Filter interviews by

Accenture DOT NET Developer Interview Questions, Process, and Tips

Updated 27 Aug 2024

Top Accenture DOT NET Developer Interview Questions and Answers

View all 7 questions

Accenture DOT NET Developer Interview Experiences

8 interviews found

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

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

Round 1 - Technical 

(4 Questions)

  • Q1. Code excution of .net application?
  • Ans. 

    The .NET application code is compiled into Intermediate Language (IL) which is then executed by the Common Language Runtime (CLR).

    • Code is compiled into Intermediate Language (IL) by the compiler

    • IL is then converted into machine code by the Just-In-Time (JIT) compiler

    • The CLR manages memory, security, and other system resources during code execution

  • Answered by AI
  • Q2. Stored procedure vs function?
  • Ans. 

    Stored procedures are precompiled SQL queries that can perform multiple operations, while functions are reusable code blocks that return a single value.

    • Stored procedures can execute multiple SQL statements and can perform complex operations.

    • Functions are reusable code blocks that return a single value and can be used in SQL queries.

    • Stored procedures can be called independently, while functions are typically called with...

  • Answered by AI
  • Q3. What is CLR, Why its used?
  • Ans. 

    CLR stands for Common Language Runtime, it is used to manage the execution of .NET programs.

    • CLR is a part of the .NET framework responsible for managing the execution of .NET programs.

    • It provides services such as memory management, exception handling, and security.

    • CLR converts the Intermediate Language (IL) code into machine code during runtime.

    • It allows for language interoperability, meaning different languages can be...

  • Answered by AI
  • Q4. What is GC, where you have used in the app?
  • Ans. 

    GC stands for Garbage Collection, a process in .NET to automatically manage memory by reclaiming unused objects.

    • GC is a feature in .NET that automatically manages memory by reclaiming unused objects.

    • It helps in preventing memory leaks and improving application performance.

    • GC can be used in .NET applications to free up memory occupied by objects that are no longer needed.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Fundamentals should be strong and in communicating better

Skills evaluated in this interview

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

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

Round 1 - Technical 

(1 Question)

  • Q1. Basics of C# and sql server, struct,object vs var, palindrome, find max salary

DOT NET Developer Interview Questions Asked at Other Companies

asked in Infosys
Q1. What is the difference between windows application development an ... read more
Q2. What is Trigger,Store procedure, join in sql query and their synt ... read more
asked in Infosys
Q3. What kind of database you used in projects
Q4. How many ways are there to send data to controller from View?
asked in Nagarro
Q5. Can Two Primary keys can be made possible in Sql Table ?
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Basics c#, .net core, angular , sql

Interview Preparation Tips

Interview preparation tips for other job seekers - Great interview experience
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Covered all areas of dot net developments
  • Q2. C#,oops,entity framework,.net mvc,sql server

Accenture interview questions for designations

 Dot Net Fullstack Developer

 (4)

 Senior .NET Developer

 (2)

 .NET Application Developer

 (1)

 NET

 (1)

 Developer

 (9)

 .NET Architect

 (1)

 Application Developer

 (258)

 Software Developer

 (238)

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

I applied via Naukri.com and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - Technical 

(6 Questions)

  • Q1. Tell me about yourself
  • Q2. Oops concepts : polymorphism, inheritance, abstract class vs interface with example
  • Q3. Viewbag, viewdata, tempdata
  • Q4. Primary key, foreign key
  • Q5. Experience of leading team(if applied)
  • Q6. Challenges you faced while leading a team
Round 2 - Technical 

(4 Questions)

  • Q1. Solid principles
  • Q2. Design patterns
  • Q3. Oops concepts like inheritance and polymorphism
  • Q4. Sql query based on self join

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare oops concepts and design patterns properly and also make sure you have basics clear about asp.net mvc and sql

Get interview-ready with Top Accenture Interview Questions

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

I applied via Job Portal and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. 1)Asked about past company projects and the technical issues faced during that time. 2) Difference between varchar and nvarchar 3) Abstraction real time example 4) About polymorphism and its types 5)Solid ...
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Dec 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 

(1 Question)

  • Q1. Write down the SQL query
  • Ans. 

    SQL query example

    • Specify the table name after the FROM keyword

    • Use WHERE clause to filter data

    • Use SELECT to choose columns to display

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Discuss my technical knowledge and general knowledge

Interview Preparation Tips

Topics to prepare for Accenture DOT NET Developer interview:
  • MS SQL Server
  • C#.Net
  • MVC frameworks
Interview preparation tips for other job seekers - We are prepared in Technical and be confident do not panic

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Jun 2022. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is boxing and unboxing
  • Ans. 

    Boxing is the process of converting a value type to the object type, while unboxing is the reverse process.

    • Boxing is done implicitly when a value type is assigned to an object variable.

    • Unboxing is done explicitly by casting the object back to its original value type.

    • Boxing and unboxing can have performance implications and should be used judiciously.

    • Example: int num = 10; object obj = num; // Boxing, converting int to ...

  • Answered by AI
  • Q2. What is oops? Oops is a object oriented programing system
  • Ans. 

    Object-oriented programming (OOP) is a programming paradigm that uses objects to represent and manipulate data.

    • OOP focuses on creating reusable code by organizing data and behavior into objects.

    • It emphasizes concepts like encapsulation, inheritance, and polymorphism.

    • Objects have attributes (data) and methods (functions) that can interact with each other.

    • Example: In C#, classes are used to define objects and their prope

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Iam good in asp. Net ado. Net html oops sql server

Interview questions from similar companies

I applied via Company Website and was interviewed before Dec 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions on Java,SQL,some trending technologies(IOT,Big data),pattern questions, programming questions with different approaches.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics of DSA, have knowledge about the databases, some common dml ,ddl statements, programming knowledge of a particular language like C,Java, python,etc...have good command on oops concepts... little bit of frameworks knowledge will also help

I applied via Newspaper Ad and was interviewed before Jun 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 
Round 2 - Technical 

(1 Question)

  • Q1. Basic questions of java.
Round 3 - HR 

(1 Question)

  • Q1. Intro and other hr related questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Cover the basic questions regarding the programming language.

Accenture Interview FAQs

How many rounds are there in Accenture DOT NET Developer interview?
Accenture interview process usually has 1-2 rounds. The most common rounds in the Accenture interview process are Technical, Resume Shortlist and HR.
How to prepare for Accenture DOT NET Developer 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 .Net, ASP, Entity Framework, SQL Server and Visual Studio.
What are the top questions asked in Accenture DOT NET Developer interview?

Some of the top questions asked at the Accenture DOT NET Developer interview -

  1. What is oops? Oops is a object oriented programing sys...read more
  2. What is GC, where you have used in the a...read more
  3. Write down the SQL qu...read more

Tell us how to improve this page.

Accenture DOT NET Developer Interview Process

based on 7 interviews

1 Interview rounds

  • Technical Round
View more
Accenture DOT NET Developer Salary
based on 97 salaries
₹3.6 L/yr - ₹11.5 L/yr
32% more than the average DOT NET Developer Salary in India
View more details

Accenture DOT NET Developer Reviews and Ratings

based on 8 reviews

4.2/5

Rating in categories

4.2

Skill development

4.5

Work-life balance

4.1

Salary

3.5

Job security

4.1

Company culture

3.7

Promotions

4.4

Work satisfaction

Explore 8 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.2k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

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