Interview Experience 1 - ASE Role
Candidate Profile: B.Tech CS, 7.5 CGPA, campus placement
Round 1 - Cognitive Assessment (50 minutes)
Platform: Accenture Assessment Platform (SHL-based)
English Ability (17 questions, ~15 minutes):
- Vocabulary (synonyms, antonyms): 4-5 questions
- Grammar (error spotting, fill in blanks): 4-5 questions
- Reading comprehension: 2 passages, 6-8 questions
- Difficulty: Medium
- My Performance: Attempted all, confident about 14/17
- Tip: Read passages quickly, focus on main ideas
Critical Reasoning (18 questions, ~20 minutes):
- Logical deductions: 5-6 questions
- Data sufficiency: 4-5 questions
- Statement-conclusion: 4-5 questions
- Analytical reasoning: 4-5 questions
- Difficulty: Medium-Hard
- My Performance: Attempted all, confident about 13/18
- Tip: Practice critical reasoning from CAT/GMAT materials
Abstract Reasoning (15 questions, ~15 minutes):
- Pattern recognition: 5-6 questions
- Figure series: 5-6 questions
- Visual reasoning: 4-5 questions
- Difficulty: Medium
- My Performance: Attempted all, confident about 12/15
- Tip: Practice non-verbal reasoning, look for patterns
Result: Cleared cognitive assessment
Tips:
- Time management is crucial - 1 minute per question
- Don’t get stuck on difficult questions
- Practice SHL-style assessments before exam
Round 2 - Technical Assessment (40 minutes)
Technical MCQs (20 questions):
Programming Fundamentals (5-6 questions):
- Output prediction questions in C/Java
- Data types and operators
- Control structures
- Functions and recursion
Object-Oriented Programming (3-4 questions):
- Inheritance and polymorphism
- Abstraction vs encapsulation
- Method overloading vs overriding
Database Management (4-5 questions):
- SQL queries (SELECT, JOIN, GROUP BY)
- Normalization forms
- ACID properties
- Primary key vs foreign key
Operating Systems (3-4 questions):
- Process vs thread
- Deadlock conditions
- Memory management
- CPU scheduling
Computer Networks (3-4 questions):
- OSI model layers
- TCP vs UDP
- IP addressing
- HTTP methods
My Performance: Attempted all, confident about 16/20
Tips:
- Revise CS fundamentals thoroughly
- Practice output prediction questions
- Know SQL queries well
Round 3 - Coding Assessment (45 minutes)
Coding Problem 1: Reverse Words in String
- Input: “the sky is blue”
- Output: “blue is sky the”
- Difficulty: Easy
- My Approach: Split by space, reverse array, join
- Time Taken: 15 minutes
- Result: All test cases passed
public String reverseWords(String s) { String[] words = s.trim().split("\\s+"); StringBuilder result = new StringBuilder(); for (int i = words.length - 1; i >= 0; i--) { result.append(words[i]); if (i > 0) result.append(" "); } return result.toString();}Coding Problem 2: Find Second Largest in Array
- Input: [12, 35, 1, 10, 34, 1]
- Output: 34
- Difficulty: Easy-Medium
- My Approach: Single pass with two variables
- Time Taken: 20 minutes
- Result: All test cases passed
public int secondLargest(int[] arr) { int first = Integer.MIN_VALUE; int second = Integer.MIN_VALUE; for (int num : arr) { if (num > first) { second = first; first = num; } else if (num > second && num != first) { second = num; } } return second;}Result: Cleared coding assessment
Tips:
- Focus on arrays, strings, basic algorithms
- Handle edge cases carefully
- Test with given examples before submitting
Round 4 - Communication Assessment (20 minutes)
Written English Test (10 minutes):
- Essay writing: “Importance of Teamwork in Corporate Environment”
- Word limit: 150-200 words
- Focus: Grammar, vocabulary, coherence
- Tip: Structure your essay (intro, body, conclusion)
Spoken English Assessment (10 minutes):
- Self-introduction (2 minutes)
- Read aloud passage
- Answer spoken questions
- Tip: Speak clearly, maintain moderate pace
Result: Cleared communication assessment
Tips:
- Practice speaking English daily
- Focus on clarity over accent
- Record yourself and improve
Round 5 - HR Interview (25 minutes)
Mode: Video call (Microsoft Teams)
Questions Asked:
-
“Tell me about yourself”
- Brief introduction with education, skills, and goals
- Duration: 2-3 minutes
-
“Why do you want to join Accenture?”
- Mentioned global presence and diverse projects
- Talked about learning opportunities in consulting
- Showed knowledge about Accenture’s services
-
“What do you know about Accenture?”
- Fortune 500 company, global consulting and technology services
- Key areas: Strategy, Consulting, Digital, Technology, Operations
- Recent initiatives: Cloud acceleration, AI services
-
“Are you willing to work in any technology?”
- Yes, expressed flexibility and eagerness to learn
-
“Are you comfortable with relocation?”
- Yes, ready to work from any location
-
“What are your strengths and weaknesses?”
- Strength: Problem-solving, quick learner
- Weakness: Sometimes perfectionist (working on it)
-
“Where do you see yourself in 5 years?”
- Growing in technical expertise, taking leadership roles
-
“Any questions for us?”
- Asked about training program and project allocation
Result: Selected! Package: ₹4.5 LPA (ASE role) Location: Bengaluru
Key Takeaways: Prepare for all five assessment areas. Cognitive and technical assessments have sectional cutoffs. Communication skills are important at Accenture. Show flexibility and eagerness to learn.