Code360 powered by Coding Ninjas X Naukri.com. Code360 powered by Coding Ninjas X Naukri.com
Accenture interview experience Real time questions & tips from candidates to crack your interview

Associate Software Engineer

Accenture
upvote
share-icon
4 rounds | 4 Coding problems

Interview preparation journey

expand-icon
Journey
I started preparing for the placement from my 3rd year of BTech. Initially, it wasn't easy for me but with the support of my dear ones and consistent efforts I was able to crack the job interview.
Application story
I got to know about the job through one of the job posting channel on telegram.I applied to it then after 2 months I got the slot booking mail for the assesments.After booking the slot in july my assements were conducted. And after clearing the assesments I got the interview call in August.
Why selected/rejected for the role?
I feel I was selected because I was able to communicate with the interviewer properly and shown the necessary skills required for the job.
Preparation
Duration: 6 months
Topics: Data Structures, C++ , DBMS , OOPS , Project
Tip
Tip

Tip 1 :Basics Data Structures and Algorithms (Array , String , Searching , Sorting) must be practiced to get through the recruitment process.
Tip 2 : Clarity of Important topics of DBMS and OOPS must be there.
Tip 3 : One should be Confident during the interview and able to explain his contribution in the project he mentioned in the resume.

Application process
Where: Other
Eligibility: Btech in CS/IT
Resume Tip
Resume tip

Tip 1:Only put what you know or can atleast convince the interviewer.
Tip 2: Atleast have one project with trending technology.

Interview rounds

01
Round
Easy
Online Coding Interview
Duration90
Interview date22 Jul 2023
Coding problem1

This round was held in the morning 09:30 AM.
Platform was smooth

1. Output Question

Pseudo codes were given and we need to give the correct output for the same.

Problem approach

Pseudo codes can be solved with the help of dry run by calculating the output based on the input provided in the question or with the help of random input.

02
Round
Medium
Online Coding Test
Duration45
Interview date22 Jul 2023
Coding problem1

It was a coding round. 
Timing was from 11 AM .

1. Gas Station

Moderate
10m average time
90% success
0/80
Asked in companies
OlaFlipkartPhone Pe

The function accepts two positive integers ‘a’ and ‘unit’ and a positive integer array ‘arr’ of size ‘n’ as its arguments.‘a’ = number of rats present in an area, ‘unit’ = the amount of food each rat consumes and each ith element of array ‘arr’ =  the amount of food present in ‘i+1’ house number, where 0 <= iNote:Return -1 if the array is nullReturn 0 if the total amount of food from all houses is not sufficient for all the rats.Computed values lie within the integer range.Example:Input:a: 7unit: 2n: 8arr: 2 8 3 5 7 4 1 2Output:4Explanation:Total amount of food required for all rats = a* unit= 7 * 2 = 14.The amount of food in 1st houses = 2+8+3+5 = 18. Since, amount of food in 1st 4 houses is sufficient for all the rats. Thus, output is 4.

Problem approach

I first wrote the code for the main function by taking all the necessary inputs and calling the calculate function in it.
Then I coded the calculate function for amount of food required.
Below is the code for the same:

#include
using namespace std;
int calculate (int a, int unit, int arr[], int n)
{
if (n == 0)
return -1;
int totalFoodRequired = a * unit;
int foodTillNow = 0;
int house = 0;
for (house = 0; house < n; ++house)
{
foodTillNow += arr[house];
if (foodTillNow >= totalFoodRequired)
{
break;
}
}
if (totalFoodRequired > foodTillNow)
return 0;
return house + 1;
}
int main ()
{
int a;
cin >> a;
int unit;
cin >> unit;
int n;
cin >> n;
int arr[n];
for (int i = 0; i < n; ++i)
{
cin >> arr[i];
}
cout << calculate (a, unit, arr, n);
return 0;
}

Try solving now
03
Round
Easy
Online Coding Interview
Duration30
Interview date25 Aug 2023
Coding problem1

It was an online communication round
Timing was 10:30 AM

1. Communication Question

Jumble words were spoken and we have to listen and then speak the correct sentence.

Problem approach

Tip 1:Keep you ear and eyes open during this round.
Tip 2: listen and speak clearly.

04
Round
Easy
HR Round
Duration30
Interview date27 Aug 2023
Coding problem1

It was a online interview round and the timing was 10:30 AM.

1. HR Round

Problem approach

Tip 1:Be Confident and happy whenever you are giving interview
Tip 2:Prepare your intro before the interview for getting at ease during the interview
Tip 3: Try to maintain the flow of the conversation and convince the interviewer with your answer.
Tip 4: Its good to tell the interviewer if you don't know any question during the interview ,it will show your ability to accept that you do not know.

Here's your problem of the day

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

Skill covered: Programming

How do you write a single-line comment in C++?

Choose another skill to practice
Join the Discussion
1 reply
profile
4 months ago

fsa

0 upvotes
0 replies
Reply
Similar interview experiences
company logo
Associate Software Engineer
3 rounds | 2 problems
Interviewed by Accenture
2306 views
0 comments
0 upvotes
company logo
Associate Software Engineer
2 rounds | 5 problems
Interviewed by Accenture
5417 views
0 comments
0 upvotes
company logo
Associate Software Engineer
4 rounds | 10 problems
Interviewed by Accenture
1221 views
0 comments
0 upvotes
company logo
Associate Software Engineer
3 rounds | 11 problems
Interviewed by Accenture
2320 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)
4174 views
1 comments
0 upvotes
company logo
Associate Software Engineer
3 rounds | 5 problems
Interviewed by Tata Consultancy Services (TCS)
2562 views
2 comments
0 upvotes
company logo
Associate Software Engineer
2 rounds | 3 problems
Interviewed by Tata Consultancy Services (TCS)
1734 views
0 comments
0 upvotes