Skip to content
Placement Preparation
FACE Prep Campus
For Colleges
For Companies
Placement Preparation
Face Prep Campus
For Colleges
For Companies
Capgemini Pseudocode Questions
Capgemini Pseudocode Questions
Home > Capgemini Pseudocode Questions
Welcome to your Capgemini Pseudocode Questions
Name
Phone Number
Email
Department
Year of Passing
2025
2026
2027
2028
Others
State
What will be the output of the following pseudocode? START SET A = 5 SET B = 3 IF A > B PRINT "A is greater" ELSE PRINT "B is greater" ENDIF END
A) A is greater
B) B is greater
C) Error
D) None of the above
None
What is the output of the following pseudocode? START SET A = 10 SET B = 20 SET C = A + B PRINT C END
A) 10
B) 20
C) 30
D) Error
None
What will be the output of the following pseudocode? START SET X = 7 SET Y = 3 SET Z = X * Y PRINT Z END
A) 10
B) 21
C) 3
D) Error
None
What will be the output of the following pseudocode? START SET A = 15 SET B = 5 SET C = A / B PRINT C END
A) 20
B) 10
C) 3
D) 3.0
None
What will be the output of the following pseudocode? START SET A = 10 SET B = 20 WHILE A < B A = A + 1 ENDWHILE PRINT A END
A) 20
B) 19
C) 30
D) 21
None
Time's up
c