Accenture Important Questions Cheat Sheet
1. Aptitude & Reasoning Questions
Q1. A can do a piece of work in 10 days, B in 12 days. How long will they take to finish the work together?
Q2. A train running at 60 km/h crosses a pole in 30 seconds. Find the length of the train.
Q3. What will come next in the series? 2, 6, 12, 20, ?
Q4. A man can row 9 km/hr in still water. If the river is flowing at 3 km/hr, how long will he take to row 27 km
downstream?
Q5. A bag contains 4 red, 5 blue, and 6 green balls. What is the probability of picking a blue ball?
2. Pseudo Code Questions
Q1. What will be the output?
int x = 4, y = 3;
if(x > y && y != 0)
print("Yes");
else
print("No");
Q2. Predict the output:
int a = 5;
for(int i = 0; i < a; i++)
a = a - 1;
print(a);
Accenture Important Questions Cheat Sheet
Q3. Given an array of integers, write pseudocode to find the second largest element.
3. Coding Questions (C/C++/Java/Python)
Q1. Write a program to check whether a number is a palindrome.
Q2. Write a function to reverse a string without using built-in methods.
Q3. Write code to find the factorial of a number using recursion.
Q4. Print the Fibonacci series up to N terms.
Q5. Write a program to sort an array using bubble sort.
4. Communication Round Prompts
Q1. Repeat this sentence: "The quick brown fox jumps over the lazy dog."
Q2. Answer this: What did you do last weekend?
Q3. Retell this story: "A boy goes to the market to buy vegetables. He forgets his wallet at home."
Q4. Speak for 40 seconds on: "Your favorite hobby."
5. Technical & HR Interview Questions
Technical:
Q1. What is the difference between TCP and UDP?
Q2. Explain the concept of inheritance in OOP.
Accenture Important Questions Cheat Sheet
Q3. Write an SQL query to fetch the second highest salary from an employee table.
Q4. What is normalization? Why is it important in databases?
Q5. Describe the OSI model.
HR:
Q6. Tell me about yourself.
Q7. Why do you want to join Accenture?
Q8. What are your strengths and weaknesses?
Q9. Describe a challenge you faced and how you overcame it.
Q10. Where do you see yourself in 5 years?