Accenture
Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards
Filter interviews by
I applied via campus placement at Sardar Vallabhbhai National Institute of Technology (NIT), Surat and was interviewed before Jul 2022. There were 3 interview rounds.
The questions listed here are of the exact same pattern that I had in my paper: -----/
I was interviewed in May 2021.
Round duration - 50 Minutes
Round difficulty - Medium
It was a Aptitude Round with 5 Section viz -
1. General English
2. Maths
3. Pseudo Code
4. Operating System
5. Microsoft Office Tools related questions
You are provided with a 2-dimensional matrix having N
rows and M
columns, containing only 1s (land) and 0s (water). Your goal is to determine the number of islands in t...
Round duration - 30 Minutes
Round difficulty - Medium
Firstly they ask you questions about your resume. And then they give you one coding problem to solve and explain.
The timing of the interview will specified to you through mail a day before your interview. Mine was on afternoon.
The interviewer was also very calm and nice.
Tip 1 : Prepare General Aptitude, also practice pseudo codes
Tip 2 : For coding round, prepare OOPS topic and one of the language.
Tip 3 : For Interview, please go through your Resume Projects and what challenges you had while preparing for it.
Tip 1 : Please put relevant Projects in your resume, which is purely build by you.
Tip 2 : Please do not put any false things on your resume, it is mandatory to put any internship experience if you don’t have any.
I applied via Job Portal and was interviewed before Jul 2022. There were 3 interview rounds.
It was really Tough and hard .. subjective based question
What people are saying about Accenture
I was interviewed in Nov 2020.
Round duration - 90 minutes
Round difficulty - Medium
The test was scheduled from 10:30 am to 12:00 pm. It was conducted via Secure Exam Browser. The instructions for the same were given before hand and the test link was sent in the mail. You needed to have webcam and mic on during the entire process. The test was well proctored and there were no lags/ server issues on their side.
Round duration - 45 minutes
Round difficulty - Easy
This was the coding round which happened just after the MCQ round. The people who had cleared the previous round were sent the link for further test. The timing was 12:15pm to 1:00 pm. It was conducted on the same environment SEB.
Given a string 'STR' of length 'N', return a new string containing all characters that are located at prime indices in the original string. Ensure that the order of cha...
You are given an array/list named 'SEQUENCE', which consists of 'N' integers. The task is to identify all equilibrium indices in this sequence.
An equilibr...
Round duration - 40 minutes
Round difficulty - Medium
We were asked to choose a slot and I chose evening 5:30 pm. The duration was variable but no one had an interview of more than 1 hour. There were two interviewers. Both of them were very nice and polite.
You are given a Binary Tree with 'N' nodes where each node contains an integer value. Additionally, you have three integers, 'N1', 'N2', and 'N3'. Your task is to find...
Tip 1 : Prepare latest questions on Networking, Security and cloud as it has a separate section.
Tip 2 : Focus on basic array problems and techniques like prime factorization.
Tip 3 : Practice giving output of pseudocode.
Tip 1 : Show willingness to work on latest technology like ML and Data Science.
Tip 2 : Show a good track record of academics if applicable.
Accenture interview questions for popular designations
I was interviewed in Nov 2020.
Round duration - 90 Minutes
Round difficulty - Easy
The test was in the morning from 10:00 to 12:00. It was a two-round test. There was a 45-minute MCQ-based Technical and Cognitive Assessment Round. Only those candidates who cleared this round could sit in the next round, a 45-minute coding test. There was a sectional cutoff that needed to be cleared in order to proceed to the coding round. The CoCubes test platform was fairly easy to understand and user-friendly.
The coding round was fairly simple. It had two very easy array-based questions.
Given a positive integer N
, your task is to identify all prime numbers less than or equal to N
.
A prime number is a natural number greater than 1 that has no po...
I used the Sieve of Eratosthenes. Created a sieve array whose size was equal to the maximum number in the array given. Then filled the sieve using the algorithm.
Given an array ARR
of N integers and an integer S, determine if there exists a contiguous subarray within the array with a sum equal to S. If such a subarray exis...
I wrote a simple O(n) solution
Round duration - 25 Minutes
Round difficulty - Easy
This was a Technical + HR interview. It was in the afternoon around 12 pm. As the role was Data Engineer intern, the interviewer wanted to know whether or not I had built some projects related to this field. Most of the interview went by him asking questions based on my projects. First I was asked to explain about a project then a lot of follow-up questions were asked.
Tip 1 : Do not rush into things. Learning takes time. Focus should be on the concepts and not just on leaving topics half-prepared. Devote 70% of both time and effort to DSA. I solved a total of around 500 questions on sites like GFG and Leetcode. Do not repeat similar questions just to increase the count of the number of questions
Tip 2 : Competitive Programming is a bonus and not a necessity, rather focus on core DSA based problems before trying CP. Do not pursue CP if you do not like it. Devote that extra time to core CS subjects and aptitude preparation.
Tip 3 : Projects play an important role too, do no ignore them. Try to get your hands dirty with a little bit of every field i.e., frontend, backend, and database.
Tip 1 : Try to make a single-page resume. Highlight skills, projects, and work experience more than CGPA. Ensure proper spacing and font to maintain professionalism.
Tip 2 : Does not lie on a resume. Everything written on your resume must be known by you in and out.
I was interviewed in Nov 2020.
Round duration - 120 Minutes
Round difficulty - Easy
Aptitude+Coding
Both the rounds were easy only student should have confidence in himself.
Coding Round 3 question-:
1.Array related
2.Level order traversal
3. Graph
Given the root of a binary tree, calculate the sum of all nodes located at the Kth level from the top. Consider the root node as level 1, and each level beneath it sequentially increases ...
The idea is to do an inorder traversal of the tree, and at each level, we go down, reduce K by 1, and all the states where K = 1, add that node's value in our answer, and recursively do this for all the nodes at Kth level.
The steps are as follows:
Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array.
array = [34, -50, 42, 14, -5, 86]
O(1) because the extra space being used (looping vari...
Determine how many triangles exist in an undirected graph. A triangle is defined as a cyclic path of length three that begins and ends at the same vertex.
We call a cycle triangle if its length is 3. So all we need to do is find three vertices such that they all share an edge with each other. In order to find that cycle, we can fix three-pointer ‘i’ , ‘j’ , ‘k’.
If there is an Edge between (i, j), (j, k), and (k, i) then we will add this cycle to our answer.
Algorithm :
Tip 1 : Clear the concept
Tip 2 : Questions are always easy there is only little bit modification
Tip 3 : Always revise the old concept, should write important concept in notebook
Tip 4 : Try to cover important topics not whole syllabus
Tip 5 : Always do questions in strict time limit.
Tip 1 : 1 page resume
Tip 2 : 2-3 projects maximum 4 not more than 4
Tip 3 : Mention your coding profile
I applied via eLitmus and was interviewed in Jan 2021. There were 5 interview rounds.
I would approach the situation with open communication and a willingness to compromise.
Listen to both sides and try to understand their perspectives
Identify common ground and areas of compromise
Propose a solution that benefits both parties
If necessary, involve a neutral third party to mediate the conflict
Maintain professionalism and respect throughout the process
I applied via Referral
I applied via Referral
Some of the top questions asked at the Accenture interview for internship -
The duration of Accenture interview process can vary, but typically it takes about less than 2 weeks to complete.
based on 51 interviews
Interview experience
based on 56.4k reviews
Rating in categories
Application Development Analyst
38.9k
salaries
| ₹3 L/yr - ₹12 L/yr |
Application Development - Senior Analyst
26.9k
salaries
| ₹6.9 L/yr - ₹20.2 L/yr |
Team Lead
24.3k
salaries
| ₹7.1 L/yr - ₹25.5 L/yr |
Senior Software Engineer
18.2k
salaries
| ₹6 L/yr - ₹19.5 L/yr |
Software Engineer
17.4k
salaries
| ₹3.6 L/yr - ₹13.4 L/yr |
TCS
Cognizant
Capgemini
Infosys