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

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Capgemini Python Software Developer Interview Questions and Answers

Updated 22 Sep 2024

Capgemini Python Software Developer Interview Experiences

4 interviews found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Create new list from the provided list but the order should be shuffled and no duplicate element should be removed
  • Ans. 

    Create a new list with shuffled order and no duplicate elements.

    • Use the random.shuffle() function to shuffle the list

    • Use a set to keep track of elements already added to the new list to avoid duplicates

    • Convert the set back to a list to maintain the order of elements

  • Answered by AI
  • Q2. Architecture of existing application
  • Ans. 

    The existing application follows a microservices architecture with separate components for different functionalities.

    • The application is divided into multiple services that communicate with each other through APIs.

    • Each service is responsible for a specific task or functionality, promoting modularity and scalability.

    • Examples of microservices in the architecture include user authentication service, payment processing serv

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Why do you want to join
  • Ans. 

    I am passionate about Python development and excited about the innovative projects your company is working on.

    • Passionate about Python development

    • Excited about innovative projects at company

    • Seeking growth and learning opportunities

  • Answered by AI
  • Q2. Where do you see yourself in 5 years
  • Ans. 

    In 5 years, I see myself as a senior Python developer leading a team of developers on innovative projects.

    • Continuing to enhance my Python skills and staying updated on new technologies

    • Taking on more leadership responsibilities and mentoring junior developers

    • Contributing to the success of the company through my technical expertise

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. Asked about core python and oops concepts like exceptions handling, generator, decorator, list dictionaries inheritance and 2 programs
Round 2 - Technical 

(1 Question)

  • Q1. Asked me about my projects and tech stack

Interview Preparation Tips

Topics to prepare for Capgemini Python Software Developer interview:
  • Python
  • DSA

Python Software Developer Interview Questions Asked at Other Companies

Q1. What is the purpose of using the super keyword, Inheritance in Py ... read more
Q2. Have you implemented any context manager in your application?
Q3. What is byte code. What is filter function in python used for.
asked in Infosys
Q4. Can you write a Python program to determine whether two given wor ... read more
Q5. Difference between static and instance methods in python? Explain ... read more
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

It was easy, went good for me.

Round 2 - Technical 

(1 Question)

  • Q1. Diff between list & tuple
  • Ans. 

    List is mutable, tuple is immutable in Python.

    • List uses square brackets [], tuple uses parentheses ().

    • List can be modified (add, remove, change elements), tuple cannot be modified.

    • List is used for collections of items that may need to be changed, tuple is used for fixed collections of items.

    • Example: list_example = [1, 2, 3], tuple_example = (4, 5, 6)

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Tell me about yourself?
  • Ans. 

    I am a Python Software Developer with 5 years of experience in developing web applications and data analysis tools.

    • 5 years of experience in Python development

    • Skilled in developing web applications and data analysis tools

    • Proficient in using frameworks like Django and Flask

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Job Fair and was interviewed in Nov 2023. There was 1 interview round.

Round 1 - Coding Test 

Python basic and basic snippets in python.

Capgemini interview questions for designations

 Python Developer

 (5)

 Jr Python Developer

 (1)

 Python Developer Intern

 (1)

 Python and Django Developer

 (3)

 Software Developer

 (152)

 Python Automation Engineer

 (1)

 Senior Software Developer

 (12)

 Software Developer fresher

 (6)

Interview questions from similar companies

I applied via Walk-in and was interviewed before Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Basic Programming questions.
  • Q2. Fibonacci program
  • Q3. OOPS concepts.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic OOPS concepts and basic programs.

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

Interview Questionnaire 

1 Question

  • Q1. Oops Concepts and Data Structure Questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Oops And Data Structure, Collection.

I applied via Campus Placement and was interviewed before Feb 2020. There were 6 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Was interviewed as fresher?
  • Q2. Written test conducted? with verbal ability test ? GD
  • Q3. How would u deal with a problematic situation when you are working in a team?
  • Q4. What are your plans about higher studies?

Interview Preparation Tips

Interview preparation tips for other job seekers - it was basic with apptiude test and attitiude test.

Interview Questionnaire 

2 Questions

  • Q1. They asked me on java and I have joined as a fresher they not much questions as I got selected as fresher on oops concepts and collections
  • Q2. Please be confident while facing interview and they will check your communication skills

I applied via Company Website and was interviewed before Feb 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. They asked about dbms questions in the form of table formate
  • Q2. They asked code for some python program

Interview Preparation Tips

Interview preparation tips for other job seekers - Firstly they conducted computer based technical exam and then after qualifying that then we will go for face face interview and then lastly HR round will be held.

I applied via Campus Placement and was interviewed in Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Wap of bubble sort
  • Ans. 

    Bubble sort is a simple sorting algorithm that repeatedly steps through the list, compares adjacent elements and swaps them if they are in the wrong order.

    • Start from the first element and compare it with the next element

    • If the next element is smaller, swap them

    • Repeat this process for all elements in the array

    • Continue this process until no more swaps are needed

  • Answered by AI
  • Q2. Wap of prime number
  • Ans. 

    A program to print all prime numbers

    • Take input from user for range of numbers

    • Loop through the range and check if each number is prime

    • Print the prime numbers

  • Answered by AI
  • Q3. What is hashmap?
  • Ans. 

    Hashmap is a data structure that stores key-value pairs and allows constant time access to values based on their keys.

    • Hashmap uses a hash function to map keys to indices in an array.

    • Collisions can occur when multiple keys map to the same index, which can be resolved using techniques like chaining or open addressing.

    • Examples of hashmap implementations include Java's HashMap class and Python's dict type.

  • Answered by AI
  • Q4. What is inheritance
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a new class is created by inheriting properties of an existing class.

    • Inheritance allows code reuse and promotes code organization.

    • The existing class is called the parent or superclass, and the new class is called the child or subclass.

    • The child class inherits all the properties and methods of the parent class and can also add new properties and methods.

    • For...

  • Answered by AI
  • Q5. Call by value and call by reference

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself

Skills evaluated in this interview

Capgemini Interview FAQs

How many rounds are there in Capgemini Python Software Developer interview?
Capgemini interview process usually has 2 rounds. The most common rounds in the Capgemini interview process are Technical, HR and Coding Test.
How to prepare for Capgemini Python Software Developer interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Capgemini. The most common topics and skills that interviewers at Capgemini expect are Python, Django and RTOS.
What are the top questions asked in Capgemini Python Software Developer interview?

Some of the top questions asked at the Capgemini Python Software Developer interview -

  1. Create new list from the provided list but the order should be shuffled and no ...read more
  2. Architecture of existing applicat...read more
  3. diff between list & tu...read more

Tell us how to improve this page.

Capgemini Python Software Developer Interview Process

based on 5 interviews

Interview experience

4.6
  
Excellent
View more
Capgemini Python Software Developer Salary
based on 88 salaries
₹4 L/yr - ₹13 L/yr
17% more than the average Python Software Developer Salary in India
View more details

Capgemini Python Software Developer Reviews and Ratings

based on 6 reviews

4.4/5

Rating in categories

4.7

Skill development

4.1

Work-life balance

4.5

Salary

4.7

Job security

4.5

Company culture

4.5

Promotions

4.5

Work satisfaction

Explore 6 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