Upload Button Icon Add office photos

Capgemini Engineering

Compare button icon Compare button icon Compare

Filter interviews by

Capgemini Engineering Placements Interview Questions and Answers

Updated 12 May 2022

Capgemini Engineering Placements Interview Experiences

1 interview found

Placements Interview Questions & Answers

user image Riya Rani

posted on 12 May 2022

I applied via Naukri.com and was interviewed in Nov 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

The aptitude test comprised questions on computer programming concepts like C, Data Structures and Algorithms. It also contained questions on English language, then there was a gaming round followed by set of behavioural questions.

Round 2 - One-on-one 

(5 Questions)

  • Q1. Tell me something about yourself.
  • Q2. What is the difference between C, C++ and Java ?
  • Ans. 

    C is a procedural language, C++ is an object-oriented language, and Java is a class-based object-oriented language.

    • C is a low-level language with limited abstraction and no built-in support for object-oriented programming.

    • C++ is an extension of C with added support for object-oriented programming, templates, and exception handling.

    • Java is a high-level language with automatic memory management, platform independence, an...

  • Answered by AI
  • Q3. What is the difference between JVM, JDK and JRE?
  • Ans. 

    JVM is a virtual machine that executes Java bytecode. JDK is a development kit that includes JRE and tools for developing Java applications. JRE is a runtime environment that executes Java bytecode.

    • JVM stands for Java Virtual Machine and is responsible for executing Java bytecode.

    • JDK stands for Java Development Kit and includes JRE along with tools for developing Java applications.

    • JRE stands for Java Runtime Environmen...

  • Answered by AI
  • Q4. What is static memory allocation in C?
  • Ans. 

    Static memory allocation is a way of allocating memory at compile-time.

    • Memory is allocated before the program starts executing

    • The size of memory is fixed and cannot be changed during runtime

    • Variables declared with static keyword are stored in static memory

    • Example: int x; //allocated in static memory

    • Example: static int y; //allocated in static memory

  • Answered by AI
  • Q5. What is array ? What is constructor ? What is difference between class and object ?
  • Ans. 

    Array is a collection of similar data types. Constructor is a special method used to initialize objects. Class is a blueprint while object is an instance of a class.

    • Array is used to store multiple values in a single variable.

    • Constructor is called when an object of a class is created.

    • Class defines the properties and methods of an object while object is an instance of a class.

    • Example of array: int[] numbers = {1, 2, 3};

    • E...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Capgemini Engineering Placements interview:
  • C
  • Data Structures
Interview preparation tips for other job seekers - Just keep your basics clear and have confidence in yourself!

Skills evaluated in this interview

Interview questions from similar companies

I applied via Company Website and was interviewed before Jun 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. GL related questions
  • Q2. Comfortable for night shifts
  • Ans. 

    Yes, I am comfortable with night shifts and have experience working during those hours.

    • I have worked night shifts in my previous job and have adapted to the schedule

    • I am a night owl and prefer working during those hours

    • I understand the importance of being alert and focused during night shifts

    • I am willing to adjust my sleep schedule to accommodate night shifts

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn about GL and accounting policies

Placements Interview Questions Asked at Other Companies

Q1. What is array ? What is constructor ? What is difference between ... read more
Q2. What is the difference between C, C++, and Java?
Q3. What is the difference between JVM, JDK, and JRE?
Q4. What is static memory allocation in C?

I applied via Campus Placement and was interviewed before May 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic aptitude knowledge

Round 2 - Coding Test 

Strong in java

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confidence and focus on your goal

I applied via Referral and was interviewed before Jul 2021. There was 1 interview round.

Round 1 - HR 

(1 Question)

  • Q1. About yourself and technology you know

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident in every situation and ready to face the situation

What people are saying about Capgemini Engineering

View All
a hil test engineer
2w
Job referral
Hello all I am looking for job opportunity as Automotive validation Engineer. I have 3+ years of experience.
Got a question about Capgemini Engineering?
Ask anonymously on communities.

I applied via Naukri.com and was interviewed before Sep 2019. There were 6 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. IQ Test
  • Q2. Machine Test
  • Q3. Face To Face

Interview Preparation Tips

Interview preparation tips for other job seekers - basically there are 3 rounds:-
1. IQ Test
2. Machine Test
3. Face to Face

IQ Test is not so tough but prepare well Machine Test
Machine Test Question are like :-
Q.1 - We declare a variable in C++ like "is_this_a_variable" and in Java like "IsThisAVariable". There is underscore in between every word and first alphabet of every word is in lowercase in C++ and in Java first alphabet is in capital without underscore. Create a program in which if user input a string in a C++ variable format it will convert the input in java variable format.

Q2. Count the frequency of a string.
user input string - pqhphi
output-
p - 2
q - 1
h - 2
i - 1

Be strong in algorithms and data structure.

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Easy

It happens in very friendly manner.

  • Q1. 

    Paths in a Matrix Problem Statement

    Given an 'M x N' matrix, print all the possible paths from the top-left corner to the bottom-right corner. You can only move either right (from (i,j) to (i,j+1)) or dow...

  • Ans. 

    Print all possible paths from top-left to bottom-right in a matrix by moving only right or down.

    • Use backtracking to explore all possible paths from top-left to bottom-right in the matrix.

    • At each cell, recursively explore moving right and down until reaching the bottom-right corner.

    • Keep track of the current path and add it to the result when reaching the destination.

  • Answered by AI
  • Q2. Can you create 2 tables in SQL and perform different operations on them?
  • Ans. 

    Yes, I can create 2 tables in SQL and perform operations like INSERT, SELECT, UPDATE, and DELETE.

    • Create Table 1: CREATE TABLE employees (id INT, name VARCHAR(50), salary DECIMAL(10,2));

    • Create Table 2: CREATE TABLE departments (dept_id INT, dept_name VARCHAR(50));

    • Insert Data: INSERT INTO employees VALUES (1, 'John Doe', 50000);

    • Select Data: SELECT * FROM employees WHERE salary > 40000;

    • Update Data: UPDATE employees SET...

  • Answered by AI
Round 2 - Face to Face 

Round duration - 90 minutes
Round difficulty - Medium

No problem occur very friendly environment.

Round 3 - Face to Face 

(1 Question)

Round duration - 90 minutes
Round difficulty - Hard

  • Q1. 

    Rat in a Maze Problem Statement

    You need to determine all possible paths for a rat starting at position (0, 0) in a square maze to reach its destination at (N-1, N-1). The maze is represented as an N*N ma...

  • Ans. 

    Find all possible paths for a rat in a maze from source to destination.

    • Use backtracking to explore all possible paths in the maze.

    • Keep track of visited cells to avoid revisiting them.

    • Explore all possible directions (up, down, left, right) from each cell.

    • Add the current direction to the path and recursively explore further.

    • If the destination is reached, add the path to the list of valid paths.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in HyderabadEligibility criteriaAbove 7 CGPAVirtusa interview preparation:Topics to prepare for the interview - Linked List, Binary Search Tree ,Queue, Array ,DP ,Graph ,RecursionTime required to prepare for the interview - 3 MonthsInterview preparation tips for other job seekers

Tip 1 : Competitive programming plays a major role when you are appearing for coding rounds as a fresher. In the coding rounds, you won't get direct problems copied from Geeksforgeeks or Leetcode. You would be required to use your logical thinking to go ahead in the process. This is where competitive programming helps.

Tip 2 : Coding rounds are all about Coding + Timing. Most people fail to excel due to the pressure of a timer ticking on your head. So, instead of just solving problems, try to participate in timed contests. This will help you be used to the pressure of the timer.

Tip 3 : Many big companies like Microsoft, Amazon, and even Google expect you to be good at standard problems. So, once you are done with coding round by your logical skills and competitive programming, you must be well versed with some standard problems in order to excel.

Application resume tips for other job seekers

Tip 1 : Make it short, crisp, and simple. It is always good to have a 1 pager resume. 
Tip 2 : Resume must comprise of the following: Educational Qualifications, Technical skills, Projects, Work experience (if any), Achievements. Other than this, you may include some extra co-curricular achievements.

Final outcome of the interviewSelected

Skills evaluated in this interview

Software Engineer Interview Questions & Answers

NTT Data user image NIDHI PRIYADARSHINI

posted on 9 Apr 2015

Interview Questionnaire 

6 Questions

  • Q1. Tell me about your project
  • Ans. 

    Developed a web-based project management tool for a startup

    • Used React for the frontend and Node.js for the backend

    • Implemented user authentication and authorization using JWT

    • Integrated with third-party APIs such as Trello and Slack

    • Implemented real-time updates using WebSockets

    • Deployed on AWS using EC2 and RDS

  • Answered by AI
  • Q2. Write the idea or algorithm for d program of fibonacci series
  • Q3. One question from your subject
  • Q4. Introduce yourself
  • Ans. 

    I am a software engineer with experience in developing web applications and mobile apps.

    • Proficient in programming languages such as Java, Python, and JavaScript

    • Skilled in using frameworks like React, Angular, and Spring Boot

    • Experienced in working with databases such as MySQL and MongoDB

    • Familiar with Agile development methodologies and DevOps practices

  • Answered by AI
  • Q5. If I give you a box full of pencils..in how many ways can you use it
  • Q6. Do you have any question for me

Interview Preparation Tips

Round: Test
Experience: Time management is very important to clear the aptitude test. Besides this a lot of practice is also very important.  This round is the major filteration round. Though each round is a major filteration round cuz NTT DATA is not a bulk recruiter like cts, infy etc. Almost 2-3 thousand students were there for this round from 6 different colleges and only 100 of them were selected.
Tips: Its better to start with the preparation from before and do consider the previous year placement papers available at indiabix. You can practice more n more. Apart from this you can go through the r.s aggarwal aptitude book also.

Round: Group Discussion
Experience: There were many panels and each panel had 10-12 students. The H.r first decided some other topic but when he asked wether everybody is aware of the topic ..there were few who didn't know about it. .so he picked up another topic. Fortunately he asked me to start with the discussion.  Always try to be the one to break the ice.
Tips: The only key to crack this round is that yku should talk. You should definitely not confuse gd with debate. You should not argue or by any chance shouldn't sound arrogant.

Round: Technical Interview
Experience: They will definitely ask about your project so be thorough with that. Ntt data is a Japanese company . Though this is IT but it will ask  from the subject of your own choice from people those who have a non IT background. After you get shortlisted in d gd they will give you a form to fill. Do fill that form without fail. If it is blank then even if u go to the hr round he will reject you.
Tips: Just be confident and always smile. Be careful on what you write in your resume cuz they can ask about anything based on your resume.

Round: HR Interview
Experience: This round was a cake walk. Just be confident and updated about the company.  Do ask him a question if he asks you to do that.but make sure it shouldn't be vague or out of the picture.
Tips: Keep smiling and don't get nervous.  If they ask you about location preferences,  dun get firm at one place.try to be flexible.

General Tips: Donot loose hope at any cost. You never know when your moment is going to arrive. Do practice the aptitude as much as you can. Finally NTT DATA selected only 50 overall in wch 11 were from my college n i was lucky to be one of them. the offer letter was issued the same day and we were all venerated.  Its just a game of confidence. All the best
Skill Tips: Try to add some co curricular activities and justify your role.
Skills: communication, technical knowledge, management skills, leadership
College Name: SATHYABAMA UNIVERSITY
Motivation: You will find the it companies mostly head quartered in U.S but this company is in Japan. Plus you have better opportunity and growth compared to other companies cuz its not a bulk recruiter.

Skills evaluated in this interview

Are these interview questions helpful?

Interview Questionnaire 

2 Questions

  • Q1. Java ( socket programming, OOPS, DS )
  • Q2. Write about your dream
  • Ans. 

    My dream is to build innovative software solutions that positively impact people's lives.

    • Developing cutting-edge technology

    • Creating user-friendly interfaces

    • Solving complex problems

    • Collaborating with talented individuals

    • Making a difference in society

    • Continuous learning and growth

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: GRE givers , you can make it through this. Brush up your technical skills for the programming section.
Tips: GRE quant and verbal and quick review from tutorialspoint.com would do the trick.

Round: Group Discussion
Experience: I had fun. I won a few debate competitions in various technical symposiums so, It gave a good experience about being quiet at the right moment.
Tips: Turn to your GRAB-ON mode. Never miss any chance. Learn to know when to be quiet and when to talk in a GD. Try to bring down the heat If two participants are getting into a argumentative discussion.

Round: Stress Interview
Experience: It was really difficult. Exactly after the GD, we were asked to right an essay in a very less time and our capability to manage the stress was observed.
Tips: Be calm and write all that you know in a presentable way.

Round: Technical Interview
Experience: I did a project in my 3rd year which included few concepts on Socket programming which helped me a bit in this round. I answered confidently and I was put to a confidence test too to see how sure I was about the answer.
Tips: A quick review on the day of interview and involving in friendly discussion about programming languages before the test helps.

Round: HR Interview
Experience: I was asked few technical questions in this round and later moved on to the general logical questions. Questions like, cutting a bread into multiple slices, finding the corresponding switch among 3 switches for 3 bulbs in room were asked. Find the sum of 1-10 in 4 seconds was asked suddenly. Thanks to Arithmetic Progressions :P.
Tips: Use your logical ability to answer.

Skills: Java, C, Body Language, Mental ability, Confidence.
College Name: Malla Reddy Institute of Engineering & Technology ( MRIET )
Motivation: Ranked among the top 50 of the Fortune 500. Expanding organizations which include lot of opportunities.

I appeared for an interview before Aug 2016.

Interview Questionnaire 

1 Question

  • Q1. Asked about Resume and family background

Interview Preparation Tips

Round: Group Discussion
Experience: Asked about the topic and was told to talk something different
Tips: Just be confident. Have trust in God!
Duration: 25 minutes

Round: Test
Experience: Simple questions were asked to test the skills!
Duration: 45 minutes
Total Questions: 25

I appeared for an interview in Jun 2016.

Interview Questionnaire 

3 Questions

  • Q1. General hr questions
  • Q2. About technology used earlier
  • Q3. Included work profile and negotiations

Capgemini Engineering Interview FAQs

How many rounds are there in Capgemini Engineering Placements interview?
Capgemini Engineering interview process usually has 2 rounds. The most common rounds in the Capgemini Engineering interview process are Aptitude Test and One-on-one Round.
What are the top questions asked in Capgemini Engineering Placements interview?

Some of the top questions asked at the Capgemini Engineering Placements interview -

  1. What is array ? What is constructor ? What is difference between class and obje...read more
  2. What is the difference between C, C++ and Jav...read more
  3. What is the difference between JVM, JDK and J...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Genpact Interview Questions
3.8
 • 3.4k Interviews
DXC Technology Interview Questions
3.7
 • 839 Interviews
Nagarro Interview Questions
4.0
 • 793 Interviews
NTT Data Interview Questions
3.8
 • 658 Interviews
Publicis Sapient Interview Questions
3.5
 • 645 Interviews
GlobalLogic Interview Questions
3.6
 • 628 Interviews
EPAM Systems Interview Questions
3.7
 • 569 Interviews
View all
Senior Software Engineer
1.9k salaries
unlock blur

₹3.5 L/yr - ₹23.8 L/yr

Technical Lead
1.4k salaries
unlock blur

₹7.6 L/yr - ₹26.7 L/yr

Software Engineer
1.3k salaries
unlock blur

₹3 L/yr - ₹10 L/yr

Network Engineer
416 salaries
unlock blur

₹3 L/yr - ₹9.9 L/yr

Senior Consultant
412 salaries
unlock blur

₹7.8 L/yr - ₹29 L/yr

Explore more salaries
Compare Capgemini Engineering with

DXC Technology

3.7
Compare

Sutherland Global Services

3.5
Compare

Optum Global Solutions

4.0
Compare

Virtusa Consulting Services

3.7
Compare
write
Share an Interview