Upload Button Icon Add office photos
Engaged Employer

i

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

KPIT Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

KPIT Technologies Senior Engineering Lead Interview Questions and Answers

Updated 2 Nov 2022

KPIT Technologies Senior Engineering Lead Interview Experiences

1 interview found

I applied via Approached by Company and was interviewed in Oct 2022. There were 3 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. General C++ question,
  • Q2. Multi threading, mutex
Round 3 - HR 

(1 Question)

  • Q1. General H related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confidence and prepare C++ basic, inheritance, virtual functions and how it works, STL, smart pointers

Interview questions from similar companies

Software Engineer Interview Questions & Answers

Adobe user image Devendra Bendkhale

posted on 4 Dec 2015

Interview Questionnaire 

8 Questions

  • Q1. WRITE A GENERIC SWAP FUNCTION
  • Ans. 

    A generic swap function swaps two values of any data type.

    • The function should take two parameters of any data type.

    • Use a temporary variable to store the value of one parameter.

    • Assign the value of the second parameter to the first parameter.

    • Assign the value of the temporary variable to the second parameter.

  • Answered by AI
  • Q2. SEARCH AN ELEMENT IN ROTATED SORTED LINKLIST .
  • Ans. 

    Search for an element in a rotated sorted linked list.

    • Find the pivot point where the list is rotated.

    • Divide the list into two sublists based on the pivot point.

    • Perform binary search on the appropriate sublist.

    • Handle edge cases such as empty list and list with only one element.

  • Answered by AI
  • Q3. SEARCH AN ELEMENT IN ROTATED SORTED ARRAY. WRITED A CODE FOR IT
  • Ans. 

    Search an element in a rotated sorted array

    • Find the pivot point where the array is rotated

    • Divide the array into two sub-arrays based on pivot point

    • Perform binary search on the appropriate sub-array

    • Repeat until element is found or sub-array size is 1

  • Answered by AI
  • Q4. In an Array of size 95 contain numbers in range 1 to 100. each number is at max once in the array. find the 5 missing numbers in array between 1-100
  • Ans. 

    Find 5 missing numbers in an array of size 95 containing numbers in range 1 to 100.

    • Create a boolean array of size 100 and mark the present numbers

    • Iterate through the boolean array and find the missing numbers

    • Alternatively, use a HashSet to store the present numbers and find the missing ones

  • Answered by AI
  • Q5. Given sudoku as id array of size . in a given empty cell find the possible numbers that could be possible. Asked me to write code for it
  • Ans. 

    Given a Sudoku board, find possible numbers for an empty cell.

    • Iterate through empty cells and check possible numbers using row, column, and box constraints.

    • Use a set to keep track of possible numbers for each empty cell.

    • Return the set of possible numbers for the given empty cell.

  • Answered by AI
  • Q6. Given 4 unsigned integers find their integer average (eg. (2,2,2,3) => (2+2+2+3)/4 = 2) consider integer division ) without typecasting
  • Ans. 

    Find integer average of 4 unsigned integers without typecasting

    • Add all the integers and divide by 4

    • Use bit shifting to divide by 4

    • Handle overflow by using long long data type

    • Use unsigned int data type for input

  • Answered by AI
  • Q7. Write a code to identify wheter given processor is of 32 bit architecture or 64 bit architecture
  • Ans. 

    Code to identify 32 bit or 64 bit architecture of a processor

    • Check if the operating system is 32 bit or 64 bit

    • If OS is 32 bit, processor is 32 bit

    • If OS is 64 bit, check if processor supports 64 bit architecture

    • Use CPUID instruction to check if processor supports 64 bit architecture

  • Answered by AI
  • Q8. Convert a binary number into base 64 integer
  • Ans. 

    Convert binary number to base 64 integer

    • Divide the binary number into groups of 6 bits

    • Convert each group of 6 bits to decimal

    • Map the decimal value to the corresponding base 64 character

    • Concatenate the base 64 characters to form the final integer

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: SIMPLE CODING QUESTIONS SPEED MATTERS.
Duration: 60 minutes
Total Questions: 3

Skills: Analytics And Coding
College Name: IIT Guwahati

Skills evaluated in this interview

Interview Questionnaire 

6 Questions

  • Q1. Solving puzzles(25 horses,ant and sweets,height of a building..) try as many as possible before appearing for interview
  • Q2. If experienced , then project details of previous companies a must prepare question
  • Q3. Writing test cases for random scenarios
  • Q4. Programming in whatsoever language you r comfortable with, basic coding problems of DS,Algos. eg. Zigzag tree traversal algo,random linked list copy
  • Q5. Some people asked me questions related to the work i will do if hired in the project
  • Q6. Be genuine in ur CV, and be prepared with everything you write there.

Interview Preparation Tips

College Name: Na

I applied via Referral

Interview Preparation Tips

Round: Test
Experience: I appeared for Amdocs through Campus Recruitment Process. Section 1,2,3 was not tough, if you have practiced RD Sharma then don't worry about these sections as it was the easiest part of the written test. After that there were two coding questions in which you can choose any language(C/C++/Java) to write your code. The code were easy, I mean it wasn't like Codechef problems. If you have ever made the programming assignments by yourself then you would definitely be able to crack this section. Even if you didn't make it then you can practice coding questions like finding H.C.F, L.C.M, Removing redundant number from array, finding whether the string is palindrome or not, finding whether the number is Armstrong number or not,etc,. Now comes the technical section that was little bit tough for those who haven't studied about UNIX ever. It was consisting of C, DBMS and Unix. C questions can easily be attempt by completing "Test your C Skills by Yashwant Kanedtkar", In DBMS most of the questions were query based, some PL/SQL questions were also there, in Unix most of the questions were from VI editor commands and some linux commands like sed, uniq, fdisk and very few questions were from shell scripting like, what will be the output of echo*. Overall the test was easy, since it is easy for everyone so you need to do lots of practice because out of more than 200 students only 39 cleared the written test in our campus.
Duration: 2:30 minutes
Total Questions: 82

Skills: Implementation Of Code Using OOPS, Coding Skills, Database Management, Ability To Think, Ability To Cope Up With Stress, Ability To Deal Diplomatically, 1)communication
College Name: NIT Sikkim

Interview Questionnaire 

5 Questions

  • Q1. Technical round was basically a White board interview .I have been asked to write few C# codes in order to explain OOPs concept .
  • Q2. What's MVC Life cycle . Explain how does AJAX call happen . How can you pass one data set or single data from one view to a partial view .
  • Ans. 

    MVC life cycle, AJAX call and passing data from view to partial view.

    • MVC life cycle includes request routing, controller instantiation, action execution, and rendering of the view.

    • AJAX call is initiated by sending an HTTP request to the server and receiving a response in the form of JSON or XML data.

    • To pass data from one view to a partial view, we can use ViewBag, ViewData, or TempData.

    • ViewBag is a dynamic object that ...

  • Answered by AI
  • Q3. What's Abstract class , what's the use of it . What's interface , how it appears to a important part of Service layer.
  • Ans. 

    Abstract class is a class that cannot be instantiated, while interface is a contract that defines methods.

    • Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.

    • Abstract class can have instance variables, while interface cannot.

    • Abstract class is used for code reusability and polymorphism, while interface is used for achieving abstraction and loose coupling.

    • In serv...

  • Answered by AI
  • Q4. Usual HR didn't discussion.
  • Q5. It was not question answer round . A formal interaction with high level people of the organization , through which they can try to see you interpersonal skills.

Interview Preparation Tips

Round: Resume Shortlist
Experience: Asp.net MVC , C# , JavaScript, jQuery, Html

Skills evaluated in this interview

I applied via LinkedIn and was interviewed before May 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Basics in Java, Microservices & Spring boot

Interview Preparation Tips

Interview preparation tips for other job seekers - Be thorough with your basics on Java 8, Spring boot

I appeared for an interview before Sep 2020.

Round 1 - Face to Face 

(1 Question)

Round duration - 50 minutes
Round difficulty - Easy

This was a Data Structural round.

  • Q1. 

    Distinct Islands Problem Statement

    Given a two-dimensional array/list consisting of integers 0s and 1s, where 1 represents land and 0 represents water, determine the number of distinct islands. A group of...

  • Ans. 

    Count the number of distinct islands in a 2D array of 0s and 1s.

    • Identify islands by performing depth-first search (DFS) on the grid

    • Use a set to store the shape of each island and check for duplicates

    • Consider translations to determine distinct islands

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 50 minutes
Round difficulty - Easy

This was a Data Structural round.

  • Q1. 

    Word Wrap Problem Statement

    You are tasked with arranging 'N' words of varying lengths such that each line contains at most 'M' characters, with each word separated by a space. The challenge is to minimiz...

  • Ans. 

    The goal is to minimize the total cost of arranging 'N' words on each line with a maximum character limit 'M'.

    • Calculate the cost of each line as the cube of extra space characters needed to reach 'M'.

    • Minimize the total cost by arranging words to fit within the character limit on each line.

    • Ensure each word appears fully on one line without breaking across lines.

  • Answered by AI
Round 3 - Face to Face 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

This was a System Design round.

  • Q1. Can you design a system similar to Red Bus that can handle bookings and onboard both vendors and customers to the platform?
  • Ans. 

    Design a system similar to Red Bus for handling bookings and onboarding vendors and customers.

    • Implement a user-friendly interface for customers to search and book tickets

    • Create a vendor portal for vendors to manage their offerings and availability

    • Include payment gateway integration for secure transactions

    • Develop a robust backend system for managing bookings, cancellations, and refunds

    • Utilize a database to store user in

  • Answered by AI
Round 4 - Face to Face 

Round duration - 50 minutes
Round difficulty - Easy

This was a System Design round

Round 5 - Face to Face 

Round duration - 50 minutes
Round difficulty - Easy

This was an HR round.

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Indian Institute of Technology Roorkee. Microsoft interview preparation:Topics to prepare for the interview - Graphs, Dynamic Programming, Arrays, LinkedList, stringsTime required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : Practice as much as you can.
Tip 2 : Prepare for company, not in general.
Tip 3 : Your past work should be objective and your contribution should be very clear

Application resume tips for other job seekers

Tip 1 : Keep only relevant things for the job you are applying.
Tip 2 : Minimal data with measurable contribution and effect.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Referral and was interviewed before Jan 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. About project

Interview Preparation Tips

Interview preparation tips for other job seekers - 1st round Apti +Tech is little easy mostly linux commands
2nd round Interview in Company
Just pray you are not last person to be interviewed from your group(if last you are already rejected)

I applied via Naukri.com and was interviewed before Sep 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Java OOPS, collections, and some basic SQL

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be relaxed and calm. The interview is easy checking your fundamentals.

Interview Questionnaire 

1 Question

  • Q1. Strings, arrays, dp

KPIT Technologies Interview FAQs

How many rounds are there in KPIT Technologies Senior Engineering Lead interview?
KPIT Technologies interview process usually has 3 rounds. The most common rounds in the KPIT Technologies interview process are HR, Resume Shortlist and Technical.
What are the top questions asked in KPIT Technologies Senior Engineering Lead interview?

Some of the top questions asked at the KPIT Technologies Senior Engineering Lead interview -

  1. Multi threading, mu...read more
  2. General C++ questi...read more
  3. General H related questi...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Amdocs Interview Questions
3.7
 • 516 Interviews
Zoho Interview Questions
4.3
 • 512 Interviews
SAP Interview Questions
4.2
 • 283 Interviews
Adobe Interview Questions
3.9
 • 234 Interviews
Salesforce Interview Questions
4.0
 • 228 Interviews
24/7 Customer Interview Questions
3.5
 • 176 Interviews
Dassault Systemes Interview Questions
4.0
 • 162 Interviews
View all

KPIT Technologies Senior Engineering Lead Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

3.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Senior Software Engineer
2.5k salaries
unlock blur

₹6 L/yr - ₹19.5 L/yr

Software Engineer
2.3k salaries
unlock blur

₹3.2 L/yr - ₹11.5 L/yr

Technical Lead
1.9k salaries
unlock blur

₹8.3 L/yr - ₹26 L/yr

Senior Technical Lead
813 salaries
unlock blur

₹10 L/yr - ₹35 L/yr

Software Developer
641 salaries
unlock blur

₹3.9 L/yr - ₹15.6 L/yr

Explore more salaries
Compare KPIT Technologies with

Amdocs

3.7
Compare

Automatic Data Processing (ADP)

4.0
Compare

24/7 Customer

3.5
Compare

Intellect Design Arena

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