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

 (241)

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 appeared for an interview before Sep 2016.

Interview Preparation Tips

Round: Group Discussion
Experience: Interview was scheduled in Grab Job consultancy. In that, a class room, where we all asked to sit and interviewer was sitting in front and asked to speak one by one on the topic traffic situation in Hyderabad.
Tips: Just speak once two to three lines. Don't rush to speak. Take ur time and don't try speak repeatedly.
Duration: 35 minutes

Round: Technical Interview
Experience: System based test. Easy question from java , c, data structure.

Round: HR Interview
Experience: Not held because already we got too late.

Skills: Proficiency In English, Basic Coding
College Name: Medak College of engineering

I appeared for an interview in Mar 2017.

Interview Questionnaire 

5 Questions

  • Q1. Oops concepts in Java?
  • Ans. 

    Oops concepts in Java

    • Encapsulation - hiding implementation details

    • Inheritance - reusing code and creating parent-child relationships

    • Polymorphism - multiple forms of a method or object

    • Abstraction - creating abstract classes and interfaces

    • Example: Encapsulation - using private variables and public methods

    • Example: Inheritance - creating a subclass that inherits from a superclass

    • Example: Polymorphism - using method overloa...

  • Answered by AI
  • Q2. Altering columns in Databases?
  • Ans. 

    Altering columns in databases involves modifying the structure of a table by adding, deleting or modifying columns.

    • Use ALTER TABLE statement to modify columns

    • Add new columns using ADD COLUMN

    • Delete columns using DROP COLUMN

    • Modify columns using MODIFY COLUMN

    • Changing column data type may result in data loss

  • Answered by AI
  • Q3. Asked some queries in SQL
  • Q4. Reversing a number in java?
  • Ans. 

    Reversing a number in Java

    • Convert the number to a string

    • Use StringBuilder to reverse the string

    • Convert the reversed string back to a number

  • Answered by AI
  • Q5. Extracting words from a line in java?
  • Ans. 

    To extract words from a line in Java, split the line using whitespace as delimiter.

    • Use the split() method of String class

    • Pass the whitespace regex as argument to split() method

    • Iterate over the resulting array to get individual words

  • Answered by AI

Interview Preparation Tips

Round: Technical Interview
Experience: Started with the question "Tell me about yourself". Asked me about Core Java. Asked to solve some questions related to Java and SQL.
Tips: Be prepared with high knowledge in Java, Data Structures and SQL.

Skills: Java Programming, Data Strrutures, SQL
College Name: IIITDM Jabalpur

Skills evaluated in this interview

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.5 L/yr - ₹11.5 L/yr
29% more than the average DOT NET Developer Salary in India
View more details

Accenture DOT NET Developer Reviews and Ratings

based on 9 reviews

4.5/5

Rating in categories

4.5

Skill development

4.7

Work-life balance

4.5

Salary

4.1

Job security

4.5

Company culture

4.2

Promotions

4.6

Work satisfaction

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

₹3 L/yr - ₹12 L/yr

Application Development - Senior Analyst
27.4k salaries
unlock blur

₹6.9 L/yr - ₹20.2 L/yr

Team Lead
24.6k salaries
unlock blur

₹7.1 L/yr - ₹26 L/yr

Senior Software Engineer
18.2k salaries
unlock blur

₹6 L/yr - ₹20 L/yr

Senior Analyst
17.7k salaries
unlock blur

₹5.5 L/yr - ₹21.3 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