SlideShare a Scribd company logo
1 of 44
About Accenture
Accenture core values
Accenture Recruitment Process
Accenture Interview Questions for
Freshers and Experienced
Accenture Interview Preparation Tips
What’s in it for you?
1
Julie sweet
2
Shantanu Narayen
3
Salil Parekh
4
Jeff Clarke
Q. Who is the current CEO of Accenture
Accenture was established in 1989 in Dublin, Ireland.
It operates in over 200 cities across 56 nations.
It has been named to Fortune's "World's Most
Admired Companies" list 19 times in a row.
About Accenture
Accenture core values
Client value creation One global
network
Respect for the
individual
Integrity
Stewardship
Accenture Recruitment Process
Academic
criteria
Not more than
one year gap
Minimum
aggregate
65%
No active
backlog
0
1
0
2
0
3
Online Assessment
Test
Technical Interview HR Interview
Interview
Questions for Freshers and
Experienced
Accenture Interview Questions for Freshers and Experienced
static keyword in java denotes that a specific member is not
an instance, but rather part of a type.
Q1. What is a static keyword in Java?
Accenture Interview Questions for Freshers and Experienced
A class can only extend one other class but implement numerous
interfaces.
Class can implement multiple interfaces.
Q2. Can you implement multiple interfaces in java?
Accenture Interview Questions for Freshers and Experienced
The super keyword is used to call base class function.
The this keyword is used to refer to the current class object.
Q3. Explain the significance of the "super" and "this" keywords
in Java?
Accenture Interview Questions for Freshers and Experienced
Runtime Polymorphism is a procedure that resolves a call to an
overridden method at runtime rather than compile-time.
Method overriding can be used to achieve runtime polymorphism.
Q4. What is runtime polymorphism? How is it achieved in Java?
Accenture Interview Questions for Freshers and Experienced
An array is a container that stores a fixed number of values
ArrayList is a Collections framework class in Java.
Q5. What is the difference between array and ArrayList in
Java?
Accenture Interview Questions for Freshers and Experienced
Syntax
Object oriented programming
Memory management
Platform dependence
Security
Q6. State important differences between C, C++, and Java.
Accenture Interview Questions for Freshers and Experienced
Lambda expression represents one method interface in a concise manner.
It is extremely beneficial in a library collection.
Q7. What is the significance of lambda expression in Java?
Accenture Interview Questions for Freshers and Experienced
++ Operator means the value is incremented by one before being utilized in
the expression.
When the operator (var++) is added after the variable, the expression is
evaluated and the variable is incremented by one.
Q8. Distinguish between "var++" and "++var".
Accenture Interview Questions for Freshers and Experienced
The dynamic memory allocation concept in C enables C
programmers to allocate memory during runtime.
1. malloc()
2. calloc()
3. realloc()
4. free()
Q9. What is the procedure of memory allocation in C?
Accenture Interview Questions for Freshers and Experienced
In a C++ program, the getch() function is used to read a single
character from the keyboard without displaying it on the
screen.
Q10. What is the use of the getch() function in a C++ program?
How is it different from the getche() function?
Accenture Interview Questions for Freshers and Experienced
A friend function is a function that is specified outside of a
class but has access to the protected and private data
Q11. Explain the role of the Friend function in C++.
Accenture Interview Questions for Freshers and Experienced
Normalization is the process of reorganizing data within a
database so that users can query and analyze it further.
Q12. What do you understand about normalization in a database?
Accenture Interview Questions for Freshers and Experienced
The basic distinction between a primary and unique key is its
intended function.
Q13. State important differences between the primary and
unique keys in SQL.
Accenture Interview Questions for Freshers and Experienced
Pandas is an open-source Python library that provides high-
performance, user-friendly data structure and data analysis
capabilities for Python.
Q14. What are Pandas in Python?
Accenture Interview Questions for Freshers and Experienced
In Python, a classifier is an algorithm that is used to predict the
class or category to which a given data point belongs.
Q15. What is the role of a classifier in Python?
Accenture Interview Questions for Freshers and Experienced
A tuple is a non-homogeneous data structure that can include
both a single row and several rows and columns.
A dictionary is a non-homogeneous data structure with key-
value pairs.
Q16. How is a dictionary different from a tuple in Python?
Accenture Interview Questions for Freshers and Experienced
In Python, a map function acts as an iterator, returning a result after
applying a function to each item in an iterable (tuple, lists, etc.).
Q17. Explain the map() in Python.
Accenture Interview Questions for Freshers and Experienced
XML stands for eXtensible Markup Language. An XML file includes
XML code and has the file extension ".xml".
Q18. What is XML?
Accenture Interview Questions for Freshers and Experienced
Virtual inheritance in C++ is a technique that ensures that only one
copy of a parent class’s member variables are inherited by grandchild
derived classes.
Q19. Explain Virtual Inheritance.
Accenture Interview Questions for Freshers and Experienced
malloc() and free() are the two dynamic memory methods in C.
Q20. What functions would you use for dynamic memory
allocation in C?
Accenture Interview Questions for Freshers and Experienced
• To pass arguments by reference
• For getting array elements
• For returning multiple values
• Dynamic memory allocation
Q21. What is the role of a pointer in C?
Accenture Interview Questions for Freshers and Experienced
Java is a framework language, which means that once
code is written, it can be run anywhere, on any
platform
Q22. Why is Java language platform independent?
Accenture Interview Questions for Freshers and Experienced
An auto keyword is used for defining local variables and
it is used for forward declaration of nested functions.
Q23. What is an auto keyword in C?
Accenture Interview Questions for Freshers and Experienced
It is a mechanism to handle or control the runtime error which
happens during program execution.
Q24. What do you understand about Exception Handling?
Accenture Interview Questions for Freshers and Experienced
Checked exception are checked at compile time.
Unchecked exception are checked at runtime.
Q25. Distinguish between a checked and an unchecked
exception.
Accenture Interview Questions for Freshers and Experienced
Arithmetic exception occurs when there is an error related
to arithmetics.
ArrayIndexOutOfBound occurs when there is error with
index of an array.
Q26. Why do exceptions occur?
Accenture Interview Questions for Freshers and Experienced
Object-oriented programming is a model that gives
different types of concepts, such as inheritance, abstraction,
polymorphism, etc.
Q27. What is the OOP concept?
Accenture Interview Questions for Freshers and Experienced
• Object
• Class
• Encapsulation
• Abstraction
• Inheritance
• Polymorphism
Q28. Explain the top features of Java.
Accenture Interview Questions for Freshers and Experienced
Encapsulation refers to the wrapping of variables and
methods inside a single class.
Q29. Explain the term Encapsulation in Java.
Accenture Interview Questions for Freshers and Experienced
Recursion is the mechanism to make a function call itself.
Q30. What is recursion?
Accenture Interview Questions for Freshers and Experienced
What do you understand about a list interface in
collections?
Explain the term collection framework in Java.
How would you access a private member of a class?
Explain inheritance and how it can be achieved in Java.
Can you use multiple inheritances in Java? Explain.
State prominent differences between method overloading
and method overriding.
What is runtime polymorphism?
01
02
03
04
05
06
07
Accenture Interview Questions for Freshers and Experienced
What is the significance of AVL trees?
What do the ON DELETE CASCADE options do?
How is "Hot Backup" different from "Cold Backup" in a
database?
When would you use a DML command in DBMS?
What are the major perks of using DBMS?
What is the difference between DELETE and TRUNCATE
commands in SQL?
Distinguish between CHAR and VARCHAR2.
08
09
10
11
12
13
14
Accenture Interview Questions for Freshers and Experienced
How would you generate a Fibonacci series in a C++
program?
Explain the process of memory deallocation in C++.
How is a constructor different from a destructor?
What do you understand about operator overloading?
For a given array of integers, write a program that returns true
when there is a triplet (a, b, c) satisfying the condition: a2 + b2
= c2.
15
16
17
18
19
Accenture Interview Questions for Freshers and Experienced
For a given array, write a program to print k largest elements. The
elements in the array can be in any order.If the array is [1, 23, 17, 9,
32, 2, 50] and you are required to print the largest three elements,
i.e., k = 3, then the result will be 50, 32, and 23.
20
Accenture Interview
Preparation Tips
Accenture Interview Preparation Tips
1 2 3 4 5
Practice consistently Learn to negotiate
Boost Math Skills
Improve your problem
solving skills
Take up mock interviews
Top 50 Accenture Interview Questions and Answers

More Related Content

Similar to Top 50 Accenture Interview Questions and Answers

Java Faqs useful for freshers and experienced
Java Faqs useful for freshers and experiencedJava Faqs useful for freshers and experienced
Java Faqs useful for freshers and experiencedyearninginjava
 
Top 371 java fa qs useful for freshers and experienced
Top 371 java fa qs useful for freshers and experiencedTop 371 java fa qs useful for freshers and experienced
Top 371 java fa qs useful for freshers and experiencedGaurav Maheshwari
 
Introduction to java
Introduction to java Introduction to java
Introduction to java sanjay joshi
 
Java Simplified: Understanding Programming Basics
Java Simplified: Understanding Programming BasicsJava Simplified: Understanding Programming Basics
Java Simplified: Understanding Programming BasicsAkshaj Vadakkath Joshy
 
Java Interview Questions
Java Interview QuestionsJava Interview Questions
Java Interview Questionssoniajessica2
 
Java Fundamentals in Mule
Java Fundamentals in MuleJava Fundamentals in Mule
Java Fundamentals in MuleAnand kalla
 
7 Common Java Coding Interview Questions With Answers
7 Common Java Coding Interview Questions With Answers7 Common Java Coding Interview Questions With Answers
7 Common Java Coding Interview Questions With AnswersJAMESJOHN130
 
Java 8 - New Updates and Why It Matters?
Java 8 - New Updates and Why It Matters?Java 8 - New Updates and Why It Matters?
Java 8 - New Updates and Why It Matters?CTE Solutions Inc.
 
JAVA VIVA QUESTIONS_CODERS LODGE.pdf
JAVA VIVA QUESTIONS_CODERS LODGE.pdfJAVA VIVA QUESTIONS_CODERS LODGE.pdf
JAVA VIVA QUESTIONS_CODERS LODGE.pdfnofakeNews
 
Top C Language Interview Questions and Answer
Top C Language Interview Questions and AnswerTop C Language Interview Questions and Answer
Top C Language Interview Questions and AnswerVineet Kumar Saini
 
C question-bank-ebook
C question-bank-ebookC question-bank-ebook
C question-bank-ebooketrams1
 
50 common web developer interview questions [2020 updated] [www.full stack....
50 common web developer interview questions [2020 updated]   [www.full stack....50 common web developer interview questions [2020 updated]   [www.full stack....
50 common web developer interview questions [2020 updated] [www.full stack....Alex Ershov
 
Top 100 .Net Interview Questions and Answer
Top 100 .Net Interview Questions and AnswerTop 100 .Net Interview Questions and Answer
Top 100 .Net Interview Questions and AnswerVineet Kumar Saini
 
159747608 a-training-report-on
159747608 a-training-report-on159747608 a-training-report-on
159747608 a-training-report-onhomeworkping7
 
Introduction to java
Introduction to javaIntroduction to java
Introduction to javasanjay joshi
 
Frequently asked tcs technical interview questions and answers
Frequently asked tcs technical interview questions and answersFrequently asked tcs technical interview questions and answers
Frequently asked tcs technical interview questions and answersnishajj
 
Testing Experience - Evolution of Test Automation Frameworks
Testing Experience - Evolution of Test Automation FrameworksTesting Experience - Evolution of Test Automation Frameworks
Testing Experience - Evolution of Test Automation FrameworksŁukasz Morawski
 

Similar to Top 50 Accenture Interview Questions and Answers (20)

Java basic
Java basicJava basic
Java basic
 
Java Faqs useful for freshers and experienced
Java Faqs useful for freshers and experiencedJava Faqs useful for freshers and experienced
Java Faqs useful for freshers and experienced
 
Top 371 java fa qs useful for freshers and experienced
Top 371 java fa qs useful for freshers and experiencedTop 371 java fa qs useful for freshers and experienced
Top 371 java fa qs useful for freshers and experienced
 
Introduction to Java
Introduction to JavaIntroduction to Java
Introduction to Java
 
Introduction to java
Introduction to java Introduction to java
Introduction to java
 
Java Simplified: Understanding Programming Basics
Java Simplified: Understanding Programming BasicsJava Simplified: Understanding Programming Basics
Java Simplified: Understanding Programming Basics
 
Java Interview Questions
Java Interview QuestionsJava Interview Questions
Java Interview Questions
 
Java Fundamentals in Mule
Java Fundamentals in MuleJava Fundamentals in Mule
Java Fundamentals in Mule
 
Industrail-training-course-for-java
Industrail-training-course-for-javaIndustrail-training-course-for-java
Industrail-training-course-for-java
 
7 Common Java Coding Interview Questions With Answers
7 Common Java Coding Interview Questions With Answers7 Common Java Coding Interview Questions With Answers
7 Common Java Coding Interview Questions With Answers
 
Java 8 - New Updates and Why It Matters?
Java 8 - New Updates and Why It Matters?Java 8 - New Updates and Why It Matters?
Java 8 - New Updates and Why It Matters?
 
JAVA VIVA QUESTIONS_CODERS LODGE.pdf
JAVA VIVA QUESTIONS_CODERS LODGE.pdfJAVA VIVA QUESTIONS_CODERS LODGE.pdf
JAVA VIVA QUESTIONS_CODERS LODGE.pdf
 
Top C Language Interview Questions and Answer
Top C Language Interview Questions and AnswerTop C Language Interview Questions and Answer
Top C Language Interview Questions and Answer
 
C question-bank-ebook
C question-bank-ebookC question-bank-ebook
C question-bank-ebook
 
50 common web developer interview questions [2020 updated] [www.full stack....
50 common web developer interview questions [2020 updated]   [www.full stack....50 common web developer interview questions [2020 updated]   [www.full stack....
50 common web developer interview questions [2020 updated] [www.full stack....
 
Top 100 .Net Interview Questions and Answer
Top 100 .Net Interview Questions and AnswerTop 100 .Net Interview Questions and Answer
Top 100 .Net Interview Questions and Answer
 
159747608 a-training-report-on
159747608 a-training-report-on159747608 a-training-report-on
159747608 a-training-report-on
 
Introduction to java
Introduction to javaIntroduction to java
Introduction to java
 
Frequently asked tcs technical interview questions and answers
Frequently asked tcs technical interview questions and answersFrequently asked tcs technical interview questions and answers
Frequently asked tcs technical interview questions and answers
 
Testing Experience - Evolution of Test Automation Frameworks
Testing Experience - Evolution of Test Automation FrameworksTesting Experience - Evolution of Test Automation Frameworks
Testing Experience - Evolution of Test Automation Frameworks
 

More from Simplilearn

ChatGPT in Cybersecurity
ChatGPT in CybersecurityChatGPT in Cybersecurity
ChatGPT in CybersecuritySimplilearn
 
Whatis SQL Injection.pptx
Whatis SQL Injection.pptxWhatis SQL Injection.pptx
Whatis SQL Injection.pptxSimplilearn
 
Top 5 High Paying Cloud Computing Jobs in 2023
 Top 5 High Paying Cloud Computing Jobs in 2023  Top 5 High Paying Cloud Computing Jobs in 2023
Top 5 High Paying Cloud Computing Jobs in 2023 Simplilearn
 
Types Of Cloud Jobs In 2024
Types Of Cloud Jobs In 2024Types Of Cloud Jobs In 2024
Types Of Cloud Jobs In 2024Simplilearn
 
Top 12 AI Technologies To Learn 2024 | Top AI Technologies in 2024 | AI Trend...
Top 12 AI Technologies To Learn 2024 | Top AI Technologies in 2024 | AI Trend...Top 12 AI Technologies To Learn 2024 | Top AI Technologies in 2024 | AI Trend...
Top 12 AI Technologies To Learn 2024 | Top AI Technologies in 2024 | AI Trend...Simplilearn
 
What is LSTM ?| Long Short Term Memory Explained with Example | Deep Learning...
What is LSTM ?| Long Short Term Memory Explained with Example | Deep Learning...What is LSTM ?| Long Short Term Memory Explained with Example | Deep Learning...
What is LSTM ?| Long Short Term Memory Explained with Example | Deep Learning...Simplilearn
 
Top 10 Chat GPT Use Cases | ChatGPT Applications | ChatGPT Tutorial For Begin...
Top 10 Chat GPT Use Cases | ChatGPT Applications | ChatGPT Tutorial For Begin...Top 10 Chat GPT Use Cases | ChatGPT Applications | ChatGPT Tutorial For Begin...
Top 10 Chat GPT Use Cases | ChatGPT Applications | ChatGPT Tutorial For Begin...Simplilearn
 
React JS Vs Next JS - What's The Difference | Next JS Tutorial For Beginners ...
React JS Vs Next JS - What's The Difference | Next JS Tutorial For Beginners ...React JS Vs Next JS - What's The Difference | Next JS Tutorial For Beginners ...
React JS Vs Next JS - What's The Difference | Next JS Tutorial For Beginners ...Simplilearn
 
Backpropagation in Neural Networks | Back Propagation Algorithm with Examples...
Backpropagation in Neural Networks | Back Propagation Algorithm with Examples...Backpropagation in Neural Networks | Back Propagation Algorithm with Examples...
Backpropagation in Neural Networks | Back Propagation Algorithm with Examples...Simplilearn
 
How to Become a Business Analyst ?| Roadmap to Become Business Analyst | Simp...
How to Become a Business Analyst ?| Roadmap to Become Business Analyst | Simp...How to Become a Business Analyst ?| Roadmap to Become Business Analyst | Simp...
How to Become a Business Analyst ?| Roadmap to Become Business Analyst | Simp...Simplilearn
 
Career Opportunities In Artificial Intelligence 2023 | AI Job Opportunities |...
Career Opportunities In Artificial Intelligence 2023 | AI Job Opportunities |...Career Opportunities In Artificial Intelligence 2023 | AI Job Opportunities |...
Career Opportunities In Artificial Intelligence 2023 | AI Job Opportunities |...Simplilearn
 
Programming for Beginners | How to Start Coding in 2023? | Introduction to Pr...
Programming for Beginners | How to Start Coding in 2023? | Introduction to Pr...Programming for Beginners | How to Start Coding in 2023? | Introduction to Pr...
Programming for Beginners | How to Start Coding in 2023? | Introduction to Pr...Simplilearn
 
Best IDE for Programming in 2023 | Top 8 Programming IDE You Should Know | Si...
Best IDE for Programming in 2023 | Top 8 Programming IDE You Should Know | Si...Best IDE for Programming in 2023 | Top 8 Programming IDE You Should Know | Si...
Best IDE for Programming in 2023 | Top 8 Programming IDE You Should Know | Si...Simplilearn
 
React 18 Overview | React 18 New Features and Changes | React 18 Tutorial 202...
React 18 Overview | React 18 New Features and Changes | React 18 Tutorial 202...React 18 Overview | React 18 New Features and Changes | React 18 Tutorial 202...
React 18 Overview | React 18 New Features and Changes | React 18 Tutorial 202...Simplilearn
 
What Is Next JS ? | Introduction to Next JS | Basics of Next JS | Next JS Tut...
What Is Next JS ? | Introduction to Next JS | Basics of Next JS | Next JS Tut...What Is Next JS ? | Introduction to Next JS | Basics of Next JS | Next JS Tut...
What Is Next JS ? | Introduction to Next JS | Basics of Next JS | Next JS Tut...Simplilearn
 
How To Become an SEO Expert In 2023 | SEO Expert Tutorial | SEO For Beginners...
How To Become an SEO Expert In 2023 | SEO Expert Tutorial | SEO For Beginners...How To Become an SEO Expert In 2023 | SEO Expert Tutorial | SEO For Beginners...
How To Become an SEO Expert In 2023 | SEO Expert Tutorial | SEO For Beginners...Simplilearn
 
WordPress Tutorial for Beginners 2023 | What Is WordPress and How Does It Wor...
WordPress Tutorial for Beginners 2023 | What Is WordPress and How Does It Wor...WordPress Tutorial for Beginners 2023 | What Is WordPress and How Does It Wor...
WordPress Tutorial for Beginners 2023 | What Is WordPress and How Does It Wor...Simplilearn
 
Blogging For Beginners 2023 | How To Create A Blog | Blogging Tutorial | Simp...
Blogging For Beginners 2023 | How To Create A Blog | Blogging Tutorial | Simp...Blogging For Beginners 2023 | How To Create A Blog | Blogging Tutorial | Simp...
Blogging For Beginners 2023 | How To Create A Blog | Blogging Tutorial | Simp...Simplilearn
 
How To Start A Blog In 2023 | Pros And Cons Of Blogging | Blogging Tutorial |...
How To Start A Blog In 2023 | Pros And Cons Of Blogging | Blogging Tutorial |...How To Start A Blog In 2023 | Pros And Cons Of Blogging | Blogging Tutorial |...
How To Start A Blog In 2023 | Pros And Cons Of Blogging | Blogging Tutorial |...Simplilearn
 
How to Increase Website Traffic ? | 10 Ways To Increase Website Traffic in 20...
How to Increase Website Traffic ? | 10 Ways To Increase Website Traffic in 20...How to Increase Website Traffic ? | 10 Ways To Increase Website Traffic in 20...
How to Increase Website Traffic ? | 10 Ways To Increase Website Traffic in 20...Simplilearn
 

More from Simplilearn (20)

ChatGPT in Cybersecurity
ChatGPT in CybersecurityChatGPT in Cybersecurity
ChatGPT in Cybersecurity
 
Whatis SQL Injection.pptx
Whatis SQL Injection.pptxWhatis SQL Injection.pptx
Whatis SQL Injection.pptx
 
Top 5 High Paying Cloud Computing Jobs in 2023
 Top 5 High Paying Cloud Computing Jobs in 2023  Top 5 High Paying Cloud Computing Jobs in 2023
Top 5 High Paying Cloud Computing Jobs in 2023
 
Types Of Cloud Jobs In 2024
Types Of Cloud Jobs In 2024Types Of Cloud Jobs In 2024
Types Of Cloud Jobs In 2024
 
Top 12 AI Technologies To Learn 2024 | Top AI Technologies in 2024 | AI Trend...
Top 12 AI Technologies To Learn 2024 | Top AI Technologies in 2024 | AI Trend...Top 12 AI Technologies To Learn 2024 | Top AI Technologies in 2024 | AI Trend...
Top 12 AI Technologies To Learn 2024 | Top AI Technologies in 2024 | AI Trend...
 
What is LSTM ?| Long Short Term Memory Explained with Example | Deep Learning...
What is LSTM ?| Long Short Term Memory Explained with Example | Deep Learning...What is LSTM ?| Long Short Term Memory Explained with Example | Deep Learning...
What is LSTM ?| Long Short Term Memory Explained with Example | Deep Learning...
 
Top 10 Chat GPT Use Cases | ChatGPT Applications | ChatGPT Tutorial For Begin...
Top 10 Chat GPT Use Cases | ChatGPT Applications | ChatGPT Tutorial For Begin...Top 10 Chat GPT Use Cases | ChatGPT Applications | ChatGPT Tutorial For Begin...
Top 10 Chat GPT Use Cases | ChatGPT Applications | ChatGPT Tutorial For Begin...
 
React JS Vs Next JS - What's The Difference | Next JS Tutorial For Beginners ...
React JS Vs Next JS - What's The Difference | Next JS Tutorial For Beginners ...React JS Vs Next JS - What's The Difference | Next JS Tutorial For Beginners ...
React JS Vs Next JS - What's The Difference | Next JS Tutorial For Beginners ...
 
Backpropagation in Neural Networks | Back Propagation Algorithm with Examples...
Backpropagation in Neural Networks | Back Propagation Algorithm with Examples...Backpropagation in Neural Networks | Back Propagation Algorithm with Examples...
Backpropagation in Neural Networks | Back Propagation Algorithm with Examples...
 
How to Become a Business Analyst ?| Roadmap to Become Business Analyst | Simp...
How to Become a Business Analyst ?| Roadmap to Become Business Analyst | Simp...How to Become a Business Analyst ?| Roadmap to Become Business Analyst | Simp...
How to Become a Business Analyst ?| Roadmap to Become Business Analyst | Simp...
 
Career Opportunities In Artificial Intelligence 2023 | AI Job Opportunities |...
Career Opportunities In Artificial Intelligence 2023 | AI Job Opportunities |...Career Opportunities In Artificial Intelligence 2023 | AI Job Opportunities |...
Career Opportunities In Artificial Intelligence 2023 | AI Job Opportunities |...
 
Programming for Beginners | How to Start Coding in 2023? | Introduction to Pr...
Programming for Beginners | How to Start Coding in 2023? | Introduction to Pr...Programming for Beginners | How to Start Coding in 2023? | Introduction to Pr...
Programming for Beginners | How to Start Coding in 2023? | Introduction to Pr...
 
Best IDE for Programming in 2023 | Top 8 Programming IDE You Should Know | Si...
Best IDE for Programming in 2023 | Top 8 Programming IDE You Should Know | Si...Best IDE for Programming in 2023 | Top 8 Programming IDE You Should Know | Si...
Best IDE for Programming in 2023 | Top 8 Programming IDE You Should Know | Si...
 
React 18 Overview | React 18 New Features and Changes | React 18 Tutorial 202...
React 18 Overview | React 18 New Features and Changes | React 18 Tutorial 202...React 18 Overview | React 18 New Features and Changes | React 18 Tutorial 202...
React 18 Overview | React 18 New Features and Changes | React 18 Tutorial 202...
 
What Is Next JS ? | Introduction to Next JS | Basics of Next JS | Next JS Tut...
What Is Next JS ? | Introduction to Next JS | Basics of Next JS | Next JS Tut...What Is Next JS ? | Introduction to Next JS | Basics of Next JS | Next JS Tut...
What Is Next JS ? | Introduction to Next JS | Basics of Next JS | Next JS Tut...
 
How To Become an SEO Expert In 2023 | SEO Expert Tutorial | SEO For Beginners...
How To Become an SEO Expert In 2023 | SEO Expert Tutorial | SEO For Beginners...How To Become an SEO Expert In 2023 | SEO Expert Tutorial | SEO For Beginners...
How To Become an SEO Expert In 2023 | SEO Expert Tutorial | SEO For Beginners...
 
WordPress Tutorial for Beginners 2023 | What Is WordPress and How Does It Wor...
WordPress Tutorial for Beginners 2023 | What Is WordPress and How Does It Wor...WordPress Tutorial for Beginners 2023 | What Is WordPress and How Does It Wor...
WordPress Tutorial for Beginners 2023 | What Is WordPress and How Does It Wor...
 
Blogging For Beginners 2023 | How To Create A Blog | Blogging Tutorial | Simp...
Blogging For Beginners 2023 | How To Create A Blog | Blogging Tutorial | Simp...Blogging For Beginners 2023 | How To Create A Blog | Blogging Tutorial | Simp...
Blogging For Beginners 2023 | How To Create A Blog | Blogging Tutorial | Simp...
 
How To Start A Blog In 2023 | Pros And Cons Of Blogging | Blogging Tutorial |...
How To Start A Blog In 2023 | Pros And Cons Of Blogging | Blogging Tutorial |...How To Start A Blog In 2023 | Pros And Cons Of Blogging | Blogging Tutorial |...
How To Start A Blog In 2023 | Pros And Cons Of Blogging | Blogging Tutorial |...
 
How to Increase Website Traffic ? | 10 Ways To Increase Website Traffic in 20...
How to Increase Website Traffic ? | 10 Ways To Increase Website Traffic in 20...How to Increase Website Traffic ? | 10 Ways To Increase Website Traffic in 20...
How to Increase Website Traffic ? | 10 Ways To Increase Website Traffic in 20...
 

Recently uploaded

Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfSumit Tiwari
 
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxRoyAbrique
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxGaneshChakor2
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Educationpboyjonauth
 
URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppCeline George
 
_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting Data_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting DataJhengPantaleon
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxNirmalaLoungPoorunde1
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)eniolaolutunde
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityGeoBlogs
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionSafetyChain Software
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactdawncurless
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdfSoniaTolstoy
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...Marc Dusseiller Dusjagr
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Celine George
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationnomboosow
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17Celine George
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentInMediaRes1
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsanshu789521
 

Recently uploaded (20)

Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
 
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptx
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Education
 
URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website App
 
CĂłdigo Creativo y Arte de Software | Unidad 1
CĂłdigo Creativo y Arte de Software | Unidad 1CĂłdigo Creativo y Arte de Software | Unidad 1
CĂłdigo Creativo y Arte de Software | Unidad 1
 
_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting Data_Math 4-Q4 Week 5.pptx Steps in Collecting Data
_Math 4-Q4 Week 5.pptx Steps in Collecting Data
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptx
 
Staff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSDStaff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSD
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory Inspection
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communication
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media Component
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha elections
 

Top 50 Accenture Interview Questions and Answers

  • 1.
  • 2. About Accenture Accenture core values Accenture Recruitment Process Accenture Interview Questions for Freshers and Experienced Accenture Interview Preparation Tips What’s in it for you?
  • 3. 1 Julie sweet 2 Shantanu Narayen 3 Salil Parekh 4 Jeff Clarke Q. Who is the current CEO of Accenture
  • 4. Accenture was established in 1989 in Dublin, Ireland. It operates in over 200 cities across 56 nations. It has been named to Fortune's "World's Most Admired Companies" list 19 times in a row. About Accenture
  • 5. Accenture core values Client value creation One global network Respect for the individual Integrity Stewardship
  • 6. Accenture Recruitment Process Academic criteria Not more than one year gap Minimum aggregate 65% No active backlog 0 1 0 2 0 3 Online Assessment Test Technical Interview HR Interview
  • 8. Accenture Interview Questions for Freshers and Experienced static keyword in java denotes that a specific member is not an instance, but rather part of a type. Q1. What is a static keyword in Java?
  • 9. Accenture Interview Questions for Freshers and Experienced A class can only extend one other class but implement numerous interfaces. Class can implement multiple interfaces. Q2. Can you implement multiple interfaces in java?
  • 10. Accenture Interview Questions for Freshers and Experienced The super keyword is used to call base class function. The this keyword is used to refer to the current class object. Q3. Explain the significance of the "super" and "this" keywords in Java?
  • 11. Accenture Interview Questions for Freshers and Experienced Runtime Polymorphism is a procedure that resolves a call to an overridden method at runtime rather than compile-time. Method overriding can be used to achieve runtime polymorphism. Q4. What is runtime polymorphism? How is it achieved in Java?
  • 12. Accenture Interview Questions for Freshers and Experienced An array is a container that stores a fixed number of values ArrayList is a Collections framework class in Java. Q5. What is the difference between array and ArrayList in Java?
  • 13. Accenture Interview Questions for Freshers and Experienced Syntax Object oriented programming Memory management Platform dependence Security Q6. State important differences between C, C++, and Java.
  • 14. Accenture Interview Questions for Freshers and Experienced Lambda expression represents one method interface in a concise manner. It is extremely beneficial in a library collection. Q7. What is the significance of lambda expression in Java?
  • 15. Accenture Interview Questions for Freshers and Experienced ++ Operator means the value is incremented by one before being utilized in the expression. When the operator (var++) is added after the variable, the expression is evaluated and the variable is incremented by one. Q8. Distinguish between "var++" and "++var".
  • 16. Accenture Interview Questions for Freshers and Experienced The dynamic memory allocation concept in C enables C programmers to allocate memory during runtime. 1. malloc() 2. calloc() 3. realloc() 4. free() Q9. What is the procedure of memory allocation in C?
  • 17. Accenture Interview Questions for Freshers and Experienced In a C++ program, the getch() function is used to read a single character from the keyboard without displaying it on the screen. Q10. What is the use of the getch() function in a C++ program? How is it different from the getche() function?
  • 18. Accenture Interview Questions for Freshers and Experienced A friend function is a function that is specified outside of a class but has access to the protected and private data Q11. Explain the role of the Friend function in C++.
  • 19. Accenture Interview Questions for Freshers and Experienced Normalization is the process of reorganizing data within a database so that users can query and analyze it further. Q12. What do you understand about normalization in a database?
  • 20. Accenture Interview Questions for Freshers and Experienced The basic distinction between a primary and unique key is its intended function. Q13. State important differences between the primary and unique keys in SQL.
  • 21. Accenture Interview Questions for Freshers and Experienced Pandas is an open-source Python library that provides high- performance, user-friendly data structure and data analysis capabilities for Python. Q14. What are Pandas in Python?
  • 22. Accenture Interview Questions for Freshers and Experienced In Python, a classifier is an algorithm that is used to predict the class or category to which a given data point belongs. Q15. What is the role of a classifier in Python?
  • 23. Accenture Interview Questions for Freshers and Experienced A tuple is a non-homogeneous data structure that can include both a single row and several rows and columns. A dictionary is a non-homogeneous data structure with key- value pairs. Q16. How is a dictionary different from a tuple in Python?
  • 24. Accenture Interview Questions for Freshers and Experienced In Python, a map function acts as an iterator, returning a result after applying a function to each item in an iterable (tuple, lists, etc.). Q17. Explain the map() in Python.
  • 25. Accenture Interview Questions for Freshers and Experienced XML stands for eXtensible Markup Language. An XML file includes XML code and has the file extension ".xml". Q18. What is XML?
  • 26. Accenture Interview Questions for Freshers and Experienced Virtual inheritance in C++ is a technique that ensures that only one copy of a parent class’s member variables are inherited by grandchild derived classes. Q19. Explain Virtual Inheritance.
  • 27. Accenture Interview Questions for Freshers and Experienced malloc() and free() are the two dynamic memory methods in C. Q20. What functions would you use for dynamic memory allocation in C?
  • 28. Accenture Interview Questions for Freshers and Experienced • To pass arguments by reference • For getting array elements • For returning multiple values • Dynamic memory allocation Q21. What is the role of a pointer in C?
  • 29. Accenture Interview Questions for Freshers and Experienced Java is a framework language, which means that once code is written, it can be run anywhere, on any platform Q22. Why is Java language platform independent?
  • 30. Accenture Interview Questions for Freshers and Experienced An auto keyword is used for defining local variables and it is used for forward declaration of nested functions. Q23. What is an auto keyword in C?
  • 31. Accenture Interview Questions for Freshers and Experienced It is a mechanism to handle or control the runtime error which happens during program execution. Q24. What do you understand about Exception Handling?
  • 32. Accenture Interview Questions for Freshers and Experienced Checked exception are checked at compile time. Unchecked exception are checked at runtime. Q25. Distinguish between a checked and an unchecked exception.
  • 33. Accenture Interview Questions for Freshers and Experienced Arithmetic exception occurs when there is an error related to arithmetics. ArrayIndexOutOfBound occurs when there is error with index of an array. Q26. Why do exceptions occur?
  • 34. Accenture Interview Questions for Freshers and Experienced Object-oriented programming is a model that gives different types of concepts, such as inheritance, abstraction, polymorphism, etc. Q27. What is the OOP concept?
  • 35. Accenture Interview Questions for Freshers and Experienced • Object • Class • Encapsulation • Abstraction • Inheritance • Polymorphism Q28. Explain the top features of Java.
  • 36. Accenture Interview Questions for Freshers and Experienced Encapsulation refers to the wrapping of variables and methods inside a single class. Q29. Explain the term Encapsulation in Java.
  • 37. Accenture Interview Questions for Freshers and Experienced Recursion is the mechanism to make a function call itself. Q30. What is recursion?
  • 38. Accenture Interview Questions for Freshers and Experienced What do you understand about a list interface in collections? Explain the term collection framework in Java. How would you access a private member of a class? Explain inheritance and how it can be achieved in Java. Can you use multiple inheritances in Java? Explain. State prominent differences between method overloading and method overriding. What is runtime polymorphism? 01 02 03 04 05 06 07
  • 39. Accenture Interview Questions for Freshers and Experienced What is the significance of AVL trees? What do the ON DELETE CASCADE options do? How is "Hot Backup" different from "Cold Backup" in a database? When would you use a DML command in DBMS? What are the major perks of using DBMS? What is the difference between DELETE and TRUNCATE commands in SQL? Distinguish between CHAR and VARCHAR2. 08 09 10 11 12 13 14
  • 40. Accenture Interview Questions for Freshers and Experienced How would you generate a Fibonacci series in a C++ program? Explain the process of memory deallocation in C++. How is a constructor different from a destructor? What do you understand about operator overloading? For a given array of integers, write a program that returns true when there is a triplet (a, b, c) satisfying the condition: a2 + b2 = c2. 15 16 17 18 19
  • 41. Accenture Interview Questions for Freshers and Experienced For a given array, write a program to print k largest elements. The elements in the array can be in any order.If the array is [1, 23, 17, 9, 32, 2, 50] and you are required to print the largest three elements, i.e., k = 3, then the result will be 50, 32, and 23. 20
  • 43. Accenture Interview Preparation Tips 1 2 3 4 5 Practice consistently Learn to negotiate Boost Math Skills Improve your problem solving skills Take up mock interviews