Accenture
Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards
Filter interviews by
I applied via Approached by Company and was interviewed in Feb 2023. There was 1 interview round.
There are two types of cloning in Java: Shallow and Deep cloning.
Shallow cloning creates a new object with the same field values as the original object, but the fields refer to the same objects as the original object.
Deep cloning creates a new object with the same field values as the original object, but the fields refer to new copies of the original objects.
Shallow cloning can be done using the clone() method, while d...
Idempotent methods in REST are HTTP methods that can be repeated multiple times without changing the result beyond the initial application.
Idempotent methods are safe to retry or repeat without causing unintended side effects.
GET, HEAD, PUT, and DELETE are idempotent methods.
POST is not idempotent because it creates a new resource with a new URI each time it is called.
Idempotency is important for ensuring the reliabili
PUT is used to update an existing resource, while POST is used to create a new resource.
PUT replaces the entire resource with the new data, while POST appends the new data to the existing resource.
PUT is idempotent, meaning multiple identical requests will have the same effect as a single request, while POST is not.
PUT requires the client to specify the resource ID in the request URL, while POST does not.
Example: PUT /...
Hibernate provides two levels of caching: first-level cache and second-level cache.
First-level cache is enabled by default and is associated with a Session object.
Second-level cache is optional and can be configured to use different caching providers like Ehcache, Hazelcast, etc.
Caching can improve application performance by reducing the number of database queries.
Caching can also cause data inconsistency issues if not...
Hashcode and equals method are related in Java to ensure proper object comparison and hashing.
The hashcode method returns an integer value that represents the object's unique identifier.
The equals method compares two objects for equality and returns a boolean value.
If two objects are equal, their hashcodes must be equal as well.
If two objects have the same hashcode, it does not necessarily mean they are equal.
It is imp...
Program to find duplicate elements in an array list
Create a HashSet to store unique elements
Loop through the array list and add each element to the HashSet
If an element already exists in the HashSet, it is a duplicate
Add the duplicate element to another list or print it
Cascading in Hibernate refers to the ability to propagate the state of an entity to its associated entities.
Cascading is used to automatically persist, update, or delete associated entities when the state of the parent entity changes.
There are different types of cascading options available in Hibernate, such as ALL, PERSIST, MERGE, REMOVE, and REFRESH.
For example, if a parent entity has a collection of child entities a...
getSession() retrieves the current session while load() method loads the object by its identifier.
getSession() method is used to retrieve the current session from the session factory.
load() method is used to load the object by its identifier.
getSession() method returns null if there is no current session.
load() method throws an exception if the object is not found in the database.
getSession() method is used for read an...
HQL stands for Hibernate Query Language. It is an object-oriented query language used to retrieve data from a database.
HQL is similar to SQL but uses object-oriented concepts like inheritance, polymorphism, and association.
It is database independent and can be used with any database supported by Hibernate.
HQL queries are compiled to SQL queries at runtime, which makes it more efficient than using SQL directly.
It suppor...
XML validation can be done using XML Schema Definition (XSD) or Document Type Definition (DTD).
XSD is the preferred method for XML validation as it provides more features and is easier to use.
DTD is an older method and has limited features compared to XSD.
XML validation can be done using tools like XMLSpy, Notepad++, and online validators like W3C Markup Validation Service.
Validation can be done programmatically using ...
Methods of Object class in Java
toString() - returns a string representation of the object
equals(Object obj) - checks if two objects are equal
hashCode() - returns a hash code value for the object
getClass() - returns the runtime class of the object
wait() - causes the current thread to wait
notify() - wakes up a single thread that is waiting on the object
notifyAll() - wakes up all threads that are waiting on the object
Secure REST API using authentication, encryption, and authorization.
Use HTTPS protocol to encrypt data in transit
Implement authentication using tokens or OAuth2
Implement authorization using roles and permissions
Use input validation and output encoding to prevent injection attacks
Implement rate limiting to prevent DDoS attacks
Various authentication methods can be used to secure REST API, including OAuth, JWT, Basic Authentication, and API Keys.
OAuth is a popular authentication method that allows users to grant access to third-party applications without sharing their credentials.
JWT (JSON Web Tokens) is a stateless authentication mechanism that uses a token to authenticate users.
Basic Authentication uses a username and password to authentica...
Exceptions in REST are handled using try-catch blocks and HTTP status codes.
Use try-catch blocks to catch exceptions thrown by the application
Map exceptions to appropriate HTTP status codes
Return error messages in the response body
Use global exception handlers to handle uncaught exceptions
Avoid returning sensitive information in error messages
Arrays use a linear data structure while HashMap uses a key-value pair data structure.
Arrays are indexed collections of elements of the same data type.
HashMaps store key-value pairs and allow for fast retrieval of values based on their keys.
Arrays have a fixed size while HashMaps can dynamically resize.
Arrays are more efficient for simple data structures while HashMaps are better for complex data structures.
SQL injection is a type of cyber attack where malicious SQL statements are inserted into an entry field to manipulate the database.
SQL injection can be used to steal sensitive information, modify or delete data, or even take control of the entire database.
It can be prevented by using parameterized queries, input validation, and limiting user privileges.
Example: Entering ' OR 1=1;--' in a login form can bypass authentic...
Synchronized keyword is used to control access to shared resources in a multithreaded environment.
It ensures that only one thread can access the shared resource at a time.
It can be applied to methods or blocks of code.
It can cause performance issues if used excessively.
Example: synchronized void myMethod() { //code }
Example: synchronized(this) { //code }
String is immutable while StringBuffer is mutable.
StringBuffer is faster for concatenation operations.
StringBuffer has methods to modify the string while String does not.
StringBuffer is thread-safe while String is not.
Example: String str = "hello"; StringBuffer sb = new StringBuffer(str); sb.append(" world");
Example: String str = "hello"; str.concat(" world"); // returns a new string, original string is not modified.
Design patterns are reusable solutions to common software problems.
Design patterns help in creating flexible, reusable, and maintainable code.
Some popular design patterns in Java are Singleton, Factory, Observer, and Decorator.
Singleton pattern ensures that only one instance of a class is created.
Factory pattern provides an interface for creating objects in a superclass, but allows subclasses to alter the type of objec...
Reflection API in Java allows inspection and modification of runtime behavior of a program.
Reflection API provides classes like Class, Method, Field, Constructor, etc. to inspect and modify the behavior of a program at runtime.
It can be used to access private fields and methods of a class.
It can be used to create new instances of a class dynamically.
It can be used to invoke methods of a class dynamically.
It can be used...
I appeared for an interview in Feb 2025.
I'm interested fresher HR manager
I'm interested fresher HR manager best performance
I'm interested fresher HR manager best conference
I applied via Naukri.com and was interviewed in Dec 2024. There was 1 interview round.
The number of variances in SAP can vary depending on the specific processes and transactions being analyzed.
The number of variances in SAP can be influenced by factors such as data entry errors, system glitches, or discrepancies in invoice processing.
Variances in SAP may be identified through reconciliation processes, exception reports, or manual reviews of accounts payable transactions.
Examples of variances in SAP inc...
Accounts receivable and accounts payable are two important aspects of a company's financial operations.
Accounts receivable refers to money owed to a company by its customers for goods or services provided.
Accounts payable refers to money owed by a company to its suppliers or vendors for goods or services received.
Accounts receivable is an asset on the balance sheet, while accounts payable is a liability.
Managing accoun...
Cost element and cost center are key concepts in accounting for tracking and allocating costs within an organization.
Cost element refers to the specific types of costs incurred by an organization, such as materials, labor, or overhead.
Cost center is a specific department, team, or function within an organization that is responsible for incurring costs.
Cost elements are assigned to cost centers to track and allocate cos...
SAP supports over 160 currencies worldwide.
SAP supports over 160 currencies for global transactions.
Currencies can be configured in SAP using transaction code OB22.
Each currency is assigned a unique currency code (e.g. USD for US Dollar, EUR for Euro).
There are various types of projects, including internal projects, external projects, research projects, and development projects.
Internal projects focus on improving processes within the organization.
External projects involve working with external partners or clients.
Research projects aim to gather data and analyze findings.
Development projects focus on creating new products or services.
Examples: IT system implementati...
What people are saying about Accenture
Aptitude test consists 2 section first section is of of Logical reasoning , Verbal reasoning and Analytical Reasoning
and next section is of technical mcqs MS office , cloud , networking and security , Pseudo code related mcqs
After that there were
Data Structures and Algorithms was the most difficult subject for me in my curriculum.
I struggled with understanding complex data structures like graphs and trees.
I overcame this by seeking help from professors, classmates, and online resources.
I practiced solving problems regularly on platforms like LeetCode and HackerRank.
I also joined study groups to discuss and work on challenging problems together.
Developed a web application for managing student records using HTML, CSS, JavaScript, and PHP
Used HTML for structuring the web pages
Utilized CSS for styling the pages and making them visually appealing
Implemented client-side functionality using JavaScript
Backend logic and database management done with PHP
Included features like student registration, course enrollment, and grade tracking
Accenture interview questions for popular designations
I appeared for an interview in Dec 2024.
-Basic Accounting questions like simple journals , Accounting principles and concepts.
-Basic Excel tasks like questions (commonly used simple formulas ,chart preparation, pivot tables
etc,)
-Email writing.
-Simple Aptitude and Logical Reasoning questions.
Prepare well and try to attend maximum questions with better accuracy. Overall aptitude test is simple.
I am a detail-oriented professional with experience in R2R processes and a strong focus on accuracy and efficiency.
Experienced in reconciling accounts and preparing financial statements
Proficient in using accounting software such as SAP and Oracle
Strong analytical skills and ability to identify and resolve discrepancies
Excellent communication skills and ability to work effectively in a team
Bachelor's degree in Accounti
Accrual concept refers to recognizing revenues and expenses when they are incurred, regardless of when cash is exchanged.
Accrual concept is a fundamental accounting principle that states that revenues and expenses should be recognized when they are incurred, not when cash is exchanged.
This concept helps in providing a more accurate representation of a company's financial position and performance.
For example, if a compa...
Deferral accounting recognizes revenue or expenses when they are earned or incurred, while accrual accounting recognizes revenue or expenses when they are realized or incurred.
Deferral accounting involves postponing the recognition of revenue or expenses until a later period.
Accrual accounting involves recognizing revenue or expenses when they are incurred, regardless of when cash is exchanged.
Deferral accounting is co...
Accrual and deferral transactions involve recording revenues or expenses before or after they are actually earned or incurred.
Accrual transactions involve recording revenues or expenses before they are actually earned or incurred
Deferral transactions involve recording revenues or expenses after they are actually earned or incurred
Examples of accrual transactions include recognizing revenue for services provided but not...
Bank reconciliation is the process of comparing a company's records with those of the bank to ensure they match.
Gather bank statements and company records
Compare deposits, withdrawals, and fees on both sets of records
Identify and resolve any discrepancies
Adjust the company's records to match the bank's records
Prepare a bank reconciliation statement to document the process
Example: If the company recorded a deposit of $5...
Depreciation is the allocation of the cost of tangible assets over their useful life, while amortization is the allocation of the cost of intangible assets over their useful life.
Depreciation applies to tangible assets like buildings, machinery, and vehicles, while amortization applies to intangible assets like patents, copyrights, and trademarks.
Depreciation is usually calculated using methods like straight-line, doub...
Provisions are liabilities that are certain to occur, while contingencies are potential liabilities that may or may not occur.
Provisions are recognized when the amount is known with reasonable certainty, while contingencies are disclosed in the financial statements as a footnote.
Provisions are measured at the best estimate of the amount required to settle the obligation, while contingencies are disclosed if the outcome...
Get interview-ready with Top Accenture Interview Questions
I am a detail-oriented Sourcing Analyst with a strong background in procurement and vendor management.
Over 5 years of experience in strategic sourcing and contract negotiation
Proficient in analyzing market trends and supplier performance
Skilled in cost reduction strategies and supplier relationship management
I have 5 years of experience as a Sourcing Analyst in the retail industry.
Managed vendor relationships and negotiated contracts
Analyzed market trends and pricing to make strategic sourcing decisions
Implemented cost-saving initiatives resulting in a 10% reduction in procurement costs
Collaborated with cross-functional teams to ensure supply chain efficiency
The P2P cycle refers to the process of procuring goods or services, receiving them, and paying for them.
The cycle starts with identifying the need for a product or service and creating a purchase requisition.
Next, the purchase requisition is approved and converted into a purchase order.
The supplier delivers the goods or services, which are then received and inspected by the buyer.
Once the goods/services are accepted, a...
I am a detail-oriented Sourcing Analyst with a strong background in procurement and supplier management.
Experienced in analyzing supplier performance and negotiating contracts
Skilled in identifying cost-saving opportunities and improving supply chain efficiency
Proficient in using sourcing tools and software such as SAP Ariba
Strong communication and interpersonal skills for building relationships with suppliers
I appeared for an interview in Jan 2025.
I appeared for an interview in Feb 2025.
Debit note is a document issued by a buyer to a seller to request a credit for overpayment or return of goods. Credit note is a document issued by a seller to a buyer to reduce the amount owed due to overpayment or return of goods.
Debit note is issued by the buyer to request a credit from the seller.
Credit note is issued by the seller to reduce the amount owed by the buyer.
Debit note is used when there is an overpaymen...
Matching principle is an accounting concept that requires expenses to be matched with revenues in the period they are incurred.
Expenses should be recorded in the same period as the revenues they helped generate.
It ensures accurate financial reporting by showing the true cost of generating revenue.
Example: If a company sells products in January, the cost of goods sold for those products should also be recorded in Januar...
A subledger is a detailed record of transactions that feed into the general ledger.
Subledgers provide more detailed information on specific accounts or categories.
They help in tracking individual transactions before they are summarized in the general ledger.
Examples include accounts receivable subledger, accounts payable subledger, and inventory subledger.
Bank reconciliation statement is a document that compares the bank's records with the company's records of its bank account.
It is used to ensure the accuracy of the company's financial records.
It lists out any discrepancies between the two sets of records, such as outstanding checks or deposits in transit.
The goal is to reconcile the balance per the company's records with the balance per the bank's records.
It helps in ...
I appeared for an interview in Jan 2025.
Polymorphism is the ability of a single function or method to operate on different data types.
Allows objects of different classes to be treated as objects of a common superclass.
Can be achieved through method overloading or method overriding.
Example: Animal class with methods eat() and sleep(), and subclasses like Dog and Cat that override these methods.
The == operator checks for equality of values, while the equals() method checks for equality of objects.
The == operator compares the values of two objects, while the equals() method compares the objects themselves.
The == operator is used for primitive data types, while the equals() method is used for objects.
Example: int a = 5; int b = 5; a == b will return true, but a.equals(b) will not work as int is a primitive data
Dependency inversion is a design principle where high-level modules should not depend on low-level modules, but both should depend on abstractions.
High-level modules should not depend on low-level modules, both should depend on abstractions
Abstractions should not depend on details, details should depend on abstractions
Inversion of control containers like Spring Framework in Java implement dependency inversion
ACID is a set of properties that guarantee database transactions are processed reliably.
ACID stands for Atomicity, Consistency, Isolation, Durability
Atomicity ensures that all operations in a transaction are completed successfully or none at all
Consistency ensures that the database remains in a valid state before and after the transaction
Isolation ensures that multiple transactions can occur concurrently without affect...
Isolation levels in databases determine how transactions interact with each other.
Isolation levels define the degree to which one transaction must be isolated from the effects of other transactions.
Common isolation levels include READ UNCOMMITTED, READ COMMITTED, REPEATABLE READ, and SERIALIZABLE.
Higher isolation levels provide more data consistency but may impact performance.
For example, in READ COMMITTED isolation le...
I applied via Recruitment Consulltant and was interviewed in Oct 2024. There was 1 interview round.
Some other CRMs include Salesforce, Microsoft Dynamics, and Zoho CRM.
Salesforce is a popular CRM used by many companies for sales and marketing purposes.
Microsoft Dynamics is known for its integration with other Microsoft products and its customization options.
Zoho CRM is a cloud-based CRM solution that offers a wide range of features for managing customer relationships.
Yes, I am comfortable with Marketing CRM capabilities and have experience in building and utilizing them.
I have experience in implementing and customizing Marketing CRM systems to meet business needs.
I have utilized Marketing CRM capabilities to track customer interactions, manage campaigns, and analyze data for insights.
I have integrated Marketing CRM with other systems to streamline processes and improve efficiency.
O...
Plugins are custom code that can be added to extend functionality, while workflows are automated processes that can be triggered by events.
Plugins are custom code that can be added to extend the functionality of a system.
Workflows are automated processes that can be triggered by events in a system.
Plugins can be used to add new features or customize existing ones.
Workflows can automate repetitive tasks and streamline p...
Canvas Apps are highly customizable and visually rich, while Model Driven Apps are more structured and data-driven. Both can be integrated with CRM using customizations.
Canvas Apps allow for more flexibility in design and layout, with drag-and-drop functionality for components.
Model Driven Apps are more focused on data and business processes, with a predefined data model and UI components.
Both types of apps can be cust...
I hold Microsoft certifications in Azure and SQL Server. No pending renewals.
Certifications in Azure and SQL Server
No pending renewals
Power BI helps in visualizing data through interactive and customizable dashboards.
Power BI allows users to create visually appealing charts, graphs, and maps to represent data in a meaningful way.
Basic dashboards in Power BI typically include simple visuals like bar charts, line graphs, and pie charts to display key metrics.
Advanced dashboards in Power BI involve more complex visuals like heat maps, scatter plots, and...
I have worked with over 20 connectors in Power Apps, including SharePoint, Outlook, and SQL Server.
Worked with over 20 connectors in Power Apps
Familiar with connectors such as SharePoint, Outlook, and SQL Server
I have extensive experience with C#, .Net, and SQL.
Over 5 years of hands-on experience with C# and .Net development
Proficient in writing complex SQL queries and stored procedures
Experience in optimizing database performance and data modeling
Familiar with Entity Framework and LINQ for data access
Developed multiple web applications using ASP.NET MVC framework
Implemented a CRM project for a retail company to streamline customer interactions and improve sales.
Analyzed business requirements and designed the CRM system architecture
Customized CRM software to fit the specific needs of the retail company
Integrated CRM with existing systems for seamless data flow
Trained end users on how to effectively use the CRM system
Implemented data analytics tools to track customer interaction
Yes, I have explored AI features integrating with CRM and I believe Copilot capabilities can greatly enhance productivity and efficiency.
I have experience implementing AI chatbots for customer service in CRM systems
AI features can automate repetitive tasks, improve data accuracy, and provide personalized customer interactions
Copilot capabilities can assist users in making data-driven decisions and predicting customer b...
Marketing CRM includes customer data management, campaign tracking, lead generation, and customer engagement.
Customer data management involves storing and organizing customer information such as contact details, purchase history, and preferences.
Campaign tracking allows marketers to monitor the performance of their marketing campaigns, including metrics like open rates, click-through rates, and conversions.
Lead generat...
Workflows are a series of tasks that are automated to achieve a specific goal, while Power Automate is a tool that allows users to create automated workflows.
Workflows are a sequence of tasks that are executed in a specific order to achieve a desired outcome
Power Automate is a platform that enables users to automate workflows across various applications and services
Workflows can be manual or automated, while Power Auto...
Yes, in C# you can quickly write code to a plugin using classes.
Yes, in C# you can quickly write code to a plugin by creating a class that implements a specific interface or inherits from a base class.
Classes in C# are blueprints for creating objects. They can contain fields, properties, methods, events, and more.
For example, you can create a plugin interface and then create a class that implements that interface to wr
The duration of Accenture interview process can vary, but typically it takes about less than 2 weeks to complete.
based on 7k interviews
Interview experience
based on 58.6k reviews
Rating in categories
Kolkata,
Chandigarh
+70-5 Yrs
₹ 2.25-4 LPA
Application Development Analyst
39k
salaries
| ₹3 L/yr - ₹12 L/yr |
Application Development - Senior Analyst
27.4k
salaries
| ₹7 L/yr - ₹20.2 L/yr |
Team Lead
24.8k
salaries
| ₹7.2 L/yr - ₹25.9 L/yr |
Senior Software Engineer
18.2k
salaries
| ₹6 L/yr - ₹20 L/yr |
Senior Analyst
17.9k
salaries
| ₹5.5 L/yr - ₹21.3 L/yr |
TCS
Cognizant
Capgemini
Infosys