Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Capgemini Team. If you also belong to the team, you can get access from here

Capgemini Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Capgemini Engineer Trainee Interview Questions, Process, and Tips

Updated 13 Jun 2024

Top Capgemini Engineer Trainee Interview Questions and Answers

Capgemini Engineer Trainee Interview Experiences

3 interviews found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
No response

I applied via Campus Placement and was interviewed in May 2024. There was 1 interview round.

Round 1 - HR 

(2 Questions)

  • Q1. Self intro and projects
  • Q2. Few questions based on resume

I applied via Naukri.com and was interviewed in Apr 2022. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basic questions related to python were asked and about my project and my research papers, about my achievements.
Round 2 - HR 

(1 Question)

  • Q1. This round i really had a terrible experience because HR criticized me and demotivate me for not being comfortable in working in shifts. Really her words were so harsh wasn't expecting this from such compa...

Interview Preparation Tips

Interview preparation tips for other job seekers - Please always make all the things clear in written email Don't trust on the calls. They changed there words later on.

Engineer Trainee Interview Questions Asked at Other Companies

Q1. If 10 people had a meeting and they shake hands only once with ea ... read more
asked in Siemens
Q2. Puzzle - A drawer contains 10 pairs each of red and blue socks. W ... read more
asked in Sobha
Q3. Shear force diagram and bending moment diagram for combination of ... read more
Q4. Explain stress and strain curve; Different Modulus eg young,bulk ... read more
asked in AVASOFT
Q5. What is logic of amstrong number say its coding logic

I applied via Naukri.com and was interviewed in May 2021. There were 4 interview rounds.

Interview Questionnaire 

10 Questions

  • Q1. 1) What are the features of Python?
  • Ans. 

    Python is a high-level, interpreted programming language known for its simplicity and ease of use.

    • Python is dynamically typed and garbage-collected.

    • It supports multiple programming paradigms, including procedural, object-oriented, and functional programming.

    • Python has a large standard library and a vast collection of third-party libraries.

    • It is widely used in scientific computing, data analysis, web development, and ar...

  • Answered by AI
  • Q2. What are libraries and modules in Python?
  • Ans. 

    Libraries and modules are pre-written code that can be imported and used in Python programs.

    • Libraries are collections of modules that provide additional functionality to Python programs.

    • Modules are individual Python files that contain reusable code.

    • Libraries and modules can be imported using the 'import' statement.

    • Examples of libraries include NumPy, Pandas, and Matplotlib.

    • Examples of modules include math, random, and

  • Answered by AI
  • Q3. Difference between list and tuples in Python?
  • Ans. 

    Lists are mutable while tuples are immutable in Python.

    • Lists use square brackets [] while tuples use parentheses ().

    • Elements in a list can be added, removed, or modified while tuples cannot be modified.

    • Lists are used for collections of data that need to be changed while tuples are used for collections of data that should not be changed.

    • Lists are slower than tuples in terms of performance.

    • Example: my_list = [1, 2, 3] an

  • Answered by AI
  • Q4. Difference between Foreign key and Primary key?
  • Ans. 

    Primary key uniquely identifies a record while foreign key establishes a link between two tables.

    • Primary key is a column or set of columns that uniquely identifies each record in a table.

    • Foreign key is a column or set of columns in one table that refers to the primary key in another table.

    • Primary key cannot have null values while foreign key can have null values.

    • Primary key is used to create relationships between table...

  • Answered by AI
  • Q5. What are joins in SQL?
  • Ans. 

    Joins in SQL are used to combine data from two or more tables based on a related column.

    • Joins are used to retrieve data from multiple tables in a single query.

    • There are different types of joins such as inner join, left join, right join, and full outer join.

    • Inner join returns only the matching rows from both tables.

    • Left join returns all the rows from the left table and matching rows from the right table.

    • Right join retur...

  • Answered by AI
  • Q6. Tell me about yourself?
  • Q7. What are your long term and short term goals?
  • Q8. What do you know about Capgemini?
  • Q9. Are you a risk taker? How do you manage taking risks?
  • Q10. If someone from your team is not co operating, then how will you deal with that person as a team leader?

Interview Preparation Tips

Interview preparation tips for other job seekers - 1) Be seated at the place where internet range is full.
2) Speak clearly. If you don't know the answer, politely say "Sorry Sir/Ma'am. I don't have any idea."
3) Prepare all the basic concepts of the subject.

Skills evaluated in this interview

Interview questions from similar companies

Interview Preparation Tips

Round: Test
Duration: 1 hour 30 minutes
Total Questions: 30

College Name: niet

I was interviewed in Nov 2016.

Interview Questionnaire 

1 Question

  • Q1. Basic C,Java

Interview Preparation Tips

Round: Test
Total Questions: 40

College Name: Malla Reddy Institute Of Engineering & Technology ( MRIET )

I applied via Naukri.com and was interviewed before Jul 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Coming to AEM,Interviewer has covered all the topics.

Interview Preparation Tips

Interview preparation tips for other job seekers - Pls don't join in TechMahindra.Especially for AEM Folks.Because there are no projects at all.They force you to learn and work in other domain.Then your AEM knowledge will vanish.Worst Company.

I applied via Company Website and was interviewed before Apr 2021. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What is dns Explain OSI model
  • Ans. 

    DNS is a system that translates domain names into IP addresses.

    • DNS stands for Domain Name System

    • It is responsible for resolving domain names to IP addresses

    • It uses a hierarchical naming system

    • DNS servers store information about domain names and their corresponding IP addresses

    • Examples of DNS servers include Google DNS and OpenDNS

  • Answered by AI
  • Q2. What is DHCP Explain TCP UDP
  • Ans. 

    DHCP is a network protocol that assigns IP addresses to devices on a network. TCP and UDP are transport layer protocols used for data transmission.

    • DHCP stands for Dynamic Host Configuration Protocol

    • It automatically assigns IP addresses to devices on a network

    • It also provides other network configuration information such as subnet mask and default gateway

    • TCP stands for Transmission Control Protocol

    • It is a connection-orie...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic concepts of networking , hardware and os configurations.

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. What is name mangling?
  • Ans. 

    Name mangling is a technique used by compilers to give unique names to functions and variables to avoid naming conflicts.

    • Name mangling is used in C++ to support function overloading.

    • It is also used in Python to avoid naming conflicts in modules.

    • Name mangling can make it difficult to access variables and functions from outside the class in which they are defined.

    • In C++, name mangling can be seen by using the 'nm' comman

  • Answered by AI

Skills evaluated in this interview

I applied via Job Fair and was interviewed before May 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 
Round 2 - One-on-one 

(1 Question)

  • Q1. Why you are suppose to join Cognizant

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared for a basic formal questions and don't get panic

I applied via Naukri.com and was interviewed in Aug 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Past experience and communication skills

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident
Contribute & help others!
anonymous
You can choose to be anonymous

Capgemini Interview FAQs

How many rounds are there in Capgemini Engineer Trainee interview?
Capgemini interview process usually has 1-2 rounds. The most common rounds in the Capgemini interview process are HR and Technical.
What are the top questions asked in Capgemini Engineer Trainee interview?

Some of the top questions asked at the Capgemini Engineer Trainee interview -

  1. What are libraries and modules in Pytho...read more
  2. 1) What are the features of Pytho...read more
  3. Difference between Foreign key and Primary ke...read more

Recently Viewed

JOBS

Browse jobs

Discover jobs you love

COMPANY BENEFITS

KNR Constructions

20 benefits

COMPANY BENEFITS

IRB Infrastructure

60 benefits

COMPANY BENEFITS

Dilip Buildcon

304 benefits

COMPANY BENEFITS

Dilip Buildcon

304 benefits

INTERVIEWS

Interface Microsystems

No Interviews

INTERVIEWS

Bank of America

No Interviews

DESIGNATION

INTERVIEWS

SOTI

No Interviews

INTERVIEWS

Desire Energy Solution

No Interviews

Tell us how to improve this page.

Capgemini Engineer Trainee Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Capgemini Engineer Trainee Salary
based on 9 salaries
₹3.8 L/yr - ₹7.9 L/yr
41% more than the average Engineer Trainee Salary in India
View more details

Capgemini Engineer Trainee Reviews and Ratings

based on 7 reviews

3.9/5

Rating in categories

4.5

Skill development

4.0

Work-life balance

4.1

Salary

4.1

Job security

4.2

Company culture

4.0

Promotions

4.2

Work satisfaction

Explore 7 Reviews and Ratings
Consultant
55.1k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Consultant
50.7k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Consultant
46.1k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Analyst
20.7k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
20.2k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Capgemini with

Wipro

3.7
Compare

Accenture

3.8
Compare

Cognizant

3.7
Compare

TCS

3.7
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent