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

Associate Software Engineer

Accenture
upvote
share-icon
3 rounds | 4 Coding problems

Interview preparation journey

expand-icon
Preparation
Duration: 1.5 month
Topics: OOPS, DBMS, Operating Systems, C++, Networking
Tip
Tip

Tip 1 : For cognitive round practice questions and solve the previous year questions you will easily find them on internet, I have seen most of the questions have repeated from the previous year.
For Pseudo code try solving questions from the topics such as loops, functions, array, strings, bit manipulation, etc.

Tip 2 : For coding round clear the basic concepts learn any one language and no need to cover full DSA only focus on 
these topics ( Array, String, linked list) that will be more then enough also please solve previous year coding 
questions before appearing, so that you will get a basic idea about, how the questions will be ask, the level of 
question will be Easy to Medium only.

Tip 3 : For Interview round - Wear formal at the time appearing for an interview that will make a good impression and only 
focus on the things which you have mention in your resume whether it skills or projects or trainings, all the questions 
will be ask from the resume only nothing from outside. Also if you feel like you don't know answers of few questions 
you can politely say on "I don't know" instead of giving wrong answers, it will create negative impact.

Application process
Where: Other
Eligibility: 6.5
Resume Tip
Resume tip

Tip 1 : Wear formal at the time appearing for an interview that will make a good impression and only focus on the things 
which you have mention in your resume whether it skills or projects or trainings, all the questions will be ask from 
the resume only nothing from outside.

Tip 2 : If you feel like you don't know answers of few questions you can politely say on "I don't know" instead of giving 
wrong answers, it will create wrong impression.

Interview rounds

01
Round
Easy
Online Coding Interview
Duration135 minutes
Interview date9 Apr 2021
Coding problem2

This round has 2 stages : (Both were elimination rounds)
1) Cognitive & Technical Assessment 
2) Coding Assessment

Upon only clearing Cognitive & Technical Assessment, candidate will be eligible for further rounds.

1) Cognitive & Technical Assessment : (90 mins)
This section contains questions from English Ability, Analytical Reasoning, Numerical Ability, Pseudo coding, Common Application and MS Office, Fundamentals of Networking, Security and Cloud.

2) Coding Assessment : (45 mins)
You are eligible for this round only if you cleared Cognitive & Technical Assessment.
It has 2 coding questions 1 simple and 1 moderate level.

Languages you can use : C, C++, Java, Python.

1. Nth Fibonacci Number

Easy
0/40
Asked in companies
IBMSAP LabsAccenture

The n-th term of Fibonacci series F(n), where F(n) is a function, is calculated using the following formula -

    F(n) = F(n - 1) + F(n - 2), 
    Where, F(1) = 1, F(2) = 1


Provided 'n' you have to find out the n-th Fibonacci Number. Handle edges cases like when 'n' = 1 or 'n' = 2 by using conditionals like if else and return what's expected.

"Indexing is start from 1"


Example :
Input: 6

Output: 8

Explanation: The number is ‘6’ so we have to find the “6th” Fibonacci number.
So by using the given formula of the Fibonacci series, we get the series:    
[ 1, 1, 2, 3, 5, 8, 13, 21]
So the “6th” element is “8” hence we get the output.
Problem approach

#include
using namespace std;

int fib(int n)
{
if (n <= 1)
return n;
return fib(n-1) + fib(n-2);
}

int main ()
{
int n = 9;
cout << fib(n);
getchar();
return 0;
}

Try solving now

2. Missing Numbers

Easy
28m average time
85% success
0/40
Asked in companies
AdobeOlaAccenture

You are given an array 'ARR' of distinct positive integers. You need to find all numbers that are in the range of the elements of the array, but not in the array. The missing elements should be printed in sorted order.

Example:
If the given array is [4, 2, 9] then you should print "3 5 6 7 8". As all these elements lie in the range but not present in the array.
Problem approach

1. Initialize a Boolean array b[] with zero of size equals to the maximum element of the array.
2. Iterate over the given array and mark for each element in the given array mark that index as true in the array b[].
3. Now traverse the given array b[] from index arr[0] and print those index whose value is false as they are the element that is missing in the given array.

Try solving now
02
Round
Easy
HR Round
Duration30 minutes
Interview date18 Apr 2021
Coding problem1

Communication Assessment: (Virtual HR Round)
1) Sentence Mastery
2) Vocabulary
3) Fluency 
4) Pronunciation

1. Basic HR Questions

  1. What are your views on the increasing demand of junk foods in India? Whether they should be completely banned or not?
  2. What are your strengths and weakness?

 

Problem approach

Tip 1 : Never lie in front of HR

Tip 2 : Be confident, Don't Hesitate in giving answers or asking your doubts.

03
Round
Easy
Video Call
Duration30 minutes
Interview date29 Apr 2021
Coding problem1

1. Basic Interview Questions

Tell me about Yourself.

Define your major projects and what are the key features of your project?

How do you handle tough subjects?

What are Acid Properties?

Define Normalisation.

What is the difference between tuple and list?

 

 

Problem approach

Tip 1 : Be honest

Tip 2 : Don't afraid to say “I don't know” if you are unaware about the answer

Tip 3 : Try to be fluent.

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
Associate Software Engineer
4 rounds | 10 problems
Interviewed by Accenture
2174 views
0 comments
0 upvotes
company logo
Associate Software Engineer
3 rounds | 11 problems
Interviewed by Accenture
4986 views
1 comments
0 upvotes
company logo
Associate Software Engineer
4 rounds | 3 problems
Interviewed by Accenture
371 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
Associate Software Engineer
2 rounds | 2 problems
Interviewed by Tata Consultancy Services (TCS)
5154 views
1 comments
0 upvotes
company logo
Associate Software Engineer
3 rounds | 5 problems
Interviewed by Tata Consultancy Services (TCS)
3313 views
2 comments
0 upvotes
company logo
Associate Software Engineer
2 rounds | 3 problems
Interviewed by Tata Consultancy Services (TCS)
2363 views
0 comments
0 upvotes