Upload Button Icon Add office photos

Accenture

Compare button icon Compare button icon Compare

Filter interviews by

Accenture Software Developer Intern Interview Questions and Answers

Updated 13 Dec 2024

Accenture Software Developer Intern Interview Experiences

4 interviews found

Software Developer Intern Interview Questions & Answers

user image Narasimha Gundavarapu

posted on 13 Dec 2024

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at SRM university (SRMU) and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

It is easy and not that much tough.

Round 2 - Coding Test 

Both questions from strings

Round 3 - HR 

(2 Questions)

  • Q1. Introduce yourself
  • Ans. 

    I am a passionate software developer with experience in Java, Python, and web development.

    • Experienced in Java and Python programming languages

    • Proficient in web development technologies like HTML, CSS, and JavaScript

    • Currently pursuing a degree in Computer Science

  • Answered by AI
  • Q2. Projects

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on resume projects
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

Blood relation, date and time

Round 2 - Coding Test 

Beginner level questions

Round 3 - verbal 

(2 Questions)

  • Q1. Repeat what's written on the screen
  • Q2. Repeat what you hear
Round 4 - HR 

(1 Question)

  • Q1. Basic Introduction questions, followed by technical interview as well

Software Developer Intern Interview Questions Asked at Other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an ar ... read more
asked in Amazon
Q2. Fish Eater Problem Statement In a river where water flows from le ... read more
asked in Apple
Q3. Kevin and his Fruits Problem Statement Kevin has 'N' buckets, eac ... read more
asked in CommVault
Q4. Sliding Maximum Problem Statement Given an array of integers ARR ... read more
Q5. Reverse Words in a String: Problem Statement You are given a stri ... read more
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at SNDT College of Arts and Smt Champaben Bhogilal College of Commerce and Economics for Women, Mumbai and was interviewed in Dec 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 

English grammar - paragraph question answer, basic Maths questions - time series, distances, sequences. and technical questions related to sql & java

Round 2 - One-on-one 

(1 Question)

  • Q1. About projects, teamwork, experience, practical knowledge

I was interviewed in Nov 2020.

Round 1 - Coding Test 

(3 Questions)

Round duration - 120 Minutes
Round difficulty - Easy

Aptitude+Coding
Both the rounds were easy only student should have confidence in himself.
Coding Round 3 question-:
1.Array related
2.Level order traversal
3. Graph

  • Q1. 

    Sum At Kth Level

    Given the root of a binary tree, calculate the sum of all nodes located at the Kth level from the top. Consider the root node as level 1, and each level beneath it sequentially increases ...

  • Ans. Inorder Traversal.

    The idea is to do an inorder traversal of the tree, and at each level, we go down, reduce K by 1, and all the states where K = 1, add that node's value in our answer, and recursively do this for all the nodes at Kth level.

     

    The steps are as follows: 

    • If the ‘root’ is NULL return 0, since that node does not exist.
    • If K is equal to 1, then return current nodes data because the given node is at th...
  • Answered Anonymously
  • Q2. 

    Maximum Subarray Sum Problem Statement

    Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array.

    Example:

    Input:
    array = [34, -50, 42, 14, -5, 86]
    Out...
  • Ans. Brute Force Approach
    1. Create a nested loop. The outer loop will go from i = 0 to i = n - k. This will cover the starting indices of all k-subarrays
    2. The inner loop will go from j = i to j = i + k - 1. This will cover all the elements of the k-subarray starting from index i
    3. Keep track of the maximum element in the inner loop and print it.
    Space Complexity: O(1)Explanation:

    O(1) because the extra space being used (looping vari...

  • Answered Anonymously
  • Q3. 

    Number of Triangles in an Undirected Graph

    Determine how many triangles exist in an undirected graph. A triangle is defined as a cyclic path of length three that begins and ends at the same vertex.

    Input...

  • Ans. Brute Force

    We call a cycle triangle if its length is 3. So all we need to do is find three vertices such that they all share an edge with each other. In order to find that cycle, we can fix three-pointer ‘i’ , ‘j’ , ‘k’.

    If there is an Edge between (i, j), (j, k), and (k, i) then we will add this cycle to our answer.

    Algorithm : 

    • Initialize first pointer ‘i’ with 0 value, it will loop till ‘V’ where V is the number o...
  • Answered Anonymously

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from NATIONAL INSTITUTE OF TECHONOLGY, Hamirpur. I applied for the job as SDE - Intern in BengaluruEligibility criteriaNAAccenture interview preparation:Topics to prepare for the interview - STL, Trees, Graph, DP, Heap, Stack and QueueTime required to prepare for the interview - 5 MonthsInterview preparation tips for other job seekers

Tip 1 : Clear the concept
Tip 2 : Questions are always easy there is only little bit modification
Tip 3 : Always revise the old concept, should write important concept in notebook
Tip 4 : Try to cover important topics not whole syllabus
Tip 5 : Always do questions in strict time limit.

Application resume tips for other job seekers

Tip 1 : 1 page resume
Tip 2 : 2-3 projects maximum 4 not more than 4
Tip 3 : Mention your coding profile

Final outcome of the interviewRejected

Skills evaluated in this interview

Accenture interview questions for designations

 Software Engineer Intern

 (1)

 Software Developer

 (237)

 Associate Software Developer

 (38)

 Senior Software Developer

 (15)

 Software Developer fresher

 (10)

 Junior Software Developer

 (5)

 Java Software Developer

 (4)

 Software Application Developer

 (2)

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via LinkedIn and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Test has many reasoning and coding question work on building logic and data Structure

Round 2 - Coding Test 

Coding round is kind of tough practice dsa questions and build your logic

Interview Preparation Tips

Interview preparation tips for other job seekers - work on skills
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at BRACT's Vishwakarma Institute of Information Technology, Pune and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Leetcode medium questions was asked on hackerrank

Round 2 - Technical 

(2 Questions)

  • Q1. What is database, system design
  • Ans. 

    A database is a structured collection of data, while system design involves creating a plan for how different components of a system will work together.

    • Database is used to store and organize data in a structured manner.

    • System design involves creating a plan for how different components of a system will interact and work together efficiently.

    • Examples of databases include MySQL, PostgreSQL, and MongoDB.

    • Examples of system...

  • Answered by AI
  • Q2. Standard leetcode questions + hashmaps + projects

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. Please introduce yourself .
  • Q2. Why do you want to join tech mahindra
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Nov 2023. There were 2 interview rounds.

Round 1 - Technical 

(5 Questions)

  • Q1. Conduct a phone or video interview
  • Q2. Consider how candidates may work in your team
  • Q3. Conduct a more in depth interview
  • Q4. Assign a remote coding assessment
  • Ans. 

    Assign a remote coding assessment

    • Clearly define the problem statement and requirements

    • Provide a set of input/output examples for testing

    • Specify the programming language and any constraints

    • Set a time limit for completion

    • Include instructions for submission and evaluation

  • Answered by AI
  • Q5. Request previous work samples
Round 2 - Assignment 

The task of Assignment

Interview Preparation Tips

Interview preparation tips for other job seekers - Every job has the very important of the person of Future carrier,life,family💖so even small job has and do that job very importantly so that's y I like this job
Interview experience
3
Average
Difficulty level
Hard
Process Duration
4-6 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Moderate difficulty level questions were asked

Round 2 - Coding Test 

High difficulty level questions were asked

Interview Preparation Tips

Interview preparation tips for other job seekers - Tough process
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Birla Institute of Technology and Science (BITS), Pilani and was interviewed in Nov 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Coding Test 

Coding test was easy, there were 2 questions.

Round 3 - Technical 

(1 Question)

  • Q1. Square root of a number in log n time
  • Ans. 

    Using binary search, square root of a number can be found in log n time.

    • Choose a range for the square root

    • Use binary search to find the square root within the range

    • Adjust the range based on whether the guess is too high or too low

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. Basic questions on leadership and some problem based.
  • Q2. Basics questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident and try to give as many mock interviews as possible

Skills evaluated in this interview

Accenture Interview FAQs

How many rounds are there in Accenture Software Developer Intern interview?
Accenture interview process usually has 3-4 rounds. The most common rounds in the Accenture interview process are Aptitude Test, Coding Test and HR.
What are the top questions asked in Accenture Software Developer Intern interview?

Some of the top questions asked at the Accenture Software Developer Intern interview -

  1. Basic Introduction questions, followed by technical interview as w...read more
  2. Repeat what's written on the scr...read more
  3. Repeat what you h...read more

Tell us how to improve this page.

Accenture Software Developer Intern Interview Process

based on 3 interviews

Interview experience

3
  
Average
View more
Accenture Software Developer Intern Salary
based on 5 salaries
₹3 L/yr - ₹5 L/yr
41% less than the average Software Developer Intern Salary in India
View more details

Accenture Software Developer Intern Reviews and Ratings

based on 5 reviews

4.5/5

Rating in categories

4.2

Skill development

4.5

Work-life balance

4.3

Salary

3.5

Job security

4.4

Company culture

3.1

Promotions

4.4

Work satisfaction

Explore 5 Reviews and Ratings
Application Development Analyst
38.9k salaries
unlock blur

₹3 L/yr - ₹12 L/yr

Application Development - Senior Analyst
27k salaries
unlock blur

₹6.9 L/yr - ₹17.5 L/yr

Team Lead
24.3k salaries
unlock blur

₹7.1 L/yr - ₹25.6 L/yr

Senior Software Engineer
18.2k salaries
unlock blur

₹6 L/yr - ₹19.5 L/yr

Software Engineer
17.4k salaries
unlock blur

₹3.6 L/yr - ₹13.4 L/yr

Explore more salaries
Compare Accenture with

TCS

3.7
Compare

Cognizant

3.8
Compare

Capgemini

3.7
Compare

Infosys

3.6
Compare
Did you find this page helpful?
Yes No
write
Share an Interview