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 Software Developer Interview Questions, Process, and Tips

Updated 19 Dec 2024

Top KPIT Technologies Software Developer Interview Questions and Answers

  • Q1. 1->like what is the process behind storing variables in memory? 2-> What is the need for oops? 3-> what is compile time polymorphism and how is it different from ...read more
  • Q2. What is ECU and MCU Configuration
  • Q3. Primary vs foreign vs unique key
View all 8 questions

KPIT Technologies Software Developer Interview Experiences

20 interviews found

Software Developer Interview Questions & Answers

user image Somashanker gudapati

posted on 3 Dec 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Aptitude Test 

30min duration simple questions

Round 2 - Coding Test 

Basic array 2 coding questions

Round 3 - Technical 

(5 Questions)

  • Q1. Introduce yorself
  • Q2. Explain about final year project
  • Q3. Github link for project
  • Q4. What is oops in java
  • Q5. What is polymorphism explain with examples
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

The first round was aptitude test that included 2 coding questions as well one easy and one moderate it was of 2 hours in total.

Round 2 - One-on-one 

(4 Questions)

  • Q1. How would you ensure that the quality of your work does not get compromised in tight scenarios
  • Q2. What do you plan to do in future
  • Q3. A coding question was given which was easy and was asked explanation on it
  • Q4. Questions based on OOPs

Interview Preparation Tips

Topics to prepare for KPIT Technologies Software Developer interview:
  • C++
  • English
  • C
Interview preparation tips for other job seekers - I was excited for KPIT but during the pre placement talks I found their representatives to be extremely rude and unprofessional which made me question If I should even give the test because if this is how they behave during pre placement talks I can't even imagine how would they treat their employees. I and many of my peers decided to just give the test for experience to find out I got shortlisted later on the interview was "AI Based" which basically meant we needed to record our answers which were displayed. I might have given some of the answers incorrect intentionally to not get selected.If anyone is planning to join then please solve at least one coding question.

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
Q5. Find Duplicate in Array Problem Statement You are provided with a ... read more
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at National Institute of Technology (NIT), Rourkela and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Coding Test 

There will be two coding questions focused on Data Structures and Algorithms, along with one question assessing English paraphrasing and cognitive analytical skills.

Software Developer Interview Questions & Answers

user image 20B01A1297 IT

posted on 28 May 2024

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

It consists of MCQs which are easy to medium

Round 2 - Coding Test 

2 codes-easy level, hidden test cases will be there you can practice in CodeChef easy to medium level to crack the exam

Round 3 - Technical 

(1 Question)

  • Q1. Related to technical questions and projects

KPIT Technologies interview questions for designations

 Associate Software Developer

 (2)

 Senior Software Developer

 (1)

 Senior Embedded Software Developer

 (1)

 Python Software Developer

 (1)

 Developer

 (1)

 Software Engineer

 (30)

 Software Trainee

 (2)

 Software Tester

 (1)

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Simple technical questions related to coding. And electronics.

Get interview-ready with Top KPIT Technologies Interview Questions

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

Do Arrrays String Questions Well And Solve All The Test Cases

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't Worry Keep Pushing Your Limits You Will Get A Good Job

Software Developer Interview Questions & Answers

user image Suhas Sanjay Bachhav

posted on 9 Jun 2023

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in May 2023. 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 - Coding Test 

Find out a string is palindrome or not

Round 3 - One-on-one 

(8 Questions)

  • Q1. ACID properties
  • Ans. 

    ACID properties are a set of properties that guarantee database transactions are processed reliably.

    • ACID stands for Atomicity, Consistency, Isolation, Durability

    • Atomicity ensures that all operations in a transaction are completed successfully or none at all

    • Consistency ensures that the database remains in a consistent state before and after the transaction

    • Isolation ensures that transactions are executed independently of...

  • Answered by AI
  • Q2. Event loop in node js
  • Ans. 

    Event loop in Node.js manages asynchronous operations by executing callback functions when certain events occur.

    • Event loop is responsible for handling I/O operations, timers, and callbacks in Node.js

    • It allows Node.js to perform non-blocking operations efficiently

    • Event loop continuously checks the event queue and executes callback functions when events are triggered

  • Answered by AI
  • Q3. Trigger and cursor
  • Q4. Primary vs foreign vs unique key
  • Ans. 

    Primary key uniquely identifies a record, foreign key links to a primary key in another table, unique key ensures uniqueness of a column or set of columns.

    • Primary key: uniquely identifies each record in a table (e.g. employee_id in an employees table)

    • Foreign key: links to a primary key in another table to establish a relationship (e.g. department_id in an employees table linking to department_id in a departments table)

    • ...

  • Answered by AI
  • Q5. Project related Questions and whats your job role in that project
  • Q6. Variable hoisting in js
  • Ans. 

    Variable hoisting is a behavior in JavaScript where variable declarations are moved to the top of their scope during compilation.

    • Variable declarations are hoisted to the top of their function or global scope.

    • Only the declarations are hoisted, not the initializations.

    • Hoisting allows you to use a variable before it is declared, but it is best practice to declare variables at the top of the scope.

    • Example: console.log(myV

  • Answered by AI
  • Q7. Function closure in js
  • Ans. 

    Function closure in JavaScript allows a function to access variables from its outer scope even after the outer function has finished executing.

    • Function closures occur when a function is defined within another function and the inner function has access to the outer function's variables.

    • Closures are commonly used to create private variables and functions in JavaScript.

    • Example: function outerFunction() { let outerVar = 'I...

  • Answered by AI
  • Q8. Shallow vs deep copy in js
  • Ans. 

    Shallow copy creates a new object but references the same nested objects, while deep copy creates a new object with copies of all nested objects.

    • Shallow copy only copies the top-level object, not the nested objects.

    • Deep copy creates new copies of all nested objects, ensuring they are independent.

    • In JavaScript, shallow copy can be achieved using Object.assign or spread operator, while deep copy can be achieved using JSO

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare more on database levels.
They are using some what old technologies so prepare like that way

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. All Questions are based on C Language
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Deep copy and shallow copy and oops Concepts.
Round 2 - HR 

(1 Question)

  • Q1. Salary negotiation, Joining date discussion, location discussion.
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. I said i know java but still interviewer ask all the questions in c .

KPIT Technologies Interview FAQs

How many rounds are there in KPIT Technologies Software Developer interview?
KPIT Technologies interview process usually has 1-2 rounds. The most common rounds in the KPIT Technologies interview process are Technical, Coding Test and Aptitude Test.
How to prepare for KPIT Technologies 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 KPIT Technologies. The most common topics and skills that interviewers at KPIT Technologies expect are AUTOSAR, QNX, Software Development, Embedded Systems and Microcontroller.
What are the top questions asked in KPIT Technologies Software Developer interview?

Some of the top questions asked at the KPIT Technologies Software Developer interview -

  1. 1->like what is the process behind storing variables in memory? 2-> What is the...read more
  2. What is ECU and MCU Configurat...read more
  3. Primary vs foreign vs unique ...read more
How long is the KPIT Technologies Software Developer interview process?

The duration of KPIT Technologies Software Developer interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

KPIT Technologies Software Developer Interview Process

based on 20 interviews

2 Interview rounds

  • Technical Round
  • HR Round
View more
KPIT Technologies Software Developer Salary
based on 615 salaries
₹2.9 L/yr - ₹11.7 L/yr
11% less than the average Software Developer Salary in India
View more details

KPIT Technologies Software Developer Reviews and Ratings

based on 115 reviews

3.2/5

Rating in categories

3.3

Skill development

3.2

Work-life balance

2.8

Salary

2.9

Job security

3.1

Company culture

2.5

Promotions

2.9

Work satisfaction

Explore 115 Reviews and Ratings
Senior Software Engineer
2.5k salaries
unlock blur

₹6 L/yr - ₹17.6 L/yr

Software Engineer
2.3k salaries
unlock blur

₹2 L/yr - ₹11.5 L/yr

Technical Lead
1.9k salaries
unlock blur

₹8.3 L/yr - ₹32 L/yr

Senior Technical Lead
799 salaries
unlock blur

₹10 L/yr - ₹40.2 L/yr

Software Developer
615 salaries
unlock blur

₹2.9 L/yr - ₹11.7 L/yr

Explore more salaries
Compare KPIT Technologies 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