Accenture solutions private limited interview experience Real time questions & tips from candidates to crack your interview

SDE - 1

Accenture solutions private limited
upvote
share-icon
2 rounds | 3 Coding problems

Interview preparation journey

expand-icon
Journey
My journey into full-stack development began with mastering the fundamentals of HTML, CSS, and JavaScript, which provided a solid foundation for building web applications. From there, I delved into frameworks like React and Node.js to enhance my skill set. Applying these technologies, I created impactful projects such as QuizMaster, a platform for creating and sharing quizzes, and an e-commerce app with seamless cart functionality. I also explored data science and AI by working on projects like Brain Tumor Detection using CNNs and Credit Card Fraud Detection using XGBoost, which helped me integrate machine learning techniques with software development. Platforms like GitHub and Indeed served as stepping stones, providing resources and internship opportunities, including a research internship at MAIT and a summer internship at Cantilever. These experiences allowed me to refine my problem-solving abilities and build production-ready applications. Preparing for internships and roles involved revisiting core concepts like data structures, algorithms, and design patterns, alongside practicing coding problems and developing AI-based solutions. This journey has underscored the importance of consistency, curiosity, and hands-on practice, shaping my passion for technology and innovation.
Application story
The Accenture on-campus recruitment process was a valuable learning experience. It began with an online test assessing aptitude and technical skills, followed by a technical interview that allowed me to showcase my technical knowledge and problem-solving abilities. This journey enhanced my confidence and prepared me for future opportunities.
Why selected/rejected for the role?
From my perspective, the rejection after the interview could have been due to a misalignment between my skills and the specific requirements of the role. While I did my best to showcase my technical knowledge and experiences, it’s possible that certain areas didn't fully meet the expectations for the position. Additionally, the competition was strong, and the company may have found a candidate whose profile more closely matched their immediate needs. Nevertheless, the process was a valuable learning experience, and I plan to use the insights gained to improve further.
Preparation
Duration: 1 month
Topics: Arrays, Strings, Linked List, Trees, Hashmaps, OOPS, Dynamic Programming
Tip
Tip

Tip 1: Understand common patterns, such as sliding window and prefix sums, for optimization.

Tip 2: Solve problems involving binary search tree operations (e.g., insertion, deletion, and search).

Tip 3: Focus on dynamic programming techniques for problems like the longest common subsequence.

Application process
Where: Campus
Eligibility: Above 7 CGPA (Salary package: 4.5 LPA)
Resume Tip
Resume tip

Tip 1: Add factual information about the projects you have completed.
Tip 2: Mention only the skills you genuinely possess, not fake ones.

Interview rounds

01
Round
Easy
Online Coding Interview
Duration90 minutes
Interview date10 Sep 2024
Coding problem2

I was given a test with 60 MCQs based on aptitude, vocabulary and MS Office, followed by 2 coding problems.

1. Second largest element in the array

Easy
15m average time
80% success
0/40
Asked in companies
Info Edge India (Naukri.com)OracleHCL Technologies

Given an array of integers, find the second largest element in the array. If there is no second largest element, return -1.

Problem approach

Array: [12, 35, 1, 10, 34, 1]

Start with largest = -1 and second_largest = -1.
First element: 12 becomes the largest (largest = 12).
Next element: 35 is greater than 12, so 35 becomes the largest, and 12 becomes the second largest (largest = 35, second_largest = 12).
Next elements (1, 10, 34) are smaller than 35 but greater than 12, so second_largest becomes 34 after processing all elements.
Final result: The second largest value is 34.

Try solving now

2. Team Game

Easy
0/40

You are given an array of characters, where each character represents the outcome of a game. The character 'A' indicates a win for Team A, and the character 'B' indicates a win for Team B. Your task is to count the number of wins for each team and determine which team has won the most games.

Problem approach

Array: ['B', 'A', 'B', 'B', 'A']

Initialize countA = 0 and countB = 0.
Traverse the array:
First element is 'B', so countB = 1.
Second element is 'A', so countA = 1.
Third element is 'B', so countB = 2.
Fourth element is 'B', so countB = 3.
Fifth element is 'A', so `countA = 2

Try solving now
02
Round
Easy
Video Call
Duration30 minutes
Interview date19 Sep 2024
Coding problem1

1. First non repeating character

Easy
15m average time
80% success
0/40
Asked in companies
HCL TechnologiesWells FargoAmazon

You are given a string s. Your task is to find the first non-repeated character in the string and return it. If no such character exists, return -1.

Problem approach

Input: "level"
Count Frequencies:
'l' appears 2 times
'e' appears 2 times
'v' appears 1 time
First Non-Repeated Character:
The first character with a frequency of 1 is 'v'.
Output: 'v'

Try solving now

Here's your problem of the day

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

Skill covered: Programming

What is recursion?

Choose another skill to practice
Similar interview experiences
SDE - 1
2 rounds | 3 problems
Interviewed by Accenture solutions private limited
2493 views
0 comments
0 upvotes
SDE - 1
2 rounds | 3 problems
Interviewed by Accenture solutions private limited
1294 views
0 comments
0 upvotes
SDE - 1
2 rounds | 4 problems
Interviewed by Accenture solutions private limited
1211 views
0 comments
0 upvotes
SDE - 1
3 rounds | 3 problems
Interviewed by Accenture solutions private limited
0 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
SDE - 1
5 rounds | 12 problems
Interviewed by Amazon
114579 views
24 comments
0 upvotes
company logo
SDE - 1
4 rounds | 5 problems
Interviewed by Microsoft
57825 views
5 comments
0 upvotes
company logo
SDE - 1
3 rounds | 7 problems
Interviewed by Amazon
34961 views
7 comments
0 upvotes