- Previous Papers
- Cognitive Assessment
- Common Application and MS Office
- Networking Security and Cloud
- Verbal English
- Logical Reasoning
- Analytical Reasoning
- Abstract Reasoning
- Critical Reasoning
- Coding Questions
- Coding Question 2
- Pseudo Code
- Pseudo Code 2
- Communication Assessment
- Syllabus
- Recruitment Process
- Eligibility Criteria












Accenture Pseudo Code Question and Answer 2023
Accenture PseudoCode Questions 2023 for Freshers
Accenture PseudoCode Test Questions with Answers 2023 are discussed below. Pseudo Code is mainly based on Input Output Form contain some programming languages c,c++ etc.In pseudo Code round there will be total 18 questions and the time limit will be 40 mins (Shared) .The difficulty level of the paper is high.Pseudo Code is mainly based on Input Output Form contain some programming languages C/CPP etc.
For more detailed information you can visit to the Accenture Dashboard.



Accenture PseudoCode Question and Answer
Company | Accenture |
Total Time Duration | 40 minutes (Shared) |
Number of Question | 18 Ques |
Negative Marking | No |
Accenture PseudoCode Questions 2023 for Freshers
Accenture PseudoCode Test Questions with Answers 2023 are discussed below. Pseudo Code is mainly based on Input Output Form contain some programming languages c,c++ etc.In Pseudo Code round there will be total 18 questions and the time limit will be 40 mins (Shared) for pseudo code.The difficulty level of the paper is high.Pseudo Code is mainly based on Input Output Form contain some programming languages c,c++ etc.
For more detailed information you can visit to the Accenture Dashboard.



Accenture PseudoCode Question and Answer
Company | Accenture |
Total Time Duration | 40 minutes (Shared) |
Number of Question | 18 Ques |
Negative Marking | No |
Accenture Pseudo Code Curriculum
Detailed Accenture Pseudo Code Paper Pattern
Topics | No. of questions in test | Suggested Avg. Time | Difficulty |
---|---|---|---|
C | 2 | Med | Medium |
C++ | 3 | Med | Medium |
OOPS | 3 | High | Medium |
Data Structure | 2 | High | Medium |
Practice from Accenture Sample Pseudo Code Questions






















Please login to report
Additional Information (FAQ's)
Question. How many Questions are there in Accenture Pseudo Code MCQ?
There are 18 Questions that need to solve in 40 min including both sections.
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.
What is the most important topic?
The The most important topic is data structure and C.
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