SlideShare a Scribd company logo
Top 50 Accenture Interview Questions and Answers
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

PDF
Cognizant Interview Questions By ScholarHat.pdf
PPTX
Top TCS Interview Questions And Answers | How to Crack An Interview At TCS | ...
PDF
Tcs NQTExam technical questions
PPTX
Infosys Interview Questions And Answers 2023
PDF
Extreme Interview Questions
PDF
Google Interview Questions By Scholarhat
PDF
Technical_Interview_Questions.pdf
PDF
JAVA INTERVIEW QUESTIONS.pdf java developer engineer
Cognizant Interview Questions By ScholarHat.pdf
Top TCS Interview Questions And Answers | How to Crack An Interview At TCS | ...
Tcs NQTExam technical questions
Infosys Interview Questions And Answers 2023
Extreme Interview Questions
Google Interview Questions By Scholarhat
Technical_Interview_Questions.pdf
JAVA INTERVIEW QUESTIONS.pdf java developer engineer

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

PDF
JAVA TECHNICAL INTERVIEW.pdf java developer engineer
DOCX
Dot Net Accenture
DOCX
Tcs technical interview questions
PDF
Android interview questions
PDF
Android interview questions
PDF
C Interview Guide Boost Your Confidence With Answers To Hundreds Of Secret In...
PDF
Data Structure Interview Questions & Answers
TXT
82747038 preview-java-j2 ee-book
PDF
Asked Java Interview Questions for fresher
PDF
Frequently asked tcs technical interview questions and answers
PDF
Java Interview Questions by NageswaraRao
PDF
Javainterviewquestions 110607071413-phpapp02
PDF
Javainterviewquestions 110607071413-phpapp02
PPTX
Java presentation
PDF
Java apptitude-questions-part-1
PDF
Infosys Interview Questions By ScholarHat
DOCX
Top 10 Interview Questions for Coding Job.docx
DOCX
Top 10 Interview Questions for Coding Job.docx
DOCX
Java Interview Questions For Freshers
PPTX
TCS Job Interview Questions
JAVA TECHNICAL INTERVIEW.pdf java developer engineer
Dot Net Accenture
Tcs technical interview questions
Android interview questions
Android interview questions
C Interview Guide Boost Your Confidence With Answers To Hundreds Of Secret In...
Data Structure Interview Questions & Answers
82747038 preview-java-j2 ee-book
Asked Java Interview Questions for fresher
Frequently asked tcs technical interview questions and answers
Java Interview Questions by NageswaraRao
Javainterviewquestions 110607071413-phpapp02
Javainterviewquestions 110607071413-phpapp02
Java presentation
Java apptitude-questions-part-1
Infosys Interview Questions By ScholarHat
Top 10 Interview Questions for Coding Job.docx
Top 10 Interview Questions for Coding Job.docx
Java Interview Questions For Freshers
TCS Job Interview Questions
Ad

More from Simplilearn (20)

PPTX
Top 50 Scrum Master Interview Questions | Scrum Master Interview Questions & ...
PPTX
Bagging Vs Boosting In Machine Learning | Ensemble Learning In Machine Learni...
PPTX
Future Of Social Media | Social Media Trends and Strategies 2025 | Instagram ...
PPTX
SQL Query Optimization | SQL Query Optimization Techniques | SQL Basics | SQL...
PPTX
SQL INterview Questions .pTop 45 SQL Interview Questions And Answers In 2025 ...
PPTX
How To Start Influencer Marketing Business | Influencer Marketing For Beginne...
PPTX
Cyber Security Roadmap 2025 | How To Become Cyber Security Engineer In 2025 |...
PPTX
How To Become An AI And ML Engineer In 2025 | AI Engineer Roadmap | AI ML Car...
PPTX
What Is GitHub Copilot? | How To Use GitHub Copilot? | How does GitHub Copilo...
PPTX
Top 10 Data Analyst Certification For 2025 | Best Data Analyst Certification ...
PPTX
Complete Data Science Roadmap For 2025 | Data Scientist Roadmap For Beginners...
PPTX
Top 7 High Paying AI Certifications Courses For 2025 | Best AI Certifications...
PPTX
Data Cleaning In Data Mining | Step by Step Data Cleaning Process | Data Clea...
PPTX
Top 10 Data Analyst Projects For 2025 | Data Analyst Projects | Data Analysis...
PPTX
AI Engineer Roadmap 2025 | AI Engineer Roadmap For Beginners | AI Engineer Ca...
PPTX
Machine Learning Roadmap 2025 | Machine Learning Engineer Roadmap For Beginne...
PPTX
Kotter's 8-Step Change Model Explained | Kotter's Change Management Model | S...
PPTX
Gen AI Engineer Roadmap For 2025 | How To Become Gen AI Engineer In 2025 | Si...
PPTX
Top 10 Data Analyst Certification For 2025 | Best Data Analyst Certification ...
PPTX
Complete Data Science Roadmap For 2025 | Data Scientist Roadmap For Beginners...
Top 50 Scrum Master Interview Questions | Scrum Master Interview Questions & ...
Bagging Vs Boosting In Machine Learning | Ensemble Learning In Machine Learni...
Future Of Social Media | Social Media Trends and Strategies 2025 | Instagram ...
SQL Query Optimization | SQL Query Optimization Techniques | SQL Basics | SQL...
SQL INterview Questions .pTop 45 SQL Interview Questions And Answers In 2025 ...
How To Start Influencer Marketing Business | Influencer Marketing For Beginne...
Cyber Security Roadmap 2025 | How To Become Cyber Security Engineer In 2025 |...
How To Become An AI And ML Engineer In 2025 | AI Engineer Roadmap | AI ML Car...
What Is GitHub Copilot? | How To Use GitHub Copilot? | How does GitHub Copilo...
Top 10 Data Analyst Certification For 2025 | Best Data Analyst Certification ...
Complete Data Science Roadmap For 2025 | Data Scientist Roadmap For Beginners...
Top 7 High Paying AI Certifications Courses For 2025 | Best AI Certifications...
Data Cleaning In Data Mining | Step by Step Data Cleaning Process | Data Clea...
Top 10 Data Analyst Projects For 2025 | Data Analyst Projects | Data Analysis...
AI Engineer Roadmap 2025 | AI Engineer Roadmap For Beginners | AI Engineer Ca...
Machine Learning Roadmap 2025 | Machine Learning Engineer Roadmap For Beginne...
Kotter's 8-Step Change Model Explained | Kotter's Change Management Model | S...
Gen AI Engineer Roadmap For 2025 | How To Become Gen AI Engineer In 2025 | Si...
Top 10 Data Analyst Certification For 2025 | Best Data Analyst Certification ...
Complete Data Science Roadmap For 2025 | Data Scientist Roadmap For Beginners...
Ad

Recently uploaded (20)

PPTX
Chinmaya Tiranga Azadi Quiz (Class 7-8 )
PDF
ChatGPT for Dummies - Pam Baker Ccesa007.pdf
PDF
medical_surgical_nursing_10th_edition_ignatavicius_TEST_BANK_pdf.pdf
PPTX
Introduction to pro and eukaryotes and differences.pptx
PDF
Weekly quiz Compilation Jan -July 25.pdf
PDF
MBA _Common_ 2nd year Syllabus _2021-22_.pdf
PDF
1.3 FINAL REVISED K-10 PE and Health CG 2023 Grades 4-10 (1).pdf
PDF
What if we spent less time fighting change, and more time building what’s rig...
PDF
AI-driven educational solutions for real-life interventions in the Philippine...
PDF
A GUIDE TO GENETICS FOR UNDERGRADUATE MEDICAL STUDENTS
PPTX
202450812 BayCHI UCSC-SV 20250812 v17.pptx
PPTX
TNA_Presentation-1-Final(SAVE)) (1).pptx
PDF
Hazard Identification & Risk Assessment .pdf
PDF
HVAC Specification 2024 according to central public works department
PDF
Indian roads congress 037 - 2012 Flexible pavement
PDF
احياء السادس العلمي - الفصل الثالث (التكاثر) منهج متميزين/كلية بغداد/موهوبين
PPTX
20th Century Theater, Methods, History.pptx
PDF
Paper A Mock Exam 9_ Attempt review.pdf.
PPTX
Virtual and Augmented Reality in Current Scenario
PDF
OBE - B.A.(HON'S) IN INTERIOR ARCHITECTURE -Ar.MOHIUDDIN.pdf
Chinmaya Tiranga Azadi Quiz (Class 7-8 )
ChatGPT for Dummies - Pam Baker Ccesa007.pdf
medical_surgical_nursing_10th_edition_ignatavicius_TEST_BANK_pdf.pdf
Introduction to pro and eukaryotes and differences.pptx
Weekly quiz Compilation Jan -July 25.pdf
MBA _Common_ 2nd year Syllabus _2021-22_.pdf
1.3 FINAL REVISED K-10 PE and Health CG 2023 Grades 4-10 (1).pdf
What if we spent less time fighting change, and more time building what’s rig...
AI-driven educational solutions for real-life interventions in the Philippine...
A GUIDE TO GENETICS FOR UNDERGRADUATE MEDICAL STUDENTS
202450812 BayCHI UCSC-SV 20250812 v17.pptx
TNA_Presentation-1-Final(SAVE)) (1).pptx
Hazard Identification & Risk Assessment .pdf
HVAC Specification 2024 according to central public works department
Indian roads congress 037 - 2012 Flexible pavement
احياء السادس العلمي - الفصل الثالث (التكاثر) منهج متميزين/كلية بغداد/موهوبين
20th Century Theater, Methods, History.pptx
Paper A Mock Exam 9_ Attempt review.pdf.
Virtual and Augmented Reality in Current Scenario
OBE - B.A.(HON'S) IN INTERIOR ARCHITECTURE -Ar.MOHIUDDIN.pdf

Top 50 Accenture Interview Questions and Answers

  • 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