Upload Button Icon Add office photos

Accenture

Compare button icon Compare button icon Compare

Filter interviews by

Accenture .NET Application Developer Interview Questions, Process, and Tips

Updated 17 Nov 2024

Accenture .NET Application Developer Interview Experiences

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 Recruitment Consultant and was interviewed before May 2020. There were 3 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Java Spring Boot Structure
  • Q2. Design a complete solution with Java Spring boot, Spring Data, DB Integration
  • Ans. 

    Design a solution with Java Spring boot, Spring Data, DB Integration

    • Create a Spring Boot project with Spring Data dependency

    • Configure the database connection in application.properties

    • Create entity classes with JPA annotations

    • Create repository interfaces extending JpaRepository

    • Use repository methods in service classes

    • Expose REST endpoints using @RestController

    • Handle exceptions using @ControllerAdvice

    • Secure endpoints usi...

  • Answered by AI
  • Q3. OOPS Concepts
  • Q4. Maven Build and Deployment
  • Q5. Angular build and deployment

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself and answer exactly to the point.
No hamming or going around.

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Tell me about yourself ?

I applied via Recruitment Consultant and was interviewed before Oct 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. What is Abstraction
  • Ans. 

    Abstraction is the process of hiding complex implementation details and exposing only the necessary information.

    • Abstraction helps in reducing complexity and increasing efficiency.

    • It allows us to focus on the essential features of an object or system.

    • Abstraction can be achieved through abstract classes, interfaces, and encapsulation.

    • For example, a car can be abstracted as a vehicle with certain properties and methods.

    • Ab...

  • Answered by AI
  • Q2. Concept of hiding implementation
  • Ans. 

    Hiding implementation means keeping the internal details of a class or function hidden from the outside world.

    • It is a fundamental principle of object-oriented programming.

    • It helps in achieving encapsulation and abstraction.

    • It prevents the user from accessing the internal workings of a class or function.

    • Examples include private variables and methods in a class.

    • It allows for easier maintenance and modification of code.

    • It...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Not bad, good atmosphere, positive response from staff

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

Software Developer Interview Questions & Answers

Capgemini user image Dwarkesh Maheshwari

posted on 23 Sep 2017

I appeared for an interview in Sep 2017.

Interview Questionnaire 

1 Question

  • Q1. Basic c questions and sorting Then about projects

Interview Preparation Tips

Round: Test
Experience: Basic apti questions
But reasoning was tricky
Tips: Don't waste time
Duration: 1 hour
Total Questions: 32

Round: Technical test
Experience: Basic c question
SQL questions
Tips: Must have deep knowledge in c

Round: Technical Interview
Experience: Briefly explain my project and then successfully answerd questions asked
Tips: Complete knowledge of your project

College Name: KIET

Interview Questionnaire 

1 Question

  • Q1. What is the advantage of generic collection, when and why we should approach for that?
  • Ans. 

    Generic collections provide type safety and reusability in software development.

    • Generic collections allow us to store and manipulate objects of any type in a type-safe manner.

    • They provide compile-time type checking, reducing the chances of runtime errors.

    • They promote code reusability by allowing the same collection to be used with different types.

    • Generic collections improve performance by eliminating the need for boxin...

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: It was and off campus drive, first round was written test on computer as MCQ.
Aptitude, reasoning, English and programming sudo codes.
60 questions 90 minutes.
Duration: 2 hours 30 minutes
Total Questions: 60

Round: Group Discussion
Experience: It was a very interesting round, we were given sufficient time to think about topic.
First we were asked to speak individually on the topic ,later panel member asked is to make same topic as debate.
Tips: Don't sit silent, if you are not getting a chance to speak, you can interrupt to the people and seek a chance to put your point.
Duration: 30 minutes

Round: Technical + HR Interview
Tips: Be confident and tell the exact you know, don't try make customised concepts.
Try to drag interviewer towards the fields of your strength.

I appeared for an interview before Jun 2016.

Interview Questionnaire 

4 Questions

  • Q1. Tell me something about yourself
  • Ans. 

    I am a passionate software developer with 5 years of experience in web development and a strong background in computer science.

    • 5 years of experience in web development

    • Strong background in computer science

    • Passionate about software development

  • Answered by AI
  • Q2. Questions related to project I have worked on during college days
  • Q3. Core Java concepts
  • Q4. Why do you use two mobile numbers
  • Ans. 

    To separate personal and professional calls, and to ensure availability and accessibility.

    • Separate personal and professional calls

    • Ensure availability and accessibility

    • Maintain work-life balance

    • Avoid mixing personal and work-related contacts

  • Answered by AI

Interview Preparation Tips

Round: Test
Total Questions: 60

College Name: Watumull Institute Of Electronics Engineering And Computer Technology ( WIEECT )

I appeared for an interview in Jul 2017.

Interview Questionnaire 

1 Question

  • Q1. Android basics and programs

Interview Preparation Tips

Round: Resume Shortlist
Experience: Resume shortlisted on the basis of 60% through out and experience in development more than 6 months.

Round: Technical Interview
Experience: Core java.. String, oops, exception,

Round: HR Interview
Experience: As usual.. tell me about your self.expectations and salary discussion.
Tips: Be confident whatever you say.

Accenture Interview FAQs

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

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

  1. If the class is declared as Sealed, can we inherit from it? What do we use it? ...read more
  2. What is GC? Can we force GC to run? If yes, how to do ...read more
  3. What is abstract class? What is interface? Difference between both and when do ...read more

Tell us how to improve this page.

Accenture .NET Application Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.6k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Cognizant Interview Questions
3.7
 • 5.6k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
HCLTech Interview Questions
3.5
 • 3.9k Interviews
Genpact Interview Questions
3.8
 • 3.2k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
DXC Technology Interview Questions
3.7
 • 802 Interviews
View all
Accenture .NET Application Developer Salary
based on 14 salaries
₹4.5 L/yr - ₹11.5 L/yr
42% 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
39k 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.7k 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.8k salaries
unlock blur

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