Upload Button Icon Add office photos

Filter interviews by

Capgemini Engineering Software Development Engineer Interview Questions and Answers

Updated 12 Feb 2024

Capgemini Engineering Software Development Engineer Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Explain how rest api authenticated
  • Ans. 

    REST API authentication is the process of verifying the identity of clients accessing the API.

    • Authentication can be achieved using various methods such as API keys, tokens, or OAuth.

    • API keys are unique identifiers issued to clients and are included in the request headers for authentication.

    • Tokens are generated upon successful login and are used to authenticate subsequent requests.

    • OAuth is a protocol that allows clients...

  • Answered by AI
Round 2 - Not attended 

(1 Question)

  • Q1. Not attended yet

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Job Fair

Round 1 - Aptitude Test 

Verbal, reasoning,aptitude

Round 2 - Technical 

(1 Question)

  • Q1. MCQs related to CS
Round 3 - Coding Test 

2Coding questions and it was moderate level

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

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

Round 1 - Coding Test 

We will get one assessment link which have 2 coding questions.

Round 2 - Aptitude Test 

We get another link for aptitude test after clearing first assessment only.

Round 3 - One-on-one 

(1 Question)

  • Q1. We have 30 min one on one round interview. They ask some technical questions. But in my prospect it was easy

Interview Preparation Tips

Interview preparation tips for other job seekers - Apply for graduate roles to get job easily at Amazon
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Aug 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

It was simple and easy, anyone can solve it

Round 2 - English Communication 

(1 Question)

  • Q1. In this round we had to record videos of ourselves speaking based on some topic they provide.
Round 3 - Technical 

(1 Question)

  • Q1. The most of the part was HR questions, they only asked for my previous projects as technical.

Interview Preparation Tips

Topics to prepare for UST Software Development Engineer interview:
  • HR
  • Project
Interview preparation tips for other job seekers - Be sure to add as many projects you have to the resume.

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

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Basic java questions along with oops concepts
  • Q2. Spring mvc and spring boot

Interview Preparation Tips

Interview preparation tips for other job seekers - Go for the company, as its service based it may not have good perks. But still good.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Motilal Nehru Institute National Institute of Technology (NIT), Allahabad and was interviewed before Jun 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

Some basic questions on maths and dfs and bfs.

Round 3 - Technical 

(2 Questions)

  • Q1. On the basis of the project and your cs subjects mentioned in the resume
  • Q2. Height of the binary tree, factorial code in python
  • Ans. 

    Calculate the height of a binary tree and implement factorial code in Python.

    • To calculate the height of a binary tree, you can use a recursive approach where you find the height of the left and right subtrees and return the maximum height plus one.

    • For factorial code in Python, you can use a recursive function that multiplies the current number with the factorial of the previous number until reaching 1.

    • Example for calcu...

  • Answered by AI

Skills evaluated in this interview

I applied via Company Website and was interviewed in Oct 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Assignment 

About flow control and abstract classes and methods.

Round 3 - Coding Test 

Simple logical codes and in syntax about.

Interview Preparation Tips

Topics to prepare for Hewlett Packard Enterprise Software Development Engineer interview:
  • Java
  • C++
  • C
Interview preparation tips for other job seekers - Sir,
You can every questions about skill related thank you sir.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at J S S Academy of Technical Education, Bangalore and was interviewed in Dec 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Average to easy difficulty level.

Round 2 - Technical 

(3 Questions)

  • Q1. Java code of string manipulation
  • Q2. What is the Java code for various types of sorting algorithms?
  • Q3. Sql query and topics related to joins.
Round 3 - HR 

(4 Questions)

  • Q1. About yourself and family
  • Q2. What do you know about the company?
  • Q3. Can you provide examples of real-life scenarios where you handled conflicts with either a colleague or a manager?
  • Q4. What actions would you take if your manager does not approve your product idea, and how would you attempt to persuade them?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident; they will strive to comfort you despite any feelings of hesitation and nervousness. A foundational understanding of Java or C++, along with knowledge of data structures and algorithms (DSA), will be extremely advantageous. You should illustrate your potential contributions while also recognizing your limitations. Foster a positive atmosphere.
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Dec 2024.

Round 1 - Coding Test 

Basics of Sql Queries and Explain the Queries

Round 2 - Technical 

(3 Questions)

  • Q1. SCD types of in ETL
  • Q2. SQL Queries with some scenario based
  • Q3. What is mean by index
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Dec 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Topics on electronics and C programming

Round 2 - Technical 

(4 Questions)

  • Q1. Questions on simple python programs and electronics basics
  • Q2. Question on simple linked list
  • Q3. Program for fibonacci seq
  • Ans. 

    Program to generate Fibonacci sequence

    • Start with two initial numbers, 0 and 1

    • Add the previous two numbers to get the next number in the sequence

    • Repeat this process to generate the Fibonacci sequence

    • Example: 0, 1, 1, 2, 3, 5, 8, 13, ...

  • Answered by AI
  • Q4. Questions on mosfets
Round 3 - HR 

(1 Question)

  • Q1. Why you would like to join the company, and other questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Good experience in the interview

Capgemini Engineering Interview FAQs

How many rounds are there in Capgemini Engineering Software Development Engineer interview?
Capgemini Engineering interview process usually has 2 rounds. The most common rounds in the Capgemini Engineering interview process are Technical.
What are the top questions asked in Capgemini Engineering Software Development Engineer interview?

Some of the top questions asked at the Capgemini Engineering Software Development Engineer interview -

  1. Explain how rest api authentica...read more
  2. Not attended ...read more

Tell us how to improve this page.

Capgemini Engineering Software Development Engineer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more
Capgemini Engineering Software Development Engineer Salary
based on 16 salaries
₹3.6 L/yr - ₹10 L/yr
61% less than the average Software Development Engineer Salary in India
View more details

Capgemini Engineering Software Development Engineer Reviews and Ratings

based on 3 reviews

3.6/5

Rating in categories

3.6

Skill development

3.4

Work-life balance

3.1

Salary

3.6

Job security

3.6

Company culture

3.6

Promotions

3.6

Work satisfaction

Explore 3 Reviews and Ratings
Senior Software Engineer
2.2k salaries
unlock blur

₹5.7 L/yr - ₹22.4 L/yr

Software Engineer
1.4k salaries
unlock blur

₹3 L/yr - ₹9.7 L/yr

Technical Lead
1.4k salaries
unlock blur

₹9.9 L/yr - ₹32 L/yr

Network Engineer
462 salaries
unlock blur

₹3 L/yr - ₹12 L/yr

Senior Technical Lead
416 salaries
unlock blur

₹14.1 L/yr - ₹35 L/yr

Explore more salaries
Compare Capgemini Engineering with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare
Did you find this page helpful?
Yes No
write
Share an Interview