Get free ebooK with 50 must do coding Question for Product Based Companies solved
Fill the details & get ebook over email
Thank You!
We have sent the Ebook on 50 Must Do Coding Questions for Product Based Companies Solved over your email. All the best!

Capgemini Exam pattern | Syllabus | Selection Process | Placement Guides

Last Updated on September 15, 2022 by Gokul Kannan

In this article, we will be discussing the Capgemini Exam Pattern. If you are looking for tips to crack the online round, this article will give you a better insight into the Capgemini Syllabus for online tests. Cagemini changed the number of rounds and the entire selection process. The first round will be Pseudo code round which will be conducted by CoCubes, after that there is no more Aptitude and Logical Section for Capgemini Recruitment Drive. Below we have mentioned all the details please go through all of them.

Capgemini Syllabus and Exam Pattern

These are the sections that come in Capgemini test –

  1. Pseudo Code
    • Questions – 30 Ques
    • Time – 30 mins
  2. English Communication Test
    • Questions- 30 Ques
    • Time- 30 mins
  3. Behavioral TesT
    • Questions- 100 Ques
    • Time- 20 mins (Approx)
  4. Game Test
    • Questions- 4 games out of 24
    • Time- 22-24 mins

You need to make sure that you are managing your time accurately, and attempting the sections with the most optimized step.

Note – Capgemini also asks coding questions for a different profile, wherein you have to solve 3 questions within 75 mins

Capgemini Selection Process 2022

Now, before starting preparation for the Capgemini Placement Test, it is important for the candidates to know about the Capgemini Selection Process. So, that they will know about the Rounds that they are facing. And in that way, they can prepare for the best. Following is the Capgemini Selection Process.

  • Written Test
  • Group Discussion
  • HR Interview

Capgemini Test Pattern 2022

Getting to know about the Capgemini Test Pattern 2022 along with the Capgemini Syllabus 2022 is very important. By knowing the Updated Capgemini Test Pattern 2022, candidates will have more of a chance for performing well in the Capgemini Placement Exam 2022.

SectionsNo. of questionsAvg. Time
Pseudo Code3030 mins
Behavioral Competency Test10020 mins(Approx.)
English Communication Test3030 mins
Game Based4 Games20 – 24 mins
Total160 questions 4 games100 – 104 minutes

Capgemini Syllabus 2022

Apart from giving the Topics of the Capgemini Placement Test, the Freshers Now team is also providing the Chapters on each topic. So, the candidates will not miss out on any topic while preparing for the Capgemini Placement Test. Check the below sections. You will also find the Direct Capgemini Syllabus 2022, Capgemini Test Pattern PDF Download Link.

Pseudocode Round

  • Understanding of programming logic (tested through Pseudo Code Questions)
  • Object-Oriented Programming (OOPS)
  • C, C++, and Java
  • Python
  • Data Structures

Behavioral Competency Profiling

This is another segment in the Capgemini Placement Exam. Candidates should not get confused with the name and the section is a synonym for the Psychometric Test.

  • The assessment is composed of pairs of statements.
  • You need to indicate which one you agree with more.
  • There will be 5 pairs of statements on each screen.
  • You cannot skip any item to continue to the next page

Games Based

  • Deductive Logical Thinking (Geo-Sudo)
  • Inductive-logical Thinking
  • Grid Challenge
  • Switch Challenge
  • Motion Challenge
  • Digit Challenge

English Communication Test

  • Sentence Correction
  • Prepositions
  • Grammar
  • Reading Comprehension
  • Synonyms & Antonym
  • Spotting Error
  • Speech and Tenses
  • Article
  • Sentence Selection
  • Sentence Arrangement

Top 10 – Capgemini Exam Pattern Questions

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

Integer i Set i = 3do print i + 3 i = i – 1while(i not equals 0) end while

6 6 6 6 5 6 555 6 5 4

Answer: 6 5 4

Explanation: In this program, one variable declared as i, and the value initialized as 3. We are moving with do-while(Do while will execute the statement once and then it will check the condition).

Step 1: It will print i+3, here i value is 3. So i+3 is 6. On the next line, i will be decremented by 1. Then checking the conditions in do-while() i!=0. Here the updated i value is 2 (2!=0),so the condition is true. The loop continues.

Step 2: It will print i+3, here the updated i value is 2. So i+3 is 5. On the next line, i will be decremented by 1. Then checking the conditions in do-while() i!=0. Here the updated i value is 1 (1!=0),so the condition gets true. The loop continues

Step 3: It will print i+3, here the updated i value is 1. So i+3 is 4. On the next line, i will be decremented by 1. Then check the condition in do-while() i!=0. Here the updated i value is 0 (0!=0),so the condition gets false. Thus the loop gets terminated!

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

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

A. 0
B. 4
C. 3
D. 5

Answer: 4

Explanation:

There are two variables a and str1. Value initialized for str1 is “goose”. On the next line, we are finding the length of str1 that is 5. Finally, printing the output of a bitwise exclusive OR operator with 1. And the answer is 4.

E.g. code to explain this:

{
      int a;
      string str1="goose";
      a = str1.length(); => length of String is 5
      cout<<(a^1);      5 xor 1 => 4 
}
  1. What would be the output of the following pseudocode?

    Integer i, j, k Set k = 8for(each i from 1 to 1) for(each j from the value of i to 1) print k+1 end for end for A. 2 B. 9 C. 8 D. 7

Answer: 9

Explanation:

There are three variables i, j, and k declared. Value initialized for k is 8, In this code, we are moving with a nested for loop. Here I value is 1, for loop will check the condition i<=1 condition gets true. Now, moving with the inner for loop j value will be 1 condition gets true j<=1.so, it prints K+1. Then the j value will be incremented by 1(2<+1) inner for loop condition gets false. On the next iteration, i value will be incremented by 1, here the updated i value is 2 (2<=1) condition get false. So the answer is 9.

  1. Mark the option which best expresses the sentence in Passive voice.The watchman opened the school building’s entrance.

A. The school building entrance was opened by the watchman. B. The school building’s entrance was opened by the watchman. C. The watchman has opened the school building’s entrance. D. The watchman opens the school building’s entrance.

Answer: The school building’s entrance was opened by the watchman.

Explanation:

The given sentence is in Active voice. We need to convert it into Passive voice. Here, Subject – The watchman Verb – opened Object – the school building’s entrance Structure of passive voice – Subject + Auxiliary verb + Verb (V3) + by + Object In passive voice, the subject becomes the object and the object becomes the subject. Here, the sentence is in the past tense and the subject is singular. So, the auxiliary verb should be ‘was’ Passive voice – The school building’s entrance was opened by the watchman.

  1. Which part of the sentence given below has an error in it?Parker found / ten rupees / as he cleans / the floor.

A. Parker found B. The floor C. Ten rupees D. as he cleans

Answer: as he cleans

Explanation: Here the verb ‘found’ is in the past tense. But, ‘he cleans’ is in the present tense. Hence, this is an error. It should be ‘he cleaned’.

  1. Mark the option containing the word that has been used incorrectly in the sentence given below.The pharmacy hadn’t hardly any of Paracetamol.

A. Any B. None of the mentioned options C. Hadn’t D. Hardly

Answer: Hadn’t

Explanation: The sentence’s meaning should be ‘The pharmacy doesn’t have Paracetamol’. This can be conveyed by changing ‘hadn’t’ to ‘had’. So, the correct statement should be ‘The pharmacy had hardly any of Paracetamol’.

  1. Mark the option best suited to replace the underlined portion of the sentence given below.- Riley can fluently speak in three languages – Mandarin, Japanese, and Cantonese.

A. Speaking B. Spoken C. Speak D. to speak

Answer: Speak

Explanation: Here, can is the modal verb and the verb after can should be in the bare infinitive form. So, it should be ‘speak’.

8. 1. I like to decorate my room. 2. I am very polite and respectful to everyone I meet.

A. Agree Statement 2. B. Agree Statement 1. C. Slightly agree with statement 1. D. Slightly agree with statement 2. Answer: Agree Statement 2.

9. 1. I make a schedule to study for my exams. 2. I am uncomfortable interacting with the opposite sex. A. Agree Statement 1. B. Agree Statement 2. C. Slightly agree with statement 2. D. Slightly agree with statement 1. Answer: Agree Statement 1.

10. 1. When I am part of a group, I like to take the lead. 2. I’d rather let other people do their thing and follow their lead. A. Agree Statement 1. B. Agree Statement 2. C. Slightly agree with statement 2. D. Slightly agree with statement 1. Answer: Slightly agree with statement 1.

Capgemini Exam Pattern FAQs

  1. What topics come in the capgemini exam? Cagemini written test consists of

    • Pseudo Code
    • English Communication Test
    • Game based Aptitude Test
    • Behavioral Competency Test
  2. Do we need to study anything other than these topics? No, you don’t need to study anything other than this, our study material consists of all the topics that are asked in the Capgemini placement exam.

  3. How many questions will be asked in the Capgemini Test? A total of 58 Questions will be asked in the Capgemini Test.

  4. Does your study material consist of the entire syllabus for the capgemini exam? Yes, our study material covers all the topics of all the sections of Capgemini. You can practice all types of questions 🙂

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

Leave a Reply

Your email address will not be published. Required fields are marked *