Accenture Interview Experience For SASA Role- On Campus(2024)

Last Updated : 24 Jun, 2025

Hello Everyone! I received the interview opportunity during the 2024 on-campus placement drive for the System Administrator and Services Associate (SASA) role at Accenture. The entire process was well-structured and carried out in multiple stages, each designed to assess various technical and interpersonal capabilities.

Recruitment Process Overview

  • Aptitude Round
  • Coding Round
  • Communication Round (AI Mock)
  • Technical Interview
  • HR Interview
  • Letter of Intent (LOI 1 & 2)
  • Background Verification
  • Offer Letter
  • Joining Letter

Aptitude Round

  • Duration: 1.5 hours
  • Method: Online Assessment at JECRC Foundation
  • Focus Areas: Reasoning, Verbal Ability, MS Word, Excel, PowerPoint, Numerical Aptitude, and Core Subjects (Computer Networking, DBMS, OS)

The test covered a wide variety of questions evaluating logical thinking, language skills, and fundamental technical knowledge. The results were declared within 10 minutes, and I was selected for the next round.

Coding Round

  • Duration: 1 hour
  • Method: Online Coding Platform
  • Number of Questions: 2

Q1. Sliding Window Maximum – Array based problem (Hard Category)

C++
#include <iostream>
using namespace std;

class GFG {
public:
    vector<int> maxSlidingWindow(vector<int>& nums, int k) {
        int n = nums.size();
        deque<int>dq;
        vector<int>ans; 

        for(int i = 0 ; i < n ; i++) {
            // remove if it goes out of the window 
            while(!dq.empty() && dq.front() <= i - k){
                dq.pop_front();
            }
            while(!dq.empty() && nums[dq.back()] <= nums[i]){
                dq.pop_back();
            }
            dq.push_back(i);

            if(i >= k - 1) ans.push_back(nums[dq.front()]);

        }

        return ans;
    }
};

Q2. Valid Parenthesis – Stack & String based (Easy and frequently asked problem)

C++
#include <iostream>
using namespace std;

class GFG {
public:
    bool isValid(string s) {
        
        //TC = O(N) SC = O(N) cz uaing stack
       
        stack<char> s1;

        for(int i = 0; i < s.size(); i++){

            if(s[i] == '[' || s[i] == '(' || s[i] == '{'){
                
                s1.push(s[i]);
            }
            else{
                if(s1.empty()){ //edge case
                    return false;
                }
                else if(s1.top() == '[' && s[i] == ']'){
                    s1.pop();
                }
                else if(s1.top() == '(' && s[i] == ')'){
                    s1.pop();
                }
                else if(s1.top() == '{' && s[i] == '}'){
                    s1.pop();
                }
                else{
                    return false;
                }
            }
        }
        
        if(s1.empty() == 1){

            return true;
        }
        return false;
    }
};

Both problems tested algorithmic thinking and problem-solving ability. I managed to solve both and moved to the next stage.

Communication Round (AI Mock)

  • Mode: Online(You can give this round at anywhere according to your availability)
  • Type: Non-Elimination (But preparation recommended)
  • This round tested spoken English using AI-based evaluation, broken into the following sections:
  • Reading – Read 8 sentences aloud
  • Repeating Sentences – Repeat 16 audio sentences
  • Jumbled Sentences – Reconstruct and read 10 jumbled sentences
  • Q&A – Answer 24 simple questions (one/two-word answers)
  • Story Telling – Listen to a story twice and retell it in 30 seconds
  • Open Questions – Answer HR-style questions in 60 seconds

The round tested pronunciation, fluency, vocabulary, and overall communication clarity. Cleared this round as well.

Technical Interview

  • Duration: 30–40 minutes
  • Panel: Senior Software Developer at Accenture
  • Mode: In-Person/Online
  • The interview started with a brief introduction followed by questions from:
  • Languages: C++, Core Java
  • Concepts: OOPs, DBMS, OS, System Design
  • Coding: Reverse an array, Find second-largest element
  • Projects: Deep dive into technical projects
  • Behavioral: Strengths and weaknesses

Overall, a balanced mix of technical and behavioral assessment. I cleared this round as well.

HR Interview

  • Timing: 2–3 days after technical round
  • Mode: Virtual
  • Focus: General HR Questions

Simple and direct questions regarding expectations, goals, and behavioral aspects. Cleared this round too.

Letter of Intent (LOI) and Background Verification

  • LOI 1 received 1.5 months after interview
  • LO2 received 25 days after LO1
  • Background verification and validations followed afterward

Offer & Joining Letter

After clearing all rounds and successful verification, I received the Offer Letter for the SASA Role at Accenture, followed by the Joining Letter and onboarding details.

Final Thoughts

It was an insightful experience that tested both technical and soft skills across various dimensions. The structured process, quick feedback, and clarity made this journey with Accenture highly professional and rewarding.

Comment