Skip to main content

My experience of Capgemini Interview 2020

My experience of Capgemini Interview 2020

31 August (Online Test) / 5 Sept (Interview)

My experience of Capgemini Interview 2020

31 August (Online Test) / 5 Sept (Interview)

Hello readers, today I m going to share my Capgemini interview process right from round 1 till the interview round.


Syllabus for Capgemini 2020 was a bit different than last time:

Capgemini Recuirtment Process

Step 1 to Step 4 had following details:

  • Pseudo Code (30 Questions in 30 Mins)
  • English Communication Test (30 Questions in 30 Mins)
  • Aptitude Test(Game Based) (4 Games in 20–24 Mins)
  • Behavioral Competency Profiling (100 Questions in 20 Mins)

Step 1: The Pseudo Code section was easy, nothing too difficult. Questions were based on recursion, functions, bit arrays, and time and space complexity. Cut off was above 15 Questions.

Step 2: The English Communication Test was slightly boring, in my opinion, it had few questions related to comprehension, fill in the blanks, correct the sentence, and analogy.

Step 3: The Aptitude Test (Game Based) was the easiest of all since it was very interesting and interactive. It had a few sections:

  1. Deductive Logical Thinking(Geo-Sudo)
  2. Inductive-logical Thinking
  3. Grid Challenge
  4. Motion Challenge
  5. Switch Challenge
  6. Digit Challenge

Deductive Logical Thinking was like Sudoku, so if you have played sudoku before then this section would be very easy for you. I completed till level 6–7 until the time run out.

Inductive-logical Thinking was where I had to find a pair of figures that follow the same rule as given by a pair in question. I completed 9–10 tasks until the time run out.

Before every level in Grid Challenge, there was a screen where I had to memorize the blinking pattern of circles. In the grid challenge, I had to check if two grids were identical and remembering the position of coordinates in a grid. This was slightly tough for me.

Motion Challenge was where I had the most fun, this challenge involves finding a path between two points in the maze in the least steps as possible. I completed till 6–7 level until the time run out.

Switch Challenge was like matching shapes but the shapes could be rotated, skewed, magnified, etc. This should be the easiest among the 6 challenges.

Digit Challenge was for math nerds, a mathematical operation needs to be solved, by using a few available digits only once.


Today i.e. September 5, 2020, was my HR and Technical Interview. I had been allotted 4:30 PM –5:30 PM time slot. I could only give the Technical Interview not the HR interview because there was an issue with the superset platform(which is where the interviews were gonna held). Many students across had faced similar issues and weren’t able to give interviews.

Despite the hard work they tried solving as many issues as they can from their end, unfortunately, I and one of my friends couldn’t give an HR interview.


My technical interview was like a casual talk (or maybe this is why I didn’t get an HR interview lol), the Interviewer was cool, he asked about the:

  • Projects that I have done
  • Cloud Technology (where I messed up)
  • OOPS concept

In the end, he asked whether I would like to ask him a question about Capgemini.


On the last note I’d like to tell you guys a thing, don’t move your neck or if your pen falls down (DON’T PICK IT UP), I had received a news later on that day that some girl lost her chance because she bent down to pick her pen. This incident had happened to me, but fortunately I didn’t bent picked it up.


Anyways, I hope y’all get a good job, Thank you for reading :)

Comments

Popular posts from this blog

How to use Chess com API using Python

  How to use Chess com API using Python Chess is an amazing strategy-based game and if you have been following the recent boom of online chess then welcome to the chess club. Online chess is amazing since it allows you to play with a random stranger at your level or stockfish (computer). There are many popular online chess websites like lichess.org, chess.com, playchess.com, and newly created kasparovchess.com. Today we will be seeing how to use chess.com API for getting players' stats. You can create software and get affiliates from them (check out the link below), so share it with them if you are planning to create something. Before you start make sure you have the following things: Pre-requirements Postman Anaconda or mini conda or Python idle Any text editor of your choice Pretty good? Now let’s download the JSON file that chess com developers have already made for us from here and then you import it to the Postman. This just helps you with prewritten get methods so that ...

Create your own YouTube video and playlist downloader using QT designer in Python

Create your own YouTube video and playlist downloader using QT designer in Python The code for this software is available on my GitHub, the link is given below. Create your own YouTube video and playlist downloader using QT designer in Python This is the thing we are trying to make today for this article The code for this software is available on my GitHub, the link is given below. If you haven’t checked out my previous article on the same topic but not the GUI version, please check it out. 3 ways to download YouTube playlists at once using Python Have you guys ever wanted to download your entire youtube playlist? rahulbhatt1899.medium.com So before starting to code let's check if you have all the requirements beforehand: Pre-requirements : Qt designer Anaconda or mini conda or python 3.7 compiler Any text editor of your choice Libraries to download: Pytube Ffmpy PyQt5 This would be sectioned into the following structure: Creating the UI in Qt designer Converting UI file int...

Authentication Using Passport JS

Authentication is big and most complicated part of an application, but it is also the  preponderance  part of any web app/software in general. Passport JS Passport JS is a widely popular authentication module for  Node js.  The sole purpose is to authenticate requests and is based on the idea of pluggable authentication strategies ( including local strategy, there are more than 500 strategies currently  available  ). When using third party application Your app never receives your password  thus freeing the developer from the burden of security related to handling and storing passwords. The Passport authentication and its strategy will include protection against attacks like “man in the middle” and other vectors an attacker might exploit. We are going to use Facebook strategy, for now, to install Passport and Facebook strategy type in the following command: Next, we are going to write the authentication code, and we’ll be creating a different module cal...