Skip to content
InterviewEra
What is InterviewEraThe platform, founder, and missionHow It WorksAdaptive interview, live captions, scoringResume-aware ScoringCV-native questions + 5-dimension feedback
Campus Placements OverviewStructured mock interviews and cohort analytics for T&P teamsSet up Campus WorkspaceCreate your campus dashboard and invite your batchT&P Product & PricingPilot pricing, bulk onboarding, and placement trackingStudent Invitation HelpHow to accept a campus invite and start practising
Software EngineerDSA, system design, OOP roundsFrontend DeveloperReact, HTML/CSS, JavaScript interviewsTCS Interview QuestionsNQT + technical + HR roundsWipro Careers HubNLTH, WILP, Turbo hiring tracksSolera Careers HubCognitive assessment + Java/SQL roundsReact Interview QuestionsHooks, state, performance topics
Interview Question GeneratorRole-specific questions in secondsATS Resume CheckerScore your resume against job rolesSTAR Answer BuilderStructure behavioral answers clearly
All ResourcesCentral guide and hub directoryBlogInterview prep articles and guidesAgentic AI Interview GuideAI-assisted coding interviews, rubrics, and prepPlacement GuideStep-by-step campus prep playbookSTAR Method GuideMaster behavioral answers
Help CenterGuides, FAQs, and supportDSA Topic MapPatterns, roadmap, and top 50 problemsSoftware Engineer GuideSWE questions and prep hubAndroid GuideKotlin, Compose, MVVM prep hubFrontend GuideReact and JavaScript interviews
PricingFor Teams
Sign inSign up
InterviewEra

InterviewEra is an AI-powered mock interview platform with adaptive follow-ups, resume-aware scoring, and structured interview preparation for campus placements and early-career hiring.

Start Mock Interview

Mock Interview

  • How It Works
  • For Teams
  • Start Mock Interview
  • Campus Placements
  • Campus Workspace
  • Help Center

Free Tools

  • Interview Question Generator
  • ATS Resume Checker
  • STAR Answer Builder

Interview Questions

  • Wipro Careers Hub
  • Solera Careers Hub
  • Amazon SDE Questions
  • Microsoft SDE Questions
  • Infosys SWE Questions
  • Infosys Java Questions
  • Freshworks Frontend Questions
  • Android Developer Questions
  • Frontend Developer Questions
  • Java Developer Questions

Resources

  • Community Hub
  • All Resources
  • Blog
  • Agentic AI Interview Guide
  • What Is Agentic AI
  • Agentic Coding Round
  • AI Prompt Engineering
  • Cursor AI Interview Guide
  • DSA Topic Map
  • Placement Guide
  • STAR Guide
  • HR Guide
  • Interview Tips

Company

  • What is InterviewEra
  • About Us
  • Pricing
  • Contact

© 2026 InterviewEra. All rights reserved.

Privacy PolicyTermsRefundRanchi, Jharkhand, India
Interview Questions›Accenture

IT Services · Mumbai

Accenture Interview Questions 2026

Accenture mass-recruits freshers with cognitive + communication tests, a technical round, and an HR interview.

Interview rounds
3
Avg. package
4.5–8 LPA
Fresher hiring
Yes
HQ
Mumbai

Process: Communication + Cognitive Test → Technical → HR

Accenture Interview Questions

Placement-oriented · Updated 2026
  1. 01

    What does the Accenture Cognitive and Technical Assessment (ACTA) test?

    AptitudeEasy

    Tip: ACTA has three modules: Cognitive Ability (abstract reasoning), Technical (HTML, SQL, basic programming), and Communication (written English). The Communication module is elimination-based — score below 50% and no technical offer regardless of coding performance.

  2. 02

    Explain OOPS concepts with practical examples applicable to enterprise software.

    TechnicalEasy

    Tip: Encapsulation (bank account balance hidden behind methods), Inheritance (Employee → Manager), Polymorphism (payment.process() behaving differently for Card vs UPI), Abstraction (interface hiding implementation). Show how each reduces complexity in large codebases.

  3. 03

    What is HTML5? List five new semantic elements and explain why they matter for SEO.

    TechnicalEasy

    Tip: `<header>`, `<nav>`, `<main>`, `<article>`, `<section>`, `<footer>` tell search engines and screen readers about page structure. Non-semantic `<div>` soup makes it harder for crawlers to extract content. Accenture has a large front-end services practice.

  4. 04

    What is the purpose of CSS Flexbox? How does it differ from CSS Grid?

    TechnicalEasy

    Tip: Flexbox: one-dimensional layout (row or column) — ideal for navigation bars, card rows. Grid: two-dimensional (rows and columns simultaneously) — ideal for page layouts. A common interview task: use Flexbox to centre a div both vertically and horizontally.

  5. 05

    Write a SQL query to find employees who earn more than the average salary in their department.

    TechnicalMedium

    Tip: Correlated subquery: SELECT name FROM employees e WHERE salary > (SELECT AVG(salary) FROM employees WHERE dept_id = e.dept_id). Or use window functions: AVG(salary) OVER (PARTITION BY dept_id). Accenture SQL tests are heavier than most service companies.

  6. 06

    What are Accenture's core values and how do they influence day-to-day work?

    HREasy

    Tip: Accenture's six core values: Client Value Creation, One Global Network, Respect for the Individual, Best People, Integrity, Stewardship. Know specific examples — 'Respect for the Individual' ties to DEI initiatives; 'Stewardship' ties to sustainability targets.

  7. 07

    How do you ensure code quality when working in a large team on a shared codebase?

    SituationalMedium

    Tip: Mention: code reviews (PRs with meaningful comments), linting and formatting (ESLint, Prettier, Black), unit tests with coverage thresholds, CI pipelines that block merges on failure, and pair programming for knowledge transfer.

  8. 08

    Explain what DevOps means and name two popular DevOps tools.

    TechnicalEasy

    Tip: DevOps: cultural + technical movement bridging development and operations to enable faster, more reliable software delivery. Tools: Jenkins/GitHub Actions (CI/CD), Docker (containerisation), Kubernetes (orchestration), Terraform (IaC). Accenture runs large DevOps transformation programmes.

  9. 09

    Tell me about a time you went above and beyond what was expected of you.

    BehavioralEasy

    Tip: Use STAR. Accenture's culture rewards initiative ('Best People' value). Pick an example where you identified a problem outside your scope, took ownership, delivered tangible impact, and communicated results to stakeholders.

  10. 10

    What is responsive web design and how do you implement it?

    TechnicalEasy

    Tip: RWD: layouts that adapt to any screen size. Implementation: CSS media queries (`@media`), fluid grids (percentage widths), flexible images (`max-width: 100%`), viewport meta tag. Mobile-first approach — start with mobile CSS and add breakpoints for larger screens.

How to prepare for a Accenture interview

Accenture India interviews follow a 3-round process. Here is what to expect and how to prepare for each stage.

  1. 1Communication + Cognitive Test→
  2. 2Technical→
  3. 3HR
  • ✓Revise core CS fundamentals: OOP, DBMS (SQL queries + normalisation), OS (processes, threads, deadlocks), and networking (OSI model, TCP/IP).
  • ✓Practise aptitude and reasoning: most service companies use an online screening test before any technical round.
  • ✓Write clean, correct code for standard problems: reverse a linked list, find duplicates, implement sorting algorithms from scratch.
  • ✓Prepare a strong "Tell me about yourself" answer that connects your academic background to the role in 60–90 seconds.
  • ✓Prepare your college projects: be ready to walk through architecture, tech stack choices, and challenges you faced.
  • ✓Research the company's specific test format (NQT for TCS, InfyTQ for Infosys, NLTH for Wipro) and practice past papers.

Practice a full Accenture mock interview

Upload your resume and get questions scored across technical depth, communication, structure, confidence, and relevance — the same criteria Accenture panels use.

Start free mock interviewFree question generator

Roles you can target at Accenture

  • Accenture SWE questions
  • Accenture DA questions
  • Accenture FE Dev questions
  • Accenture BA questions

Practice tools

  • Accenture question generator
  • ATS resume checker
  • STAR answer builder

Similar companies to consider

  • TCS questions
  • Infosys questions
  • Wipro questions
  • HCL questions
  • Cognizant questions

Guides and resources

  • All interview questions
  • STAR method with examples
  • HR interview answer tips
  • Placement interview prep guide