Complete Accenture Preparation Guide
Eligibility, syllabus, selection process, interview insights — everything in one place.
About the Company
Accenture plc is a Fortune Global 500 professional services company headquartered in Dublin, Ireland, with roots tracing back to Arthur Andersen's consulting division in the 1950s. The company formally separated as Andersen Consulting in 1989 and rebranded to Accenture in 2001. Today, Accenture serves over 9,000 clients across 120+ countries with approximately 779,000 employees. The company operates through five businesses: Strategy & Consulting, Technology, Operations, Industry X, and Accenture Song (creative services), making it one of the world's largest and most diversified professional services firms.
Eligibility Criteria
Ensure you meet all requirements before applying to Accenture.
Accenture hiring is open for graduates and postgraduates such as Bachelor of Technology (B.Tech.)/ Bachelor of Engineering (B.E.)/ Master of Technology (M.Tech.)/ Master of Engineering (M.E.)/ Master of Computer Applications (M.C.A.)/ Master of Science (M.Sc.)/ Bachelor of Computer Applications (BCA)/ Bachelor of Science (B.Sc.) in relevant specializations from AICTE/UGC recognized universities/colleges. Eligibility may vary depending on the role and hiring drive.
Exclusively open for the Batch of 2024, 2025 and 2026.
Accenture requires a minimum of 60% aggregate throughout academics — from Class 10 and Class 12 through to graduation and post-graduation. The percentage is calculated on the aggregate of all subjects. For CGPA candidates, the university's official conversion formula is used.
Accenture has a strict zero-backlog policy: no active backlogs are permitted at any stage of the selection process. Candidates with a history of backlogs must have cleared all arrears before submitting their application. Any pending backlog at the time of assessment will result in disqualification.
There is generally no strict age limit specified for entry-level hiring; however, candidates must meet the minimum legal working age requirements as per company policy.
Accenture requires candidates to declare all academic gaps in the application form. An education gap of up to 24 months is generally acceptable provided the candidate can submit valid supporting documents such as medical certificates, competitive exam preparation proof, or family circumstances.
Freshers and candidates with up to 1 – 2 years of relevant work experience are eligible to apply, depending on the hiring program.
Accenture accepts only full-time, regular degree programs from recognized universities. Distance education, correspondence, part-time, and online-only degree programs are not eligible for technical entry-level roles. However, Accenture may consider such programs for certain non-technical roles.
Salary Package
Annual CTC by role tier. Opportunities are available across roles such as Associate Software Engineer (ASE), Advanced Associate Software Engineer (AASE).
Selection Process
Your journey from application to offer letter — step by step.
Step 1
Online application process requiring candidates to meet specific eligibility criteria, usually including no active backlogs and a limited education gap. Candidates shouldn't have attempted an Accenture assessment in the last 6 months.
- Ensure all details on the application are accurate and match your documents.
- Check eligibility criteria carefully before applying.
Step 2 · Elimination Round
Round 1 consists of Behavioral Assessment (50 scenario-based questions, 20 minutes) and Cognitive Gamified Assessment (3 logical puzzles, 20 minutes).
- Answer personality questions consistently.
- Practice logical reasoning puzzles.
Step 3 · Elimination Round
45 MCQs to be completed in 45 minutes covering MS Office, Pseudocode, Core CS subjects, Networking, Security, and Cloud fundamentals.
- Focus on pseudocode and core CS fundamentals.
- Revise networking and cloud basics.
Step 4 · Elimination Round
3 Questions: 1 DSA-based coding problem, 1 SQL query question, and 1 UI-based question using HTML/CSS/JavaScript.
- Practice arrays, strings, and SQL queries.
- Revise basic frontend development concepts.
Step 5 · Elimination Round
65 questions to be completed in 30 minutes testing verbal ability, listening skills, and communication proficiency.
- Speak clearly and confidently.
- Practice grammar and listening exercises.
Step 6
Successful candidates proceed to interview rounds. The technical interview focuses on domain knowledge, coding, and projects. The HR interview covers salary, relocation, and cultural fit. Sometimes these are combined into a single panel interview.
- Be ready to discuss your final year project in detail.
- Brush up on your preferred programming language and basic SQL.
Exam Pattern
The Accenture AXIS 2026 online assessment consists of four elimination rounds conducted sequentially: Behavioral & Cognitive Assessment, Technical Assessment, Coding Assessment, and Communication Assessment.
- All rounds are elimination-based.
- Technical MCQs are distributed as 7+10+14+14.
- Coding round includes DSA, SQL, and UI-based question.
- Communication assessment includes 65 questions in 30 minutes.
- Behavioral assessment is scenario-based with Agree/Disagree options.
- Gamified section evaluates logical and problem-solving ability.
- Technical round consists of 45 MCQs with 45 minutes duration.
- Coding round includes DSA problem, SQL query, and UI development task.
- Communication round evaluates verbal ability and listening skills.
Syllabus Breakdown
Topics and their weightage in the Accenture exam.
Important Topics
High-frequency topics that appear most often in Accenture interviews and assessments.
Previous Year Questions
A mini mock simulation — pick an answer, get instant feedback and an explanation, then move to the next question.
Which of the following words is most similar in meaning to 'OBFUSCATE'?
In the OSI model, which layer is responsible for routing packets from the source to the destination across multiple networks?
What will be the output of the following pseudocode? Integer a = 10, b = 5 a = a + b b = a - b a = a - b Print a, b
In the Communication Assessment, what is evaluated during the 'Story Retelling' section?
The function `int calculate(int r, int unit, int arr[], int n)` takes the number of rats `r` and the amount of food each rat consumes `unit`. `arr[]` represents an array containing the amount of food available in each house. `n` is the number of houses. Find and return the minimum number of houses required to satisfy the total food requirements of all rats.
Note: Return -1 if the array is null/empty. Return 0 if the total food across all houses is insufficient.
Line 1: `r` (rats) Line 2: `unit` (food per rat) Line 3: `n` (number of houses) Line 4: `n` space-separated integers for `arr[]`
A single integer.
7 2 8 2 8 3 5 7 4 1 2
4
Explanation: Total food required = 7 * 2 = 14. House 1 (2), House 2 (8 -> total 10), House 3 (3 -> total 13), House 4 (5 -> total 18 >= 14). So, 4 houses are needed.
Write a function `CheckPassword(char str[], int n)` to check if a given password string is valid. A password is valid if: 1. It contains at least 4 characters. 2. It contains at least one numeric digit. 3. It contains at least one Capital Letter. 4. It must not have space or slash (/). 5. Starting character must not be a number.
Note: Return 1 if valid, 0 if invalid.
A single string representing the password.
1 or 0.
aA1_67
1
Explanation: Meets all criteria.
a987 abC012
0
Explanation: Contains a space, so invalid.
Student Interview Experiences
Real insights from students who cleared the Accenture hiring process.
Technical interview focused mainly on core subjects like DBMS, OOPS and Networking. They also asked about my coding logic and projects.
Behavioral round and communication test were important. They checked clarity of speech and confidence before final selection.