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

Application Development Associate

Accenture
upvote
share-icon
2 rounds | 3 Coding problems

Interview preparation journey

expand-icon
Journey
I applied through Accenture campus hiring 2023 and got the opportunity to get an Interview for the Application Development Associate role. i got HR interview mail invitation
Application story
Accenture hires around 30-40 % of candidates that pass its final Assesment round. To go through the Recruitment Process, you have to meet the bare minimum eligibility: Grade point average of 60% or above in Class 10th and 12th More than 6.5 CGPA in graduation
Why selected/rejected for the role?
I got selected for my problem solving skills, Good communication skill,Eager to learn new things,so these are the things that's why Accenture showing faith in me.
Preparation
Duration: 2.5 Months
Topics: Data Structures, Java ,Python ,Cloud and Networking
Tip
Tip

Tip 1 : Always keep learning
Tip 2 : Create account on Hackerank & Leetcode
Tip 3 : Do atleast 1 project

Application process
Where: Other
Eligibility: Grade point average of 60% or above in Class 10th and 12th More than 6.5 CGPA in graduation
Resume Tip
Resume tip

Tip 1 : be clear with resume
Tip 2 : do not put false things

Interview rounds

01
Round
Easy
Online Coding Interview
Duration60 Minutes
Interview date14 Apr 2023
Coding problem2

Round 1 at Accenture is an online test that consists of 5 sections (Mathematics Ability, Logical Reasoning, Verbal Ability, Pseudocode, and Puzzles). The total duration of the test is 60 minutes. Each section of the test has specific time allocated to them and all questions of that section need to be completed in that specific period. There is no negative marking but you cannot navigate between the questions or sections.

1. OS Question

Why we use semaphore?

2. Largest Element in the Array

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

Given an array ‘arr’ of size ‘n’ find the largest element in the array.


Example:

Input: 'n' = 5, 'arr' = [1, 2, 3, 4, 5]

Output: 5

Explanation: From the array {1, 2, 3, 4, 5}, the largest element is 5.
Try solving now
02
Round
Easy
HR Round
Duration30 Minutes
Interview date4 May 2023
Coding problem1

The HR interview round assesses your overall personality and suitability for the role. You can expect questions on your skills, hobbies, reasons for applying for Mindtree, educational background and expectations from your position

1. Basic HR Questions

Tell me about yourself.
Tell me about your project and internship experience.
What are your hobbies?

Problem approach

Tip 1 : Focus on the way you present your projects.
Tip 2 : Be polite and confident

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
5 replies
profile
8 months ago

#include <bits/stdc++.h> 

int largestElement(vector<int> &arr, int n) {

    // Write your code here.

    return *max_element(arr.begin(), arr.end());

}

 

0 upvotes
0 replies
Reply
profile
10 months ago
import java.util.* ;
import java.io.*; 

public class Solution {

    static int largestElement(int[] arr, int n) {
       int x = arr[0];
       for(int i=0;i<arr.length;i++){
           if(arr[i]>x){
               x=arr[i];
           }
       }
       return x;

    }
    public static void main(String[] args){
        int arr[]={1,2,3,4,5};
        int n=arr.length;
        System.out.print(largestElement(arr,n));
    }
}
0 upvotes
0 replies
Reply
profile
11 months ago
Comment Removed
0 upvotes
0 replies
Reply
profile
15 Sep 2023

5

0 upvotes
0 replies
Reply
profile
5 Sep 2023

I am also apply in Accenture. how can i   improve myself  so that i can crack c accenture exam.  please  guide me.

2 upvotes
0 replies
Reply
Similar interview experiences
company logo
Application Development Associate
3 rounds | 4 problems
Interviewed by Accenture
9776 views
1 comments
0 upvotes
company logo
Application Development Associate
2 rounds | 3 problems
Interviewed by Accenture
1089 views
0 comments
0 upvotes
company logo
Application Development Associate
3 rounds | 7 problems
Interviewed by Accenture
3372 views
0 comments
0 upvotes
company logo
Application Development Associate
2 rounds | 3 problems
Interviewed by Accenture
670 views
0 comments
0 upvotes