Accenture Pseudo Code Question and Answer 2025
Accenture Pseudo Code Questions 2025 for Freshers
Below, you’ll find the most relevant and updated Accenture Pseudo Code Test Questions with Answers for 2025.
This section evaluates a candidate’s ability to understand logic, structure algorithms, and solve problems using pseudo code, a simplified, high level representation of code written in plain language.
These practice questions are designed for freshers preparing for the Accenture 2025 recruitment drive.
About Accenture Pseudo Code Test 2025
Pseudo code test is a type of test conducted by Accenture to evaluate the problem solving skills of candidates.
Difficulty level of the paper is high. The questions may be in the form of a problem statement or a code snippet, and the candidates are required to understand pseudo code to solve the problem and to find the output.
For more detailed information you can visit to the Accenture Dashboard.
Accenture Pseudo Code Question and Answer 2025
| Accenture | Information |
|---|---|
| Total Time Duration | 45 minutes (Shared) |
| Number of Question | 22 Ques |
| Negative Marking | No |
Detailed Pseudo Code Paper Pattern
| Topics | No. of questions | Difficulty Level |
|---|---|---|
| OOPS | 4-5 | Medium |
| Data Stracture | 5-6 | High |
| DBMS | 2-3 | Medium |
| Input/Output | 3-4 | Medium |
| Storage Classes | 2-3 | Medium |
Prime Course Trailer
Related Banners
Get PrepInsta Prime & get Access to all 200+ courses offered by PrepInsta in One Subscription
Practice from Accenture Sample Pseudo Code Questions

Please login to report
FAQs on Pseudo Code Questions
Question 1: How many Questions are there in Accenture Pseudo Code MCQ?
There are 18 Questions that need to solve in 40 min including both sections.
Question 2: What is the difficulty level of Pseudo Code Questions in the Test Paper?
The Difficulty level of the paper is high.You need to score atleast 70 percentile to clear next round.
Question 3:Which is the most important topic?
The most important topic is data structure and C.
Get over 200+ course One Subscription
Courses like AI/ML, Cloud Computing, Ethical Hacking, C, C++, Java, Python, DSA (All Languages), Competitive Coding (All Languages), TCS, Infosys, Wipro, Amazon, DBMS, SQL and others

Try to first check all ques. ans their option properly then upload , they have lot of mistakes in it.
Hey there
Thanks for commenting, kindly let us know about the mistakes in details with screen shots on 8448440710 whatsapp number, we will correct it.
in 19th qns:
#include
int func(int no)
{
static int count=0;
count=count+no;
return count;
}
void main()
{
int i,j;
for(i=0;i<=5;i++)
j=func(i);
printf("%d",j);
}
they didn't mention j += func(i) how it will become add to the previous count. every time they are adding i to count = 0; it will become 5 i think so. if any one give the explanation please.
static keyword…!!
Hey there
Thanks for commenting, kindly let us know how can we help you?
In question1 :
For input a = 5 & b = 5.
function (input a, input b)
If (a < b)
return function (b, a)
elseif (b != 0)
return (a * function (a, b – 1))
else
return 0
The function call for arguments a=5, b = 0 will return 0. So, final answer should be 0.
Correct me if I am wrong but I think the right options are not given in the options.
Thank you.
in elseif loop there is condition for notequal to zero so loop will run for until codition false means equal to zero,
yes i also get 0