Upload Button Icon Add office photos

Filter interviews by

Accenture Junior Software Developer Interview Questions and Answers

Updated 14 Jun 2024

Accenture Junior Software Developer Interview Experiences

5 interviews found

Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed before Jun 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Coding questions based on fibonaci like that.

Round 2 - Technical 

(2 Questions)

  • Q1. Wrire Sql query
  • Q2. C#basic question
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 

Easy round, need to code few programs.

Round 3 - HR 

(5 Questions)

  • Q1. Easy, Basic questions was asked.
  • Q2. Tell us about yourself
  • Q3. What kind of projects previously worked?
  • Q4. Why looking for job change.
  • Q5. What's your current salary.

Junior Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Given n coins for two players playing a game. Each player picks c ... read more
asked in Pisolv Tech
Q2. Did You Know what is golang and where did You uses that? Why You ... read more
Q3. int x:4; what does it mean ? a) x is a four digit number. b)x is ... read more
Q4. what is a lint? a) Analyzing tool. b)compiler. c)debugger. d)inte ... read more
asked in Infogain
Q5. What is deadlock .what are the conditions of deadlock?
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Dec 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Aptitude Test 

Some basic aptitude questions and technical questions basics only

Round 3 - Coding Test 

Easy to medium question on data structures and algorithms

Round 4 - HR 

(2 Questions)

  • Q1. Tell me about your self and some basic hr questions related to company details
  • Q2. Why should i hire you

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare prep insta coding questions it is more than enough
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed before Sep 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 

General aptitude test including logical ability

Round 2 - Technical 

(1 Question)

  • Q1. Tell me about yourself.

Accenture interview questions for designations

 Software Developer

 (229)

 Junior Software Engineer

 (6)

 Junior Java Developer

 (1)

 Junior Web Developer

 (1)

 Junior Android Developer

 (1)

 Junior Associate Software Engineer

 (1)

 Junior Software Test Engineer

 (1)

 Associate Software Developer

 (39)

Round 1 - Aptitude Test 

Basic aptitude questions, easy to clear.

Round 2 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. What are your strengths

Interview Preparation Tips

Interview preparation tips for other job seekers - Gate aptitude preparation, basic coding knowledge is enough.

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. How to see yourself in next 3 years
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Python full stack coding, Java full stack

Round 2 - Group Discussion 

Discuss about coding,aptitude

Interview Preparation Tips

Topics to prepare for HCLTech Junior Software Developer interview:
  • Python full stack
  • Java full stack
Interview preparation tips for other job seekers - Improve my skills and then self confidence
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Nov 2023. There were 5 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 - Aptitude Test 

Reasoning and arithmetic questions and sudoo codes and english grammar

Round 3 - Coding Test 

C, C++, JAVA, PYTHON programs

Round 4 - Technical 

(2 Questions)

  • Q1. What is inheritance, polymer, oop, pop, overloading, different types of oops concept
  • Ans. 

    Inheritance is a concept in object-oriented programming where a class inherits properties and behaviors from another class.

    • Inheritance allows for code reusability and promotes a hierarchical relationship between classes.

    • Example: Class B inherits from Class A, gaining access to its attributes and methods.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • Example: A method th...

  • Answered by AI
  • Q2. Any coding questions
Round 5 - HR 

(1 Question)

  • Q1. Discussing package and one or two topics

Interview Preparation Tips

Interview preparation tips for other job seekers - I am so excited in thses participate interviews
Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Coding Test 

2 questions . 1 arrays , 2nd double sliding window

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Sep 2023. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Basics of C language.
  • Ans. C language is a procedural oriented language,rich In library, Feature of modularity,easy to extend, memory management language.
  • Answered Anonymously
  • Q2. What is input and output functions used in c language,..ect
  • Ans. 

    Input and output functions in C language are used to interact with the user and the external environment.

    • Input functions in C include scanf() for reading input from the user and getchar() for reading a single character.

    • Output functions in C include printf() for displaying output to the user and putchar() for displaying a single character.

    • File input and output functions in C include fopen(), fclose(), fread(), and fwrit

  • Answered by AI
  • Q3. What are header files,and use .?
  • Ans. 

    Header files contain declarations of functions, variables, and constants used in a program.

    • Header files are included in source code files using #include directive.

    • They help in organizing code by separating declarations from implementation.

    • Common header files in C/C++ include , , and .

  • Answered by AI
  • Q4. Datatypes in c language.
  • Ans. 

    Datatypes in C language include int, float, char, double, and more.

    • Basic datatypes: int, float, char, double

    • Derived datatypes: arrays, pointers, structures, unions

    • Enumerated datatypes: enum

    • Void datatype: void

    • Example: int num = 10; char letter = 'A'; float value = 3.14;

  • Answered by AI

Skills evaluated in this interview

Accenture Interview FAQs

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

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

  1. Easy, Basic questions was ask...read more
  2. Wrire Sql qu...read more
  3. C#basic quest...read more

Tell us how to improve this page.

People are getting interviews through

based on 3 Accenture interviews
Campus Placement
Company Website
67%
33%
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates
Accenture Junior Software Developer Salary
based on 32 salaries
₹3 L/yr - ₹8 L/yr
17% more than the average Junior Software Developer Salary in India
View more details

Accenture Junior Software Developer Reviews and Ratings

based on 6 reviews

3.9/5

Rating in categories

4.1

Skill development

3.7

Work-Life balance

4.0

Salary & Benefits

3.7

Job Security

2.8

Company culture

3.9

Promotions/Appraisal

4.0

Work Satisfaction

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

₹3 L/yr - ₹12 L/yr

Application Development - Senior Analyst
26.2k salaries
unlock blur

₹6.8 L/yr - ₹20.2 L/yr

Team Lead
24.1k salaries
unlock blur

₹7 L/yr - ₹25.2 L/yr

Senior Software Engineer
18.3k salaries
unlock blur

₹6 L/yr - ₹19 L/yr

Software Engineer
17.6k salaries
unlock blur

₹3.6 L/yr - ₹12.8 L/yr

Explore more salaries
Compare Accenture with

TCS

3.7
Compare

Cognizant

3.8
Compare

Capgemini

3.8
Compare

Infosys

3.7
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview