Update appNew update is available. Click here to update.
SDE - 1
Accenture
upvote
share-icon
2 rounds | 5 Coding problems
views
0 views
comment
0 comments
upvote
0 upvotes
Interview preparation journey
expand-icon
Preparation
Duration: 3 months
Topics: Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic Programming
Tip
Tip

Tip 1 : Do hands-on practice
Tip 2 : Give attention to details 
Tip 3 : Start as early as possible

Application process
Where: Campus
Eligibility: 7 CGPA, No Backlog
Resume Tip
Resume tip

Tip 1: Keep it updated
Tip 2: Do not use short forms

Interview rounds
01
Round
Easy
Online Coding Interview
Duration90 minutes
Interview date7 Oct 2021
Problems3
Middle Of Linked List

Given the head node of the singly linked list, return a pointer pointing to the middle of the linked list.

If there are an odd n...

view more
Problem approach

Traverse linked list using two pointers. Move one pointer by one and the other pointers by two. When the fast pointer reaches the end slow pointer will reach the middle of the linked list.

Try solving now
Balanced parentheses

Given an integer ‘N’ representing the number of pairs of parentheses, Find all the possible combinations of balanced parentheses with the given number of pairs of parentheses.

Note :

view more
Problem approach

Declare a character stack S.
Now traverse the expression string exp.
If the current character is a starting bracket (‘(‘ or ‘{‘ or ‘[‘) then push it to stack.
If the current character is a closing bracket (‘)’ or ‘}’ or ‘]’) then pop from stack and if the popped character is the matching starting bracket then fine else brackets are not balanced.
After complete traversal, if there is...

view more
Try solving now
3Sum

You are given an array/list ARR consisting of N integers. Your task is to find all the distinct triplets present in the array which adds up to a given number K.

view more
Problem approach

Approach: A simple method is to generate all possible triplets and compare the sum of every triplet with the given value. The following code implements this simple method using three nested loops.
Algorithm:
Given an array of length n and a sum s
Create three nested loop first loop runs from start to end (loop counter i), second loop runs from i+1 to end (loop counter j) and third loop...

view more
Try solving now
02
Round
Easy
HR Round
Duration15 minutes
Interview date5 Nov 2021
Problems2
Basic HR Questions

Tell me about yourself.
Tell me about the projects you have done. and what difficulties you have faced in project

Problem approach

Tip 1: Do quality projects that reflect better on your resume
 

Basic HR Questions

Where do you think you will be in 10 yrs.
Why do you want to join Accenture.

Start a Discussion
Similar interview experiences
company logo
Associate Software Engineer
3 rounds | 3 problems
Interviewed by Accenture
52 views
0 comments
0 upvotes
company logo
Associate Software Engineer
2 rounds | 8 problems
Interviewed by Accenture
157 views
0 comments
0 upvotes
company logo
Software Engineer
2 rounds | 5 problems
Interviewed by Accenture
28 views
0 comments
0 upvotes
company logo
Associate Software Engineer
3 rounds | 4 problems
Interviewed by Accenture
8 views
0 comments
0 upvotes
Companies with similar interview experiencs
company logo
SDE - 1
5 rounds | 12 problems
Interviewed by Amazon
57333 views
15 comments
0 upvotes
company logo
SDE - 1
4 rounds | 5 problems
Interviewed by Microsoft
25819 views
3 comments
0 upvotes
company logo
SDE - 1
3 rounds | 7 problems
Interviewed by Amazon
18071 views
4 comments
0 upvotes