Capgemini Pseudocode Questions | Set 1

In this article, we will be discussing the Capgemini Pseudocode Questions. If you would like to ace the Capgemini Pseudocode Questions section easily, then you are at the right place!
Pseudo Code Test Capgemini is a newly introduced Round in Capgemini Placement Test.

What is Pseudocode? Why are Pseudo Codes important for Capgemini?

Pseudo code is a term that is often used in programming and algorithm-based fields. It is a methodology that allows the programmer to represent the implementation of an algorithm. Simply, we can say that it’s the cooked-up representation of an algorithm. Often, algorithms are represented with the help of pseudo codes as they can be interpreted by programmers no matter what their programming background or knowledge is. Pseudocode, as the name suggests, is a false code or a representation of code that can be understood by even a layman with some school-level programming knowledge.
It’s simply an implementation of an algorithm in the form of annotations and informative text written in plain English. It has no syntax like any of the programming languages and thus can’t be compiled or interpreted by the computer.

Advantages of Pseudocode

How will this article help you in the Pseudocode round?

This article helps you to understand what type of pseudocode questions will be asked by Capgemini previously, we have gathered some similar questions to provide the latest and actual questions and syllabus for Capgemini Pseudo Code 2023.

Capgemini Pseudocode Questions

1. What would be the output of the following pseudocode?

Integer a String str1 Set str1 = “goose” a = stringLength(str1) Print (a^1)

Answer: 4

2. What would be the output of the following pseudocode?

Integer a, b, c Set a = 8, b = 51, c = 2 c = (a^c)^a b = b mod 4 Print a + b + c

Answer: 13

3. Consider an array A = and a key which is equal to 10. How many comparisons would be done to find the key element in the array using the binary search?

Answer: 3

4. What is the output of the following code?

Set Integer Emp_no=101 Set Integer salary=0 While (Emp_no=501) salary=salary+100 display salary end While

Answer: Code executes successfully and the value of salary is displayed an infinite number of times.

5. What will be the output of the following pseudocode?

Integer a, p Set a = 5 a = a + 1 a = a * 2 a = a / 2 p = a / 5 + 6 print p

Answer: 7

6. What will be the output of the following pseudocode?

Integer a, b, c Set b = 40, a = 20, c = 20 a = a + c c = c + a a = a + c c = c + a Print a + b + c

Answer: 300

7. What will be the output of the following pseudocode?

Integer a, b Set a = 1, b = 1 a = (a ^ 1) & (1) + (b ^ 1) & (1) Print a + b

Answer: 1

8. What is the output of the following code?

Set Integer res=0 do --res display res res++ while(res>=0) end do-while

Answer: Code executes successfully and nothing is displayed.

9. What will happen when the following program is executed?

Set Integer res=0 do --res display res res++ while(res>=0) end do-while

Answer: Code will run an infinite number of times.

10. What will be the output of the following pseudocode?

Integer a, b Set a = 15, b = 7 a = a mod (a - 3) b = b mod (b – 3) a = a mod 1 b = b mod 1 Print a + b - 0 - 2 - 15 - 7

Answer: 0

11. What will be the output of the following code?

#include int main ()

Answer:337

12. What will be the output of the following pseudocode?

Set Character c='7' switch(c) case '1': display "One" case '7': display "Seven" case '2': display "Two" default: display "Hello" break end-switch

13. What will be the output of the following pseudocode?

Integer a, p Set a = 5 a = a + 1 a = a * 2 a = a / 2 p = a / 5 + 6 print p - 0 - 1 - 2 - 7

Answer: 7

14. What will be the output of the following pseudocode?

Integer a, b Set a = 1, b = 1 a = (a ^ 1) & (1) + (b ^ 1) & (1) Print a + b

Answer: 1

15. Find the output of the following pseudo-code:

Integer value, n Set value = 1, n = 45 while(value less than equal to n) value = value 

Answer: 64

Capgemini Pseudocode Questions FAQs

1. How many Questions are there in Capgemini Pseudocode MCQs?
There are 30 questions that need to be solved within 30 mins.

2. What is the level of difficulty for Capgemini pseudocode test questions?
Capgemini pseudo code test questions are of moderate difficulty but you need to score at least 85%ile in this section to get to the next round.

3. What is the syllabus for Capgemini pseudocode round questions and Capgemini pseudocode questions and answers?
There is no such Syllabus for Capgemini pseudocode questions and answers but from what we have observed it has basic C input-output questions and a basic C Syllabus that was there first and we have given chapter-wise questions above please check them Capgemini Pseudocode Round Questions.

4. How do you prepare pseudocode?
Pseudocodes best practice:

  1. Limit pseudocode statements to one per line.
  2. Use initial capitalization for all keywords.
  3. Don’t write source code; write your thoughts on what the program should do.
  4. List all steps; a missed step here could result in missed steps in your program.

This article tried to discuss the Capgemini Pseudocode Questions. I hope this blog helps you understand and solve the problem. To practice more problems you can check out MYCODE | Competitive Programming at Prepbytes.