Accenture
Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards
Filter interviews by
I applied via Referral and was interviewed in Oct 2024. There was 1 interview round.
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...
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...
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...
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...
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 ...
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 ...
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...
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
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.
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
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
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
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
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
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.
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...
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...
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...
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
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
posted on 17 Dec 2024
I applied via Naukri.com and was interviewed in Nov 2024. There was 1 interview round.
Developed a web-based inventory management system for a retail company
Utilized Java for backend development
Implemented responsive design using HTML, CSS, and JavaScript
Integrated barcode scanning functionality for efficient inventory tracking
I was responsible for providing technical support to end users and troubleshooting application issues within the team.
Providing technical support to end users
Troubleshooting application issues
Collaborating with team members to resolve issues
Documenting solutions and best practices
posted on 6 Jan 2025
Sage is not a front end programming language. It is a popular accounting software.
Sage is an accounting software used by businesses for financial management.
It is not a programming language, but rather a software application.
Front end programming languages include HTML, CSS, and JavaScript.
Sage may have APIs that allow integration with front end technologies.
Users commonly complain about slow performance, errors during updates, and difficulty in customization on Sage.
Slow performance when running reports or processing large amounts of data
Errors encountered during software updates or installations
Difficulty in customizing the software to meet specific business needs
Issues with integration with other software applications
Lack of user-friendly interface leading to confusion
posted on 28 Oct 2024
I applied via Naukri.com and was interviewed in Sep 2024. There were 2 interview rounds.
I applied via Recruitment Consulltant and was interviewed in Sep 2024. There was 1 interview round.
posted on 2 May 2024
I applied via Campus Placement
SDLC stands for Software Development Life Cycle, a process used by software development teams to design, develop, and test high-quality software.
SDLC is a structured process that consists of several phases such as planning, analysis, design, implementation, testing, and maintenance.
Each phase has its own set of activities and deliverables that contribute to the overall success of the project.
SDLC helps ensure that the ...
Core concepts of Object Oriented Programming include encapsulation, inheritance, and polymorphism.
Encapsulation: Bundling data and methods that operate on the data into a single unit (object).
Inheritance: Allowing a new class to inherit properties and behavior from an existing class.
Polymorphism: The ability for objects of different classes to respond to the same message in different ways.
Example: Inheritance - A 'Car'...
I applied via Naukri.com and was interviewed in Oct 2023. There were 3 interview rounds.
My work involves analyzing requirements, designing solutions, coding, testing, and deploying applications.
Analyze requirements provided by stakeholders
Design solutions based on requirements
Code the application using appropriate programming languages
Test the application for bugs and errors
Deploy the application to production environment
Difficulty was not that hard it was easy of you got your aptitude skills
I applied via Naukri.com and was interviewed before Jul 2022. There were 4 interview rounds.
Genral and english aptitude test
Apps have become an integral part of our daily lives, helping us with various tasks and activities.
Apps help us stay organized by managing our schedules and to-do lists.
They provide entertainment through games, music, and video streaming services.
Apps facilitate communication through social media platforms and messaging apps.
They assist in navigation with GPS and mapping apps.
Apps enable online shopping and banking, ma...
Categories in apps include social media, productivity, entertainment, health & fitness, education, finance, and communication.
Social media apps (e.g. Facebook, Instagram, Twitter)
Productivity apps (e.g. Microsoft Office, Trello, Evernote)
Entertainment apps (e.g. Netflix, Spotify, YouTube)
Health & fitness apps (e.g. Fitbit, MyFitnessPal, Headspace)
Education apps (e.g. Duolingo, Khan Academy, Quizlet)
Finance apps (e.g. M...
Sub categories in apps are smaller categories within a main category that help organize and navigate content more efficiently.
Sub categories help users easily find specific content within an app
They can be used to group similar features or functions together
Examples include sub categories like 'Settings', 'Notifications', 'Profile' within a main category like 'Account'
Some of the top questions asked at the Accenture .NET Application Developer interview -
based on 1 interview
Interview experience
based on 1 review
Rating in categories
Application Development Analyst
38.9k
salaries
| ₹3 L/yr - ₹12 L/yr |
Application Development - Senior Analyst
27k
salaries
| ₹6.9 L/yr - ₹20.2 L/yr |
Team Lead
24.3k
salaries
| ₹7.1 L/yr - ₹25.7 L/yr |
Senior Software Engineer
18.3k
salaries
| ₹6 L/yr - ₹19.5 L/yr |
Software Engineer
17.5k
salaries
| ₹3.6 L/yr - ₹13.4 L/yr |
TCS
Cognizant
Capgemini
Infosys