Accenture Placement Papers with Solutions for Freshers | FACE Prep

Accenture Placement Papers with Solutions for Freshers | FACE Prep

Accenture Placement Papers with Solutions for Freshers | FACE Prep

If you’re preparing for Accenture’s recruitment process, practicing previous years’ placement papers is one of the best ways to enhance your chances of success. This guide covers Accenture placement questions across multiple sections, including cognitive ability, reasoning, technical skills, and coding.


Accenture Recruitment Process Overview

The Accenture hiring process consists of multiple stages, including:

Critical Reasoning and Problem-Solving

Abstract Reasoning

Verbal Ability

Technical Questions (Pseudocoding, Networking, Cloud Security, etc.)

Programming questions in C/C++/Java/Python/.NET

Evaluates spoken and written communication

Role-specific technical questions

Behavioral and HR-based questions

By practicing Accenture placement papers, you can improve your speed, accuracy, and confidence for each section.


Accenture Placement Papers – Cognitive & Technical Assessment

1. Critical Reasoning and Problem-Solving Questions

This section assesses logical thinking and problem-solving abilities. Some common topics include:

  • Syllogisms
  • Blood Relations
  • Data Interpretation
  • Seating Arrangements
  • Coding-Decoding

Example Question: (Based on previous papers)
A train running at 72 km/hr crosses a bridge in 50 seconds. If the length of the train is 200 meters, find the length of the bridge.

Solution:

  • Convert speed: 72×518=2072 \times \frac{5}{18} = 2072×185​=20 m/s
  • Total distance covered = Speed × Time = 20×50=100020 \times 50 = 100020×50=1000 meters
  • Length of bridge = 1000−200=8001000 – 200 = 8001000−200=800 meters

2. Abstract Reasoning Questions

Abstract reasoning tests your ability to identify patterns, sequences, and relationships in data.

Example Question: (Based on previous papers)
Find the missing number in the series: 2, 6, 12, 20, ?

Solution:

  • The pattern follows n2+n (where n is the position in sequence).
  • The missing number is 30.

3. Verbal Ability Questions

The verbal section tests grammar, comprehension, and vocabulary. Topics include:

  • Reading Comprehension
  • Synonyms & Antonyms
  • Fill in the Blanks
  • Sentence Correction

Example Question:
Choose the correct sentence:
a) She has been went to the market.
b) She has gone to the market.
c) She had went to the market.
d) She has go to the market.

Answer: b) She has gone to the market.

Welcome to your Cognitive Assessment: Accenture Placement Papers with Solutions for Freshers

Year of passing
If a car travels 420 km in 7 hours, what is its average speed?

Mark the odd one out from the given options:

Choose the word that is most nearly the opposite in meaning to "MUNDANE".

Find the missing number in the series: 3, 6, 11, 18, 27, ?

A shirt is sold for ₹900 after giving a 10% discount on the marked price. What was the marked price?


Accenture Placement Papers – Technical Questions

1. Pseudocoding Questions

Pseudocode tests your logical approach to programming.

Example Question:
What will be the output of the following pseudocode?

X = 5  
Y = 10
If (X + Y > 10)
Print "Greater"
Else
Print "Smaller"

Answer: Greater

Welcome to your Accenture Placement Papers - Technical Questions

Year of passing
Which of the following is not a primary key in a database?

Which SQL query is used to fetch the highest salary from the "employees" table?

Which of the following is not a necessary condition for a deadlock?

Which of the following is a valid IPv4 address?

Which of the following statements is true about inheritance in object-oriented programming?


2. Common Applications & MS Office

This section tests knowledge of Excel, PowerPoint, and common business applications.

Example Question:
Which function is used in Excel to find the highest value in a range?
a) MAX()
b) MIN()
c) SUM()
d) AVERAGE()

Answer: a) MAX()


3. Fundamentals of Networking, Security & Cloud

Topics include basic network protocols, cybersecurity principles, and cloud computing concepts.

Example Question:
What does HTTPS stand for?
a) HyperText Transfer Protocol Secure
b) High Transfer Text Protocol Secure
c) HyperLink Transfer Text Protocol Secure
d) None of the above

Answer: a) HyperText Transfer Protocol Secure


Accenture Coding Assessment – Programming Questions

The coding section evaluates your ability to write efficient, error-free programs in C, C++, Java, Python, or .NET.

1. Binary String Operations

Problem Statement:
Given a binary string with operations (‘A’ for AND, ‘B’ for OR, ‘C’ for XOR), evaluate the result.

Example:
Input: 1C0A1B1C1C1B0A0
Output: 1

Solution in C++:

#include <iostream>
using namespace std;
int OperationsBinaryString(string str) {
int result = str[0] - '0';
for (int i = 1; i < str.length(); i += 2) {
char op = str[i];
int num = str[i + 1] - '0';
if (op == 'A') result &= num;
else if (op == 'B') result |= num;
else if (op == 'C') result ^= num;
}
return result;
}
int main() {
cout << OperationsBinaryString("1C0A1B1C1C1B0A0");
return 0;
}

2. Password Validation

Problem Statement:
Write a function that checks if a given string is a valid password based on these rules:

  • At least 4 characters
  • Contains at least one number and one capital letter
  • No spaces or ‘/’
  • Should not start with a number

Example:
Input: aA1_67
Output: 1 (Valid Password)


Final Preparation Tips for Accenture Placement Tests

  1. Practice Mock Tests: Solve previous year’s questions to understand the pattern.
  2. Time Management: Allocate time wisely for each section.
  3. Improve Speed & Accuracy: Focus on solving problems with minimum errors.
  4. Strengthen Core Concepts: Revise topics like aptitude, logical reasoning, and technical skills.
  5. Enhance Programming Skills: Write code in different programming languages to gain confidence.

Conclusion

Preparing with Accenture placement papers can significantly boost your chances of success. Focus on practicing mock tests, technical questions, and coding problems to stay ahead of the competition.

Accenture Placement Papers with Solutions for Freshers | FACE Prep

c