Accenture interview experience Real time questions & tips from candidates to crack your interview

System Engineer

Accenture
upvote
share-icon
3 rounds | 3 Coding problems

Interview preparation journey

expand-icon
Preparation
Duration: 2 months
Topics: dsa,computer networking,web frameworks - django,linux -Redhat certification,AWS services
Tip
Tip

Tip 1 : Dsa comes with practice
Tip 2 : Linux and AWS are a huge benefit these days
Tip 3 : networking/os is easy to tackle

Application process
Where: Campus
Eligibility: above 6 CGPA, no pending backlogs
Resume Tip
Resume tip

Tip 1 : Have thorough knowledge of what you write on resume
Tip 2 : provide 1-line description of projects/intern/

Interview rounds

01
Round
Easy
Online Coding Interview
Duration90 Minutes
Interview date24 Aug 2022
Coding problem1

It was in evening 6 pm. I had woken up from a nap. I was pretty calm before the test. Sleeping before test is really good :),helps you calm down

1. Remove Duplicates from Sorted Array

Easy
15m average time
85% success
0/40
Asked in companies
Tata Consultancy Services (TCS)Thought WorksGoldman Sachs

You are given a sorted integer array 'arr' of size 'n'.


You need to remove the duplicates from the array such that each element appears only once.


Return the length of this new array.


Note:
Do not allocate extra space for another array. You need to do this by modifying the given input array in place with O(1) extra memory. 


For example:
'n' = 5, 'arr' = [1 2 2 2 3].
The new array will be [1 2 3].
So our answer is 3.
Problem approach

You need to update the given array, meaning you have to do all the modifications in the same array without using any data structure. Return the length of the updated array which was the goal

1.Good thing in the question was that the array was sorted. All the duplicate elements will be adjacent to each other.
2. I checked if the current and the next element are equal.
3. If they are, I just skip the next element and continued the procedure as long as I encounter the duplicates.
4. If the elements are not duplicate, I just place the next (different) element next to the current element.

The interviewer was very happy with the solution

Try solving now
02
Round
Medium
Face to Face
Duration60 Minutes
Interview date29 Aug 2022
Coding problem1

1. K-th largest Number BST

Easy
10m average time
90% success
0/40
Asked in companies
AmazonHSBCFreshworks

You are given a binary search tree of integers with 'N' nodes. Your task is to return the K-th largest element of this BST.

If there is no K-th largest element in the BST, return -1.

A binary search tree (BST) is a binary tree data structure which has the following properties.

• The left subtree of a node contains only nodes with data less than the node’s data.
• The right subtree of a node contains only nodes with data greater than the node’s data.
• Both the left and right subtrees must also be binary search trees.
Problem approach

1. The inorder traversal of a bst returns the nodes in asc order. 
2. To find the k th smallest node, you just perform inorder traversal and store the output in an array. 
3. Then the k th largest node would be the (n-k) th smallest node, where n is the total nodes in the bst

I first explained this approach to the interviewer. He looked pretty convinced with the approach.
The time complexity of the above solution is O(n), which was the minimum requirement of the interviwer

Try solving now
03
Round
Easy
HR Round
Duration40 Minutes
Interview date31 Aug 2022
Coding problem1

1 pm in the day
atmosphere was fine. I took this round at my home

1. Basic HR questions

1. What project had I worked on during my internship.. the interviewer wanted to know how well I understood the product i was working on during my internship
2. How to resolve conflicting approaches within team, for decisions to resolve the logical issues within strategy decided earlier. 
3. Was kind of role I was looking to work in at Accenture.

Problem approach

Tip 1: If you've worked in an internship, then you can definitely answer these
Tip 2: Answer confidently always! Also, Don't second guess your answers
Tip 3: Replay these kind of management related past experiences in your head before the interview.

Here's your problem of the day

Solving this problem will increase your chance to get selected in this company

Skill covered: Programming

To make an AI less repetitive in a long paragraph, you should increase:

Choose another skill to practice
Similar interview experiences
company logo
Associate Software Engineer
3 rounds | 2 problems
Interviewed by Accenture
3747 views
1 comments
0 upvotes
company logo
System Engineer
2 rounds | 4 problems
Interviewed by Accenture
997 views
0 comments
0 upvotes
company logo
System Engineer
2 rounds | 3 problems
Interviewed by Accenture
906 views
0 comments
0 upvotes
company logo
Application Development Associate
2 rounds | 3 problems
Interviewed by Accenture
1170 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
System Engineer
2 rounds | 2 problems
Interviewed by Cognizant
4965 views
5 comments
0 upvotes
company logo
System Engineer
3 rounds | 3 problems
Interviewed by Tata Consultancy Services (TCS)
2463 views
0 comments
0 upvotes
company logo
System Engineer
2 rounds | 1 problems
Interviewed by Tata Consultancy Services (TCS)
2038 views
0 comments
0 upvotes