Upload Button Icon Add office photos

Accenture

Compare button icon Compare button icon Compare

Filter interviews by

Accenture Interview Questions, Process, and Tips

Updated 28 Mar 2025

Top Accenture Interview Questions and Answers

View all 4k questions

Accenture Interview Experiences

Popular Designations

8.3k interviews found

Quality Analyst Interview Questions & Answers

user image Sathvika Nagareddy

posted on 11 Mar 2025

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected
Round 1 - Aptitude Test 

Aptitude questions choose the multiple answers

Round 2 - Coding Test 

Technical coding which choose the multiple answers

Round 3 - One-on-one 

(2 Questions)

  • Q1. Regarding the skill enhancement
  • Q2. Regarding the company overview

Top Accenture Quality Analyst Interview Questions and Answers

Q1. What is product backlog and defect triage
View answer (1)

Quality Analyst Interview Questions asked at other Companies

Q1. How you will maintain the balance between operations and quality so that they do not have any conflicts of interest
View answer (3)
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

Top Accenture .NET Application Developer Interview Questions and Answers

Q1. 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?
View answer (1)

.NET Application Developer Interview Questions asked at other Companies

Q1. 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?
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Dec 2024.

Round 1 - Aptitude Test 

The assessment consists of four components: 1. Logical reasoning, 2. MS Excel, 3. PTP, and 4. Detail orientation.

Round 2 - Technical 

(3 Questions)

  • Q1. What were your roles and responsibilities in your previous position?
  • Ans. 

    In my previous position, I was responsible for managing daily operations, coordinating with different departments, and ensuring smooth workflow.

    • Managed daily operations to ensure efficiency

    • Coordinated with various departments for seamless communication

    • Ensured smooth workflow by resolving any operational issues

    • Implemented process improvements to increase productivity

  • Answered by AI
  • Q2. What is SAP, and how does it assist in the Procure-to-Pay (PTP) process?
  • Ans. 

    SAP is an enterprise resource planning software that helps streamline business processes, including the Procure-to-Pay process.

    • SAP stands for Systems, Applications, and Products in Data Processing.

    • It integrates various functions within an organization, such as finance, HR, and procurement.

    • In the Procure-to-Pay process, SAP helps automate and optimize the purchasing process from requisition to payment.

    • It allows for bett...

  • Answered by AI
  • Q3. How you handle the vendors?
  • Ans. 

    I handle vendors by establishing clear communication channels, setting expectations, negotiating terms, and monitoring performance.

    • Establish clear communication channels with vendors to ensure smooth operations

    • Set clear expectations regarding deliverables, timelines, and quality standards

    • Negotiate terms and contracts to ensure mutually beneficial agreements

    • Monitor vendor performance regularly and address any issues pro...

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. What can you tell me about the salary structure, shifts, and benefits offered by the organization?
  • Ans. 

    The organization offers competitive salary structure, various shifts, and comprehensive benefits.

    • Competitive salary structure based on experience and qualifications

    • Multiple shifts available including day, evening, and night shifts

    • Comprehensive benefits package including health insurance, retirement plans, and paid time off

  • Answered by AI
  • Q2. What are your expectations and long-term goals?
  • Ans. 

    My expectations are to contribute to the success of the company by utilizing my skills and knowledge. My long-term goal is to grow within the organization and take on more responsibilities.

    • Expectations to contribute to the success of the company

    • Long-term goal to grow within the organization

    • Desire to take on more responsibilities

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - When attending a walk-in interview, it is important to present yourself in a formal manner, with either a well-groomed beard or a clean-shaven appearance, as this indicates that you take the process seriously. Additionally, maintain a calm and confident demeanor during the interview.

Top Accenture Operations Associate Interview Questions and Answers

Q1. How do you get use to bulk of invoices comes at a time and how do you work on it
View answer (7)

Operations Associate Interview Questions asked at other Companies

Q1. How do you get use to bulk of invoices comes at a time and how do you work on it
View answer (7)

Interview Questions & Answers

user image Anonymous

posted on 14 Jan 2025

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - One-on-one 

(6 Questions)

  • Q1. Can you tell me about yourself?
  • Q2. Can you provide details about your project?
  • Ans. 

    Developed a web-based application for tracking employee attendance and generating reports.

    • Used HTML, CSS, and JavaScript for front-end development

    • Utilized PHP and MySQL for back-end development

    • Implemented user authentication and authorization features

    • Generated various types of reports based on attendance data

  • Answered by AI
  • Q3. About Accenture?
  • Q4. What technology stack are you familiar with?
  • Ans. 

    I am familiar with a variety of technology stacks including LAMP, MEAN, MERN, and JAMstack.

    • LAMP (Linux, Apache, MySQL, PHP)

    • MEAN (MongoDB, Express.js, AngularJS, Node.js)

    • MERN (MongoDB, Express.js, React, Node.js)

    • JAMstack (JavaScript, APIs, Markup)

  • Answered by AI
  • Q5. What are your strengths and weaknesses?
  • Ans. 

    My strengths include strong problem-solving skills and attention to detail. My weaknesses include a tendency to overthink and difficulty delegating tasks.

    • Strengths: problem-solving skills, attention to detail

    • Weaknesses: overthinking, difficulty delegating tasks

  • Answered by AI
  • Q6. How do you manage and respond to criticism?
  • Ans. 

    I handle criticism by listening, reflecting, and using it as an opportunity for growth.

    • Listen to the criticism without becoming defensive

    • Reflect on the feedback to see if there is any truth to it

    • Use the criticism as an opportunity to improve and grow

    • Seek clarification if needed to better understand the criticism

    • Respond calmly and professionally

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Accenture interview:
  • Self prep
  • Use GPT voice
Interview preparation tips for other job seekers - The interview went well; however, the interviewer displayed some rudeness and exhibited religious biases against me.

Accenture interview questions for popular designations

 Associate Software Engineer

 (641)

 Application Developer

 (260)

 Application Development Analyst

 (258)

 Software Developer

 (244)

 Software Engineer

 (215)

 Analyst

 (207)

 Application Development Associate

 (184)

 Senior Analyst

 (154)

Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
No response

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

Round 1 - Technical 

(5 Questions)

  • Q1. Demonstrate Function Overriding.
  • Ans. 

    Function Overriding is a concept in object-oriented programming where a subclass provides a specific implementation of a method that is already provided by its parent class.

    • In Function Overriding, a subclass can provide a specific implementation of a method that is already defined in its parent class.

    • The method in the subclass must have the same name, return type, and parameters as the method in the parent class to ove...

  • Answered by AI
  • Q2. Linq query with order by
  • Ans. 

    Using LINQ query to order data in C#

    • Use the OrderBy method to sort data in ascending order

    • Use the OrderByDescending method to sort data in descending order

    • You can also use ThenBy and ThenByDescending for secondary sorting

  • Answered by AI
  • Q3. What is Out Parameter with example
  • Ans. 

    Out parameter is used to pass data out of a method or function.

    • Out parameters are used when a method needs to return multiple values.

    • They are declared using the 'out' keyword in C#.

    • Example: void CalculateArea(int length, int width, out int area) { area = length * width; }

  • Answered by AI
  • Q4. Authentication and autherization, JWT Tocken
  • Q5. Reflection in C#
  • Ans. 

    Reflection in C# allows for inspecting and manipulating metadata of types at runtime.

    • Reflection is used to dynamically create instances of types, access properties, and invoke methods.

    • Examples include using reflection to load assemblies at runtime, inspect attributes of types, and generate code dynamically.

    • Reflection can be slow and should be used judiciously due to performance overhead.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Accenture Dot Net Fullstack Developer interview:
  • OOPS
  • SQL
  • Javascript
Interview preparation tips for other job seekers - Basics of OOPS SQL JS will do.

Dot Net Fullstack Developer Interview Questions asked at other Companies

Q1. What languages does support the .netframework???
View answer (3)

Get interview-ready with Top Accenture Interview Questions

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I appeared for an interview in Dec 2024.

Round 1 - Technical 

(6 Questions)

  • Q1. Walk through your resume?
  • Ans. 

    I have a background in supply chain management and procurement with experience in data analysis and process improvement.

    • Bachelor's degree in Supply Chain Management from XYZ University

    • Internship at ABC Company focusing on procurement processes and vendor management

    • Experience in analyzing procurement data to identify cost-saving opportunities

    • Implemented process improvements that resulted in a 20% reduction in procuremen

  • Answered by AI
  • Q2. What is the P2P (Procure-to-Pay) cycle?
  • Ans. 

    The P2P cycle is the process of procuring goods or services from suppliers, receiving and approving invoices, and making payments.

    • The cycle starts with identifying the need for a product or service and creating a purchase requisition.

    • Next, the procurement team selects a supplier, creates a purchase order, and sends it to the supplier.

    • Upon receiving the goods or services, the receiving department inspects and confirms r...

  • Answered by AI
  • Q3. What is two-way purchase order matching, and can you provide examples?
  • Ans. 

    Two-way purchase order matching involves comparing the purchase order with the invoice and the goods received.

    • Two-way matching involves comparing the purchase order with the invoice to ensure accuracy.

    • It also involves comparing the purchase order with the goods received to verify quantity and quality.

    • Examples include matching the purchase order number, quantities, prices, and terms on the invoice and goods received.

    • Dis...

  • Answered by AI
  • Q4. What is three-way purchase order matching, and can you provide examples?
  • Ans. 

    Three-way purchase order matching is a process in procurement where the purchase order, receipt of goods, and invoice are compared to ensure accuracy.

    • Three-way matching involves comparing the purchase order, receipt of goods, and invoice to ensure they all match.

    • It helps prevent errors, fraud, and discrepancies in the procurement process.

    • Examples include verifying that the quantity and price on the purchase order match

  • Answered by AI
  • Q5. What is a difficult situation you have handled during your professional experience?
  • Ans. 

    Handled a difficult situation when a key supplier unexpectedly went out of business.

    • Quickly assessed impact on current projects and identified alternative suppliers.

    • Negotiated with remaining suppliers to ensure continuity of supply and minimize disruptions.

    • Communicated effectively with internal stakeholders to keep them informed and manage expectations.

  • Answered by AI
  • Q6. Do you have any questions for us

Interview Preparation Tips

Interview preparation tips for other job seekers - This was technical round. It was bit easier. It was virtual interview experience. All good!

Procurement Operations Analyst Interview Questions asked at other Companies

Q1. What is three-way purchase order matching, and can you provide examples?
View answer (1)

Jobs at Accenture

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

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

Round 1 - Technical 

(6 Questions)

  • Q1. Java 8 , java 11 and java 17 features?
  • Ans. 

    Java 8 introduced lambda expressions, Java 11 added local-variable syntax for lambda parameters, and Java 17 included sealed classes and pattern matching.

    • Java 8 introduced lambda expressions for functional programming.

    • Java 11 added local-variable syntax for lambda parameters to simplify code.

    • Java 17 included sealed classes to restrict inheritance and pattern matching for instanceof checks and type casts.

  • Answered by AI
  • Q2. Dispatcher servlet, design patterns
  • Q3. @SpringbootApplication annotation, actuators
  • Q4. String Coding question with java 8 features such as lambda function and stream api
  • Q5. Number of words in a string
  • Ans. 

    Count the number of words in a given string.

    • Split the string by spaces and count the number of resulting elements.

    • Handle edge cases like multiple spaces or empty strings.

    • Consider punctuation marks as part of words unless specified otherwise.

  • Answered by AI
  • Q6. Microservice design patterns

Top Accenture Java Developer Interview Questions and Answers

Q1. What are the principles of object oriented programming, such as OOPs concepts in Java
View answer (4)

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size N containing only integers 0 and 1, implement a function to sort this array. The solution should scan the array only once without using any additional arrays. Input: The firs... read more
View answer (4)

Operations Associate Interview Questions & Answers

user image Om Prakash Singh

posted on 19 Jan 2025

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Group Discussion 

Introduce your self.

Round 2 - Aptitude Test 

Reasoning test in hindi.

Round 3 - Coding Test 

Mathematics in hindi.

Round 4 - Technical 

(2 Questions)

  • Q1. Write an email to manager.
  • Ans. 

    Email to manager requesting approval for new software purchase

    • Introduce the need for new software

    • Explain the benefits of the software

    • Request approval and budget allocation

    • Provide any relevant research or quotes from vendors

  • Answered by AI
  • Q2. Write an email to manager.
  • Ans. 

    Email to manager requesting approval for new software purchase

    • Introduce the need for new software

    • Explain the benefits of the software

    • Request approval and provide cost details

    • Offer to provide more information if needed

  • Answered by AI
Round 5 - One-on-one 

(2 Questions)

  • Q1. 3 people taken interview from me.
  • Q2. Do you speak portuguese well.
  • Ans. 

    Yes, I am fluent in Portuguese and can communicate effectively in both written and spoken forms.

    • I am a native Portuguese speaker and have been speaking the language since childhood.

    • I have also completed advanced Portuguese language courses to further improve my proficiency.

    • I have experience communicating with Portuguese-speaking clients in previous roles.

    • I am confident in my ability to conduct business in Portuguese if

  • Answered by AI
Round 6 - Assignment 

Email test in English.

Round 7 - HR 

(1 Question)

  • Q1. What are your sallary expectation.
  • Ans. 

    My salary expectation is negotiable and based on the responsibilities and opportunities offered by the position.

    • My salary expectation is flexible and open to discussion.

    • I am looking for a competitive salary that reflects my skills and experience.

    • I am more focused on the overall compensation package rather than just the base salary.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - You ask to manager for work from home or provide cab.

Top Accenture Operations Associate Interview Questions and Answers

Q1. How do you get use to bulk of invoices comes at a time and how do you work on it
View answer (7)

Operations Associate Interview Questions asked at other Companies

Q1. How do you get use to bulk of invoices comes at a time and how do you work on it
View answer (7)
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Basics of Core Python concepts like Loops, Lambda functions.
  • Q2. Check if a string is Palindrome or not.
  • Ans. 

    Check if a string is Palindrome or not.

    • Create a function to compare the original string with its reverse

    • Ignore spaces and punctuation when checking for palindrome

    • Examples: 'racecar' is a palindrome, 'hello' is not

  • Answered by AI
  • Q3. Questions of Sql.
Round 2 - One-on-one 

(2 Questions)

  • Q1. What questions were asked regarding the projects you worked on, and what specific technicalities were included?
  • Q2. Questions on Django, Flask and REST API services.

Interview Preparation Tips

Topics to prepare for Accenture Application Developer interview:
  • Python
  • Django
  • Flask
  • SQL
Interview preparation tips for other job seekers - Easy going interview. Brush up-on your basics and then be prepared with your resume.

Top Accenture Application Developer Interview Questions and Answers

Q1. Difference between tmap & tjoin Types of connection Difference between truncate delete What is ETL What are triggers Type of join
View answer (4)

Application Developer Interview Questions asked at other Companies

Q1. Minimum Cost to Connect All Points Problem Statement Given an array COORDINATES representing the integer coordinates of some points on a 2D plane, determine the minimum cost required to connect all points. The cost to connect two points, (x... read more
View answer (2)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

I am Manohara GC complete my graduation in Vidya vardhaka clg of engineering i know about AutoCAD CATIA and solid edge
"*****" this is mail id please share this link

Round 2 - Technical 

(5 Questions)

  • Q1. What was impact of Accenture?
  • Ans. 

    Accenture has had a significant impact on the design engineering industry, particularly in the areas of technology innovation and digital transformation.

    • Accenture has helped design engineers leverage advanced technologies such as AI, IoT, and AR/VR to enhance product development processes.

    • Accenture's expertise in digital transformation has enabled design engineers to streamline operations, improve efficiency, and deliv...

  • Answered by AI
  • Q2. May i what to be doing this ur company?
  • Ans. 

    Accenture is a global professional services company that specializes in information technology (IT) services and management consulting. They offer many career paths across different technologies, business areas, and industries.

  • Answered Anonymously
  • Q3. How to build my career?
  • Ans. 

    To build your career as a Design Engineer, focus on gaining relevant education, experience, networking, and continuous learning.

    • Obtain a degree in engineering or a related field

    • Gain practical experience through internships or entry-level positions

    • Build a strong portfolio showcasing your design projects

    • Network with professionals in the industry and attend design events

    • Stay updated on the latest design trends and technol

  • Answered by AI
  • Q4. How to get the job in your company?
  • Ans. 

    you need to pass Cognitive and Technical assessment. After passing these assessments, you will have to take the Coding Test. After Coding Test, you will have to give communication assessment and then, the Accenture interview round

  • Answered Anonymously
  • Q5. What is main contribute with me?
  • Ans. 

    My main contribution would be my strong design skills and problem-solving abilities.

    • Strong design skills to create innovative and efficient solutions

    • Ability to analyze problems and come up with effective design solutions

    • Experience in using CAD software and other design tools

    • Collaboration with cross-functional teams to bring designs to life

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Accenture Design Engineer interview:
  • AutoCAD
  • Basic mechanical engineering
  • Solid Works
Interview preparation tips for other job seekers - What was impact to me like that is very simple i clearly share with my knowledge with your company.

Design Engineer Interview Questions asked at other Companies

Q1. Stress Strain curve, What will happen if you use petrol in diesel engine and Diesel in petrol engone.
View answer (5)

Accenture Interview FAQs

How many rounds are there in Accenture interview?
Accenture interview process usually has 2-3 rounds. The most common rounds in the Accenture interview process are Technical, HR and Aptitude Test.
How to prepare for Accenture 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, SQL, Application Development, Java and Business process.
What are the top questions asked in Accenture interview?

Some of the top questions asked at the Accenture interview -

  1. If insurance premium is paid for an entire year 1st January to 31st December an...read more
  2. Case. There is a housing society “The wasteful society”, you collect all th...read more
  3. What are three golden rules of accounti...read more
What are the most common questions asked in Accenture HR round?

The most common HR questions asked in Accenture interview are -

  1. What are your salary Expectatio...read more
  2. General questi...read more
How long is the Accenture interview process?

The duration of Accenture interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Accenture Interview Process

based on 6.9k interviews

Interview experience

4.1
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k 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.1k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
DXC Technology Interview Questions
3.7
 • 797 Interviews
View all

Accenture Reviews and Ratings

based on 58.2k reviews

3.8/5

Rating in categories

3.7

Skill development

3.6

Work-life balance

3.4

Salary

3.7

Job security

3.7

Company culture

3.1

Promotions

3.5

Work satisfaction

Explore 58.2k Reviews and Ratings
Trust & Safety New Associate

Hyderabad / Secunderabad

0-1 Yrs

Not Disclosed

I&F Decision Sci Practitioner Associate Manager

Bangalore / Bengaluru

10-14 Yrs

₹ 9.75-40 LPA

Explore more jobs
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