Update appNew update is available. Click here to update.
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: 8 months
Topics: Data Structure, Object oriented programming, Networking, Operating system , SQL.
Tip
Tip

Tip 1 : Prepare Company Specific
Tip 2 : Focus to contribute in open source which gives silver lining to your resume.
Tip 3 : Prepare for off campus if you're from tier 2 and tier 3 college

Application process
Where: Campus
Eligibility: 60% in 10th,12th/diploma and Graduation
Resume Tip
Resume tip

Tip 1 : Do contribute in open source 
Tip 2 : Make project in the same profile you wanted to move forward with

Interview rounds
01
Round
Medium
Online Coding Interview
Duration90 minutes
Interview date17 Sep 2022
Problems2
1. Add Two Numbers As Linked Lists

You are given two non-negative numbers 'num1' and 'num2' represented in the form of linked lists.


View more
Try solving now
2. Axel and Shawn’s Football game

Axel and Shawn just finished their football practice and are now tired, so they can’t go back and play football, but they have come up with a new game to make the best out of their time.

View more
Try solving now
02
Round
Easy
Assignment
Duration40 minutes
Interview date20 Sep 2022
Problems1
1. Ninja And The New Year Guests

Ninja has organized the new year party and invited all the programmers for it, as being the programmer also has been invited by Ninja.

View more
Try solving now
03
Round
Medium
Video Call
Duration15 minutes
Interview date24 Sep 2022
Problems1
1. Puzzle

Interviewer given me a problem that how many times we can subtract 5 from 35.

Problem approach

Tip 1 : Do not rush
Tip 2 : Take your time then speak
Tip 3 : Do not get nervous

Join the Discussion
2 replies
profile
mohitucsss |Level 7
2 months ago
// Code for how many times we can subtract 5 from 35.
#include <iostream>

using namespace std;

int main()
{
    int n = 35;
    int count = 0;
    for( int i = 5 ; i <= 35 ;i=i+5){
        n = 35 - i;
        count++;
        if(n<0)
        break;
    ...
See more
0 upvotes
0 replies
Reply
profile
3 months ago
Edited

public class Main {    public static void main(String[] args) {        int number = 35;        int subtractValue = 5;                int count = 0;                while (number >= subtractValue) {            number -= subtractValue;            count++;        }                System.out.println("Number of times we can subtract 5 from 35: " + count);    } }  

0 upvotes
0 replies
Reply
Similar interview experiences
company logo
Associate Software Engineer
2 rounds | 3 problems
Interviewed by Accenture
845 views
0 comments
0 upvotes
company logo
Associate Software Engineer
3 rounds | 3 problems
Interviewed by Accenture
403 views
0 comments
0 upvotes
company logo
Associate Software Engineer
2 rounds | 8 problems
Interviewed by Accenture
798 views
0 comments
0 upvotes
company logo
Associate Software Engineer
3 rounds | 4 problems
Interviewed by Accenture
310 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)
2567 views
1 comments
0 upvotes
company logo
Associate Software Engineer
3 rounds | 5 problems
Interviewed by Tata Consultancy Services (TCS)
1448 views
2 comments
0 upvotes
company logo
Associate Software Engineer
2 rounds | 3 problems
Interviewed by Tata Consultancy Services (TCS)
919 views
0 comments
0 upvotes