Upload Button Icon Add office photos

Filter interviews by

Clear (1)

Capgemini Engineering Lead Engineer Interview Questions and Answers

Updated 20 Aug 2024

Capgemini Engineering Lead Engineer Interview Experiences

2 interviews found

Lead Engineer Interview Questions & Answers

user image Maharaj M

posted on 20 Aug 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. What is unresolved reference?
  • Ans. 

    Unresolved reference is an error in programming where a variable or function is used without being defined or declared.

    • Occurs when a variable or function is used before it is declared or defined

    • Can also happen when a variable or function is misspelled

    • Common in programming languages like Python, Java, and C++

  • Answered by AI
  • Q2. What is the difference b/w clock & normal gating?
  • Ans. 

    Clock gating is used to disable the clock signal to certain parts of a circuit to save power, while normal gating is used to control the flow of data within the circuit.

    • Clock gating is used for power optimization by disabling the clock signal to unused parts of the circuit.

    • Normal gating is used to control the flow of data within the circuit by enabling or disabling certain paths.

    • Clock gating helps in reducing power con...

  • Answered by AI
  • Q3. Q1. library & netlist mismatch q2. size pmos will differ
  • Ans. 

    This question is likely related to a discrepancy between a library and netlist causing a difference in the size of PMOS transistors.

    • Mismatch between the library and netlist can lead to incorrect sizing of transistors

    • Ensure consistency between the library files and netlist to avoid discrepancies

    • Check for any errors or warnings related to library and netlist mismatch in the design tool logs

    • Verify the sizing of PMOS trans

  • Answered by AI

Lead Engineer Interview Questions & Answers

user image Sachin Jain

posted on 26 Jun 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Recruitment Consulltant

Round 1 - Coding Test 

String and DMA interview question

Interview Preparation Tips

Topics to prepare for Capgemini Engineering Lead Engineer interview:
  • C
Interview preparation tips for other job seekers - do leat coding every day

Lead Engineer Interview Questions Asked at Other Companies

asked in Tata Power
Q1. What is the resistance value of tripping & closing coil of vc ... read more
asked in Tata Power
Q2. 1.What is the contact resistance of VCB.?
asked in HCLTech
Q3. Which BGP path attributes are used to manipulate the ingress traf ... read more
asked in HCL Group
Q4. Monitoring tools and what metrics we capture during or after test ... read more
Q5. Java 8 features? What is functional interface? Difference between ... read more

Interview questions from similar companies

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 Recruitment Consultant and was interviewed in Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basic communication skills were tested. Sone techical questn too. Versant test is mandatory

Interview Preparation Tips

Interview preparation tips for other job seekers - Please never go for these third party vendors. They misguide you regarding profile . I went for this third party vendor named savantis solution and it really misguided me

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.

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

I applied via Walk-in and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Introduction your self in interview

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview should be very easy and comfortable to the students. And be confident at the infront of interviewer

I applied via Naukri.com and was interviewed before Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Lifecycle methods of Angular
  • Ans. 

    Angular has several lifecycle methods that are called at different stages of a component's life.

    • ngOnInit() - called after the component is initialized

    • ngOnChanges() - called when the component's input properties change

    • ngDoCheck() - called during every change detection cycle

    • ngAfterViewInit() - called after the component's view has been initialized

    • ngOnDestroy() - called just before the component is destroyed

  • Answered by AI
  • Q2. What are pipes in angular?
  • Ans. 

    Pipes are a feature in Angular that allow for data transformation before displaying it in the view.

    • Pipes are used to format data in the view

    • They can be used to filter, sort, and transform data

    • Examples include the date pipe, currency pipe, and uppercase pipe

  • Answered by AI
  • Q3. How to do global error handling in angular?
  • Ans. 

    Global error handling in Angular can be done using ErrorHandler class.

    • Create a class that implements the ErrorHandler interface

    • Override the handleError() method to handle errors globally

    • Provide the ErrorHandler class in the providers array of AppModule

    • Use the error handling service to log errors or display error messages

  • Answered by AI
  • Q4. What are custom directives? What are their types? How to create with general example?
  • Ans. 

    Custom directives are a way to extend HTML with new attributes and functionality.

    • Types of custom directives are attribute, element, and class directives.

    • Attribute directives modify the behavior of existing HTML elements.

    • Element directives create new HTML elements.

    • Class directives modify the behavior of existing HTML elements based on their class.

    • To create a custom directive, use the directive() method of the AngularJS ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. Be confident if you know the answers and frank if you don't.
2. Try to get your basics and core concepts to be clear clear.

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. About my college projects and about my passion
Contribute & help others!
anonymous
You can choose to be anonymous

Capgemini Engineering Interview FAQs

How many rounds are there in Capgemini Engineering Lead Engineer interview?
Capgemini Engineering interview process usually has 1 rounds. The most common rounds in the Capgemini Engineering interview process are Coding Test and Technical.
What are the top questions asked in Capgemini Engineering Lead Engineer interview?

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

  1. What is the difference b/w clock & normal gati...read more
  2. q1. library & netlist mismatch q2. size pmos will dif...read more
  3. what is unresolved referen...read more

Recently Viewed

JOBS

Ultra Media and Entertainment

No Jobs

INTERVIEWS

Capgemini Engineering

No Interviews

JOBS

Tradejini Financial Services

No Jobs

INTERVIEWS

Capgemini Engineering

No Interviews

SALARIES

CTS Consulting & Technical Support

INTERVIEWS

Capgemini Engineering

No Interviews

INTERVIEWS

Capgemini Engineering

No Interviews

SALARIES

Future Generali India Life Insurance

SALARIES

KP Reliable Technique India

SALARIES

Broadridge Financial Solutions

Tell us how to improve this page.

Capgemini Engineering Lead Engineer Interview Process

based on 2 interviews

Interview experience

4
  
Good
View more
Capgemini Engineering Lead Engineer Salary
based on 32 salaries
₹8 L/yr - ₹29.8 L/yr
7% more than the average Lead Engineer Salary in India
View more details

Capgemini Engineering Lead Engineer Reviews and Ratings

based on 9 reviews

4.2/5

Rating in categories

3.1

Skill development

3.8

Work-life balance

2.8

Salary

3.4

Job security

3.8

Company culture

2.7

Promotions

3.5

Work satisfaction

Explore 9 Reviews and Ratings
Senior Software Engineer
2.1k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Lead
1.5k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
1.3k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Network Engineer
443 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Technical Lead
369 salaries
unlock blur

₹0 L/yr - ₹0 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