Upload Button Icon Add office photos

Accenture

Compare button icon Compare button icon Compare

Filter interviews by

Accenture Java Application Developer Interview Questions and Answers

Updated 21 Apr 2021

Accenture Java Application Developer Interview Experiences

1 interview found

Interview Questionnaire 

6 Questions

  • Q1. 1.What is Overloading, Overriding, different types of Comstructors . Why do we need it?
  • Ans. 

    Overloading is when multiple methods have the same name but different parameters. Overriding is when a subclass provides a different implementation of a method from its superclass. Constructors are special methods used to initialize objects.

    • Overloading allows us to have multiple methods with the same name but different parameters, providing flexibility and code reusability.

    • Overriding allows a subclass to provide its ow...

  • Answered by AI
  • Q2. Can we overload the main method or constructor?
  • Ans. 

    Yes, we can overload the main method and constructor in Java.

    • Overloading means having multiple methods or constructors with the same name but different parameters.

    • In the case of the main method, we can have multiple main methods with different parameter lists.

    • For example, we can have a main method with the signature 'public static void main(String[] args)' and another with 'public static void main(String arg)'

    • Similarly...

  • Answered by AI
  • Q3. Can we override the static method?
  • Q4. Interface, abstraction , static and final keyword, Hibernate , JDBC Connectivity, Web application
  • Q5. Which is the biggest challenge you have ever faced and how you overcome it.
  • Q6. Any escalation you faced in. a recent project and how you handled the pressure.

Skills evaluated in this interview

Interview questions from similar companies

I applied via Campus Placement and was interviewed before Jun 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Simple program
  • Q2. I wrote a simple program in C

Interview Preparation Tips

Interview preparation tips for other job seekers - Be bold and confident

Java Application Developer Interview Questions Asked at Other Companies

asked in Accenture
Q1. 1.What is Overloading, Overriding, different types of Comstructor ... read more
asked in IBM
Q2. Statement vs prepared statements(whats the use of pstmts over stm ... read more
asked in Accenture
Q3. Can we overload the main method or constructor?
asked in Accenture
Q4. Can we override a static method?

I applied via Naukri.com and was interviewed before Oct 2019. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What technical challenges have you faced in your work till now and how did you overcome it?
  • Ans. 

    Faced various technical challenges, including system integration and performance optimization, which I successfully navigated through strategic solutions.

    • Integration of legacy systems with modern applications: I utilized APIs and middleware to ensure seamless data flow.

    • Performance bottlenecks in a web application: Implemented caching strategies and optimized database queries, resulting in a 40% speed increase.

    • Debugging...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be truthful and give detailed explanation of the issues and how it was resolved. Explain the severity of the problem and what blockage it had caused in your daily work. How did you chose a solution and how fast was it implemented.

I applied via Naukri.com and was interviewed before Apr 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Technical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - I have visited interview location on morning 7am DLF block Hyderabad. Buy my interview was taken in evening 6:45pm. That was not an interview test it was a patience test.

What people are saying about Accenture

View All
lavenderalmond
Verified Icon
2d
works at
Accenture
Which offer should I choose – BP vs UKG (SRE Role)?
Got two offers: 🔹 BP – ₹10 LPA (Pune, Hybrid) Stable MNC, decent WLB, slower growth In-hand ~₹62K/month 🔹 UKG – ₹20 LPA (Noida, Hybrid) Strong perks (₹6L insurance, wellness, equity, bonus), high pay In-hand ~₹1.4L/month, but higher expectations Looking for: SRE growth, WLB, learning, and long-term stability What would you pick and why? Any feedback from current/ex-employees is appreciated!
Got a question about Accenture?
Ask anonymously on communities.

Interview Questionnaire 

3 Questions

  • Q1. Tell me something about yourself
  • Ans. 

    I am a passionate software developer with 5 years of experience in developing web applications using various technologies.

    • 5 years of experience in software development

    • Proficient in developing web applications

    • Skilled in using various technologies

    • Passionate about coding and problem-solving

  • Answered by AI
  • Q2. What is the difference between encapsulation and polymorphism?
  • Q3. What do you mean by deadlock in OS?
  • Ans. 

    Deadlock is a situation in which two or more processes are unable to proceed because each is waiting for the other to release a resource.

    • Deadlock occurs when two or more processes are stuck in a circular waiting state.

    • It happens when processes compete for resources and each process holds a resource that another process needs.

    • Four necessary conditions for deadlock are mutual exclusion, hold and wait, no preemption, and ...

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: We were asked to solve a questionnaire containing 25 questions based on logical reasoning and basic mathematics. We went to the test center in their recruitment center where there were many desktops for the candidates to sit and give the test. At the entrance, they checked the letter we got from them to authenticate us.Then they gave us a login ID and password. Exactly when the test started, the portal became active and we were asked to enter the credentials. I completed the test in half the time as it was pretty easy and straightforward.
Tips: Practice simple aptitude questions for greater speed and accuracy.
Duration: 1 hour
Total Questions: 20

Round: Group Discussion
Experience: Ten candidates who were shortlisted from the written test attended the group discussion. The topic given to us was fairly simple and lucky for me, I used to work as an anchor, and being a strong feminist person, I had a lot of valid points to put forward. I was the one to start the discussion, and I felt I was the best speaker there. The topic was something that I follow regularly, yet I came across a few unique points from the other candidates.
Tips: Improve your English speaking skills. Be assertive and speak concisely.
Duration: 15 minutes

Round: HR Interview
Experience: The interview basically revolved around this one question which had a few follow-up questions, such as who all are there in my family, what are my strengths and weaknesses, and why am I fit for this job.
Tips: Be confident and honest about yourself.

Round: Technical Interview
Experience: I tried to be as calm and confident as possible during the whole of the interview

College Name: Guru Nanak Institute of Technology (GNIT)

Skills evaluated in this interview

I appeared for an interview before Nov 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

Timing was around 10am
It was quite a normal online examination kind of environment 
People from the company were there to invigilate 
All were quite nice and helpful in case the exam got stuck

  • Q1. 

    Ninja and Alien Language Order Problem

    An alien dropped its dictionary while visiting Earth. The Ninja wants to determine the order of characters used in the alien language, based on the given list of wor...

  • Ans. 

    Determine the order of characters in an alien language based on a list of words.

    • Create a graph data structure to represent the relationships between characters in the words.

    • Perform a topological sort on the graph to find the order of characters.

    • Return the smallest lexicographical order of characters as the result.

  • Answered by AI
  • Q2. 

    Check Duplicate Within K Distance

    Given an array of integers arr of size N and an integer K, determine if there are any duplicate elements within a distance of K from each other in the array. Return "true...

  • Ans. 

    Check if there are any duplicate elements within a distance of K from each other in the array.

    • Iterate through the array and keep track of the indices of elements using a hashmap.

    • For each element, check if it already exists in the hashmap within distance K.

    • Return true if a duplicate is found within distance K, otherwise return false.

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 30 minutes
Round difficulty - Medium

Timing was 2pm when it started
Interviewer was polite

  • Q1. 

    Kth Largest Element Problem Statement

    Ninja enjoys working with numbers, and Alice challenges him to find the Kth largest value from a given list of numbers.

    Input:

    The first line contains an integer 'T...
  • Ans. 

    The task is to find the Kth largest element in a given list of numbers for each test case.

    • Read the number of test cases 'T'

    • For each test case, read the number of elements 'N' and the Kth largest number to find 'K'

    • Sort the array in descending order and output the Kth element

  • Answered by AI
Round 3 - HR 

Round duration - 20 minutes
Round difficulty - Easy

Timing was 9 am onwards 
Interviewer was good enough

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Developer in DelhiEligibility criteriaAbove 7 CGPA with no pending backlogsWipro Limited interview preparation:Topics to prepare for the interview - Java, C++, DBMS, Data Structures, Dot net, HTML, CSS, JSTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Focus on specialization of any one skill and keep a basic knowledge of all the skills you mention in your resume
Tip 2 : Gain confidence in presenting yourself by practicing well before
Tip 3 : Gain a basic knowledge of the company you go for selection

Application resume tips for other job seekers

Tip 1 : Resume should be simple and precise but pretty smart to cover your skills 
Tip 2 : Mention what you really know,no false things

Final outcome of the interviewRejected

Skills evaluated in this interview

I appeared for an interview before Oct 2016.

Interview Questionnaire 

2 Questions

  • Q1. C programming and subject related questions
  • Q2. Basic hr questions

Interview Preparation Tips

Round: Test
Experience: Aptitude test
Duration: 1 hour 20 minutes
Total Questions: 35

College Name: Bist bhopal
Are these interview questions helpful?

I appeared for an interview in Nov 2016.

Interview Questionnaire 

2 Questions

  • Q1. Explain paging
  • Ans. 

    Paging is a memory management technique used in operating systems to divide memory into fixed-size blocks called pages.

    • Paging allows for efficient memory allocation and management.

    • It helps in reducing external fragmentation.

    • Pages are stored in a page table, which maps logical addresses to physical addresses.

    • When a process needs to access a page, the page table is used to translate the logical address to a physical addr...

  • Answered by AI
  • Q2. Explain operating system
  • Ans. 

    An operating system is a software that manages computer hardware and software resources and provides common services for computer programs.

    • An operating system acts as an intermediary between the user and the computer hardware.

    • It provides a user interface to interact with the computer system.

    • It manages memory, processes, and files.

    • Examples of operating systems include Windows, macOS, Linux, and Android.

  • Answered by AI

Interview Preparation Tips

Round: Resume Shortlist
Experience: The CGPA requirement was 8 and above.

Round: Technical Interview
Experience: There was telephonic interview which included all concepts of OS, Database and C++. They were very much into the details of each topic and some questions on paging as well.

College Name: Manipal Institute Of Technology, Manipal

Skills evaluated in this interview

I appeared for an interview before Sep 2016.

Interview Questionnaire 

3 Questions

  • Q1. Tell me something about your projects.
  • Ans. 

    I have worked on various projects involving web development, mobile app development, and data analysis.

    • Developed a web application using React.js and Node.js for a client in the e-commerce industry.

    • Created a mobile app using Flutter for a startup in the travel industry.

    • Implemented data analysis algorithms using Python and SQL for a research project in the healthcare domain.

  • Answered by AI
  • Q2. About Background
  • Q3. Favourite game and what you did in extra circular activities.
  • Ans. 

    My favorite game is chess. In my extra curricular activities, I participated in coding competitions and volunteered as a mentor for a coding club.

    • Favorite game: chess

    • Participated in coding competitions

    • Volunteered as a mentor for a coding club

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Two tests were conducted through co-cubes.Between two test half an hour gap was there.
Tips: The test was little tough than other company so try to solve medium level of quant and English.
Duration: 1 hour 30 minutes
Total Questions: 120

Round: Technical + HR Interview
Experience: Asked us to be present from 9 am to 7 pm. out of 194, 10 people were interviewed individually while the rest of us waited. No scheduled time slot offered like any other company would.
Tips: Technical questions are based on programming languages.

Skills: Speaking Skills, Programming Skills In Any Language Like C
College Name: Manipal Institute Of Technology, Manipal

I appeared for an interview in Sep 2016.

Interview Preparation Tips

Round: Test
Experience: There are 4 sections with some questions carrying higher weightage (marked*);definitely answering these questions correctly is a bonus but it carries negative marking.

Duration: 1 hour 30 minutes
Total Questions: 60

Round: Technical Interview
Experience: One needs to craft their resume properly;
Majority of the questions are asked from it.
Mention only those skills at which you excel.
No bluffing.


Round: HR Interview
Experience: Questions based on academic performance,
Strength and weakness ,
Will night shift do?
And is it okay if they provide you job at different locations?


Skills: Confidence Levels Of Students, Communication, Inter Person Communication Skills, Personality
College Name: Fr.Conceicao Rodrigues College of Engineering

Accenture Interview FAQs

What are the top questions asked in Accenture Java Application Developer interview?

Some of the top questions asked at the Accenture Java Application Developer interview -

  1. 1.What is Overloading, Overriding, different types of Comstructors . Why do we ...read more
  2. Can we overload the main method or construct...read more
  3. Can we override the static meth...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.6
 • 11.1k Interviews
Infosys Interview Questions
3.6
 • 7.9k Interviews
Wipro Interview Questions
3.7
 • 6.1k Interviews
Cognizant Interview Questions
3.7
 • 5.9k Interviews
Capgemini Interview Questions
3.7
 • 5.1k Interviews
Tech Mahindra Interview Questions
3.5
 • 4.1k Interviews
HCLTech Interview Questions
3.5
 • 4.1k Interviews
Genpact Interview Questions
3.8
 • 3.4k Interviews
IBM Interview Questions
4.0
 • 2.5k Interviews
DXC Technology Interview Questions
3.7
 • 839 Interviews
View all
Accenture Java Application Developer Salary
based on 38 salaries
₹4.1 L/yr - ₹9.5 L/yr
20% less than the average Java Application Developer Salary in India
View more details

Accenture Java Application Developer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

3.0

Skill development

5.0

Work-life balance

2.0

Salary

5.0

Job security

4.0

Company culture

3.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
Application Development Analyst
39.3k salaries
unlock blur

₹4.8 L/yr - ₹11 L/yr

Application Development - Senior Analyst
27.7k salaries
unlock blur

₹8.3 L/yr - ₹16.1 L/yr

Team Lead
26.6k salaries
unlock blur

₹12.6 L/yr - ₹22.5 L/yr

Senior Analyst
19.5k salaries
unlock blur

₹9.1 L/yr - ₹15.7 L/yr

Senior Software Engineer
18.5k salaries
unlock blur

₹10.4 L/yr - ₹18 L/yr

Explore more salaries
Compare Accenture with

TCS

3.6
Compare

Cognizant

3.7
Compare

Capgemini

3.7
Compare

Infosys

3.6
Compare
write
Share an Interview