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
3.8

based on 39.6k Reviews

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Capgemini C Developer Interview Questions and Answers

Updated 12 Aug 2022

Capgemini C Developer Interview Experiences

1 interview found

C Developer Interview Questions & Answers

user image Anonymous

posted on 12 Aug 2022

I applied via Naukri.com and was interviewed in Jul 2022. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Threads, Multithreading, Pointers, Dangling pointers, Constructs in C++.

Interview Preparation Tips

Topics to prepare for Capgemini C Developer interview:
  • Threads
  • Multithreading
  • Pointers
  • Dangling pointers
  • Constructors
  • Constructs
  • Structures
  • Unions
  • Classes
  • Polymorphism
  • Encapsulation
  • Functions
  • Overloading
  • Overriding
  • Object Oriented Programming
  • Embedded Systems
Interview preparation tips for other job seekers - Be clear at fundamentals, be straight in answers. Keep an eye to eye contact with camera. Keep yourself visible with proper lighting, background arrangement and keep yourself audible, clear vocally.

C Developer Jobs at Capgemini

View all

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(10 Questions)

  • Q1. Bit shift 1 by 4 position from LSB
  • Ans. 

    Bit shift 1 by 4 positions from LSB results in 16

    • Use the left shift operator (<<) to shift the bits by 4 positions

    • 1 << 4 = 16

  • Answered by AI
  • Q2. Copy one string to another without using any standard function
  • Ans. 

    Use a loop to copy characters from one string to another

    • Create two character arrays to store the strings

    • Use a loop to iterate through each character of the source string and copy it to the destination string

    • Add a null terminator at the end of the destination string to mark the end of the copied string

  • Answered by AI
  • Q3. What's function pointer and what's it's signature
  • Ans. 

    A function pointer is a variable that stores the address of a function. Its signature includes the return type and parameter types of the function.

    • Function pointers allow for dynamic function calls based on the stored address

    • Syntax: return_type (*pointer_name)(parameter_types)

    • Example: void (*funcPtr)(int) = &someFunction;

  • Answered by AI
  • Q4. What's polymorphism
  • Ans. 

    Polymorphism is the ability of a function to behave differently based on the object it is called with.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • There are two types of polymorphism: compile-time (function overloading) and runtime (virtual functions).

    • Example: A base class Animal with a virtual function 'makeSound'. Subclasses Dog and Cat override 'makeSound' to bark

  • Answered by AI
  • Q5. What's compile time polymorphism
  • Ans. 

    Compile time polymorphism is achieved through function overloading and templates in C++.

    • Compile time polymorphism allows for different functions to be called based on the arguments provided at compile time.

    • Function overloading is a form of compile time polymorphism where multiple functions have the same name but different parameters.

    • Templates in C++ allow for generic programming and compile time polymorphism by creatin...

  • Answered by AI
  • Q6. Question about default argument
  • Q7. Overload + operator to add two complex numbers
  • Ans. 

    Overload + operator to add two complex numbers in C++.

    • Define a class for complex numbers with real and imaginary parts.

    • Overload the + operator as a member function of the class.

    • Return a new complex number with the sum of real and imaginary parts.

  • Answered by AI
  • Q8. Order of constructor and destructor. In case virtual function and about virtual destructor
  • Q9. Write stack which can work with any data type. Basically template
  • Q10. Write code to delete node from linked list
  • Ans. 

    To delete a node from a linked list, update the pointers of the previous node to skip the node to be deleted.

    • Traverse the linked list to find the node to be deleted

    • Update the pointers of the previous node to skip the node to be deleted

    • Free the memory allocated to the node to be deleted

  • Answered by AI

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Reverse the array of string
  • Ans. 

    Reverse the order of strings in an array

    • Iterate through the array and swap the elements from start to end

    • Use two pointers, one at the beginning and one at the end, to swap elements

    • Example: Input array ['apple', 'banana', 'cherry'] becomes ['cherry', 'banana', 'apple'] after reversing

  • Answered by AI
  • Q2. What's Design pattern used in your project?
  • Ans. 

    The design pattern used in my project is the Observer pattern.

    • Implemented to establish a one-to-many dependency between objects.

    • Allows multiple objects to listen and react to changes in a subject.

    • Promotes loose coupling between objects.

    • Example: Used to notify multiple UI components when a data model changes.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Dec 2024. There were 5 interview rounds.

Round 1 - Aptitude Test 

An aptitude test is an assessment to measure a candidate mental aptitude/mental ability

Round 2 - Technical 

(3 Questions)

  • Q1. Can you briefly Tell us about yourself?
  • Q2. What do you consider to be your strongest points?
  • Q3. Which programming languages do you use regularly in your work
Round 3 - Group Discussion 

A group discussion is a structured conversation in which participants share their ideas, perspectives, and solutions on a specific topic.

Round 4 - HR 

(2 Questions)

  • Q1. What motivates you to seek employment at Wipro?
  • Q2. What are your long-term career goals?
Round 5 - Assignment 

Assignment details refer to the specifics of an assignment, including any documents and/or emails or subsequent correspondence between the company and the client.

Interview Preparation Tips

Topics to prepare for Wipro Software Developer interview:
  • Your academic achievement
  • Responsibility related to your p
  • The way you address mistakes at
Interview preparation tips for other job seekers - Reflect on the activities you enjoy and what brings you happiness, while also taking into account your skills and strengths.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Dec 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Why did you choose the flask over the django and fastapi?
  • Ans. 

    I chose Flask over Django and FastAPI due to its simplicity, flexibility, and ease of use for smaller projects.

    • Flask is lightweight and minimalistic, making it easier to set up and use for smaller projects.

    • Flask allows for more flexibility in terms of project structure and customization compared to Django.

    • Flask is well-suited for rapid prototyping and smaller applications where simplicity is key.

    • Django, on the other ha...

  • Answered by AI
  • Q2. Write the code for flask request and response block?
  • Ans. 

    Flask request and response block code snippet

    • Use Flask's request object to access incoming request data

    • Use Flask's jsonify function to create a JSON response

    • Handle different HTTP methods like GET, POST, etc. in the route function

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. What is ORM? which ORM tool, have you used?
  • Ans. 

    ORM stands for Object-Relational Mapping, a programming technique for converting data between incompatible type systems in object-oriented programming languages.

    • ORM is used to map objects from an application to tables in a relational database.

    • It simplifies data manipulation by allowing developers to work with objects instead of SQL queries.

    • Popular ORM tools include Hibernate for Java, Entity Framework for .NET, and Seq

  • Answered by AI
  • Q2. Write ORM code for select item from table?
  • Ans. 

    Use ORM code to select item from a table in database.

    • Use ORM query methods like find(), findOne(), or where() to select items from a table.

    • Specify the table name and any conditions for the selection.

    • Example: User.find({ where: { id: 1 } }) will select a user with id 1 from the User table.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just conduct the interviews
Interview experience
2
Poor
Difficulty level
Hard
Process Duration
4-6 weeks
Result
No response

I applied via Naukri.com and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. P2P process with golden rules
  • Q2. Internal order types
  • Q3. Withholding tax types

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview process and questions completely depends on the interviewer experience.
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Mostly js questions, not so many of angular or react.
  • Q2. Like fizbuzz or things like that.

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't apply here, the culture here is horrible.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Jul 2024.

Round 1 - Aptitude Test 

It was easy, had average difficulty . Basic english and aptitude was asked

Round 2 - Technical 

(2 Questions)

  • Q1. Basics of computer fundamentals were asked in this round . OOPS , DBMS , SQL query etc. And 2 coding questions.
  • Q2. Another part was pychometric which is very very easy.
Round 3 - communication round 

(2 Questions)

  • Q1. Had to listen to audio and gave answer of the questions accordingly.
  • Q2. It test your ability of writing , speaking and listening .
Round 4 - Technical 

(2 Questions)

  • Q1. Techincal interview was focussed on project .
  • Q2. A little bit of easy DSA and basics of CS fundamentals.
Round 5 - HR 

(1 Question)

  • Q1. Project and interst
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

It was an online assessment containing 3 DSA questions

Round 2 - Technical 

(2 Questions)

  • Q1. Medium level array questions
  • Q2. Medium level DP questions
Round 3 - HR 

(1 Question)

  • Q1. General behavioural question about
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Sliding Window find the subarray with sum equal to k
  • Ans. 

    Using sliding window technique to find subarray with sum equal to k.

    • Initialize two pointers at the start of the array.

    • Move the right pointer to expand the window until the sum is greater than or equal to k.

    • Move the left pointer to shrink the window if the sum exceeds k.

    • Repeat until the end of the array is reached.

    • Example: Input array [1, 4, 20, 3, 10, 5], k=33. Output: [20, 3, 10].

  • Answered by AI

Capgemini Interview FAQs

How many rounds are there in Capgemini C Developer interview?
Capgemini interview process usually has 1 rounds. The most common rounds in the Capgemini interview process are One-on-one Round.
How to prepare for Capgemini C 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 C, Linux, Debugging, MFC and Multithreading.

Tell us how to improve this page.

People are getting interviews through

based on 1 Capgemini interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Accenture Interview Questions
3.9
 • 8k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
LTIMindtree Interview Questions
3.9
 • 2.9k Interviews
IBM Interview Questions
4.1
 • 2.4k Interviews
View all
Capgemini C Developer Salary
based on 11 salaries
₹4 L/yr - ₹8.1 L/yr
At par with the average C Developer Salary in India
View more details

Capgemini C Developer Reviews and Ratings

based on 2 reviews

3.4/5

Rating in categories

3.3

Skill development

3.4

Work-Life balance

2.8

Salary & Benefits

3.4

Job Security

2.8

Company culture

2.4

Promotions/Appraisal

2.8

Work Satisfaction

Explore 2 Reviews and Ratings
Immediate Hiring | BMC Developer | Capgemini

Bangalore / Bengaluru

4-9 Yrs

Not Disclosed

BMC Developer

Bangalore / Bengaluru

4-8 Yrs

Not Disclosed

C Developer

Bangalore / Bengaluru

3-6 Yrs

Not Disclosed

Explore more jobs
Consultant
55.3k salaries
unlock blur

₹5.2 L/yr - ₹18 L/yr

Associate Consultant
52k salaries
unlock blur

₹2.9 L/yr - ₹11.7 L/yr

Senior Consultant
46k salaries
unlock blur

₹7.5 L/yr - ₹25 L/yr

Senior Analyst
20.6k salaries
unlock blur

₹2 L/yr - ₹9 L/yr

Senior Software Engineer
19.9k salaries
unlock blur

₹3.5 L/yr - ₹12.5 L/yr

Explore more salaries
Compare Capgemini with

Wipro

3.7
Compare

Accenture

3.9
Compare

Cognizant

3.8
Compare

TCS

3.7
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview