AmbitionBox

AmbitionBox

Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
  • Home
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Awards 2024
  • Campus Placements
  • Practice Test
  • Compare Companies
+ Contribute
notification
notification
Login
  • Home
  • Communities
  • Companies
    • Companies

      Discover best places to work

    • Compare Companies

      Compare & find best workplace

    • Add Office Photos

      Bring your workplace to life

    • Add Company Benefits

      Highlight your company's perks

  • Reviews
    • Company reviews

      Read reviews for 6L+ companies

    • Write a review

      Rate your former or current company

  • Salaries
    • Browse salaries

      Discover salaries for 6L+ companies

    • Salary calculator

      Calculate your take home salary

    • Are you paid fairly?

      Check your market value

    • Share your salary

      Help other jobseekers

    • Gratuity calculator

      Check your gratuity amount

    • HRA calculator

      Check how much of your HRA is tax-free

    • Salary hike calculator

      Check your salary hike

  • Interviews
    • Company interviews

      Read interviews for 40K+ companies

    • Share interview questions

      Contribute your interview questions

  • Jobs
  • Awards
    pink star
    VIEW WINNERS
    • ABECA 2025
      VIEW WINNERS

      AmbitionBox Employee Choice Awards - 4th Edition

    • ABECA 2024

      AmbitionBox Employee Choice Awards - 3rd Edition

    • AmbitionBox Best Places to Work 2022

      2nd Edition

    Participate in ABECA 2026 right icon dark
For Employers
Upload Button Icon Add office photos
logo
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
3.3

based on 3k Reviews

Play video Play video Video summary
  • About
  • Reviews
    3k
  • Salaries
    21k
  • Interviews
    304
  • Jobs
    3
  • Benefits
    322
  • Photos
    17

Filter interviews by

KPIT Technologies Interview Questions and Answers

Updated 11 Jun 2025
Popular Designations

188 Interview questions

A Software Developer was asked 1mo ago
Q. What is the difference between Microcontrollers and Microprocessors?
Ans. 

Microcontrollers are integrated systems for specific tasks, while microprocessors are general-purpose computing units.

  • Microcontrollers integrate CPU, memory, and peripherals on a single chip (e.g., Arduino).

  • Microprocessors require external components like RAM and ROM (e.g., Intel Core i7).

  • Microcontrollers are used in embedded systems (e.g., washing machines).

  • Microprocessors are used in computers and laptops (e.g.,...

View all Software Developer interview questions
An Engineer was asked 1mo ago
Q. What are the main features of MATLAB?
Ans. 

MATLAB is a high-level programming language and environment for numerical computation, visualization, and programming.

  • Interactive environment for data analysis and visualization.

  • Extensive built-in functions for mathematical computations, e.g., matrix operations.

  • Toolboxes for specialized applications like signal processing and machine learning.

  • Support for creating user-defined functions and scripts.

  • Integration with...

View all Engineer interview questions
A Software Engineer was asked 1mo ago
Q. What are the four pillars of Object-Oriented Programming (OOP)? Explain each briefly.
Ans. 

The four pillars of OOP are Encapsulation, Abstraction, Inheritance, and Polymorphism, essential for building robust software.

  • Encapsulation: Bundling data and methods that operate on the data within a single unit (class). Example: A class 'Car' with attributes like 'speed' and methods like 'accelerate()'.

  • Abstraction: Hiding complex implementation details and showing only the essential features. Example: A 'Payment...

View all Software Engineer interview questions
An Engineer was asked 1mo ago
Q. What can you tell me about embedded system design?
Ans. 

Embedded system design involves creating specialized computing systems for specific tasks within larger systems.

  • Integration of hardware and software to perform dedicated functions.

  • Examples include microcontrollers in appliances, automotive systems, and medical devices.

  • Focus on constraints like power consumption, size, and real-time performance.

  • Development often involves using languages like C or assembly for low-l...

View all Engineer interview questions

What people are saying about KPIT Technologies

View All
shrutigoyal22
Verified Icon
2w
works at
KPIT Technologies
📢 Looking for New Opportunities | Full Stack Developer
I’m Shruti Agrawal, a Full Stack Developer with 2 years of experience, skilled in Java, Angular, JavaScript, Spring Boot, and more. I’ve worked with CGI Hyderabad and KPIT Pune, contributing to end-to-end development. I'm currently exploring new opportunities and would appreciate any referrals or leads in your network. Primary Skills: Java, Angular, JavaScript, TypeScript, HTML, CSS, Spring Boot
Secondary Skills: SQL, Postgres, MongoDB, GitHub, Docker, Keycloak, Microservices , Maven I’d be happy to connect and share more! 📧 goyalshruti13@gmail.com
Got a question about KPIT Technologies?
Ask anonymously on communities.
An Associate Software Engineer was asked 2mo ago
Q. Given a sorted array of integers, search for a specific target value using the binary search algorithm. Return the index of the target if found, or -1 if not found.
Ans. 

Binary search is an efficient algorithm for finding an item from a sorted list of items.

  • Requires a sorted array to function correctly.

  • Divides the search interval in half with each iteration.

  • Time complexity is O(log n), making it faster than linear search.

  • Example: Searching for '5' in [1, 2, 3, 4, 5, 6] results in index 4.

View all Associate Software Engineer interview questions
An Associate Software Engineer was asked 2mo ago
Q. What is paging in an Operating System?
Ans. 

Paging is a memory management scheme that eliminates the need for contiguous allocation of physical memory.

  • Divides memory into fixed-size blocks called pages.

  • Pages are mapped to physical memory frames, allowing non-contiguous allocation.

  • Improves memory utilization and reduces fragmentation.

  • Example: A process with 4 pages can be loaded into any 4 available frames in memory.

  • Paging allows for virtual memory, enabling...

View all Associate Software Engineer interview questions
An Associate Manager was asked 2mo ago
Q. What is the difference between a risk and an issue?
Ans. 

Risk refers to potential future problems, while an issue is a current problem that needs resolution.

  • Risk is a possibility of an event occurring that may impact objectives, e.g., a project delay due to resource unavailability.

  • An issue is a current problem that has already occurred, e.g., a team member leaving the project unexpectedly.

  • Risks can be identified and mitigated before they happen, while issues require imm...

View all Associate Manager interview questions
Are these interview questions helpful?
An Associate Manager was asked 2mo ago
Q. How do you handle conflicts?
Ans. 

Effective conflict resolution involves active listening, empathy, and collaborative problem-solving to achieve a positive outcome.

  • Listen actively to all parties involved to understand their perspectives.

  • Use 'I' statements to express your feelings without blaming others, e.g., 'I feel concerned when deadlines are missed.'

  • Encourage open communication to foster a safe environment for discussion.

  • Seek common ground by ...

View all Associate Manager interview questions
A Technical Lead was asked 3mo ago
Q. Explain the Observer design pattern and provide sample code.
Ans. 

The Observer pattern allows objects to subscribe and receive updates from a subject when its state changes.

  • Decouples the subject from its observers, promoting loose coupling.

  • Useful in event handling systems, like GUI frameworks.

  • Example: A weather station (subject) notifies multiple display devices (observers) when the weather changes.

  • Supports dynamic subscription and unsubscription of observers.

View all Technical Lead interview questions
A Senior Test Engineer was asked 3mo ago
Q. Describe your technical skills and quality assurance experience.
Ans. 

I possess strong technical skills in testing methodologies and a commitment to quality assurance in software development.

  • Proficient in automated testing tools like Selenium and JUnit, enhancing testing efficiency.

  • Experience in creating comprehensive test plans and cases, ensuring thorough coverage of requirements.

  • Strong understanding of Agile methodologies, facilitating collaboration with development teams.

  • Impleme...

View all Senior Test Engineer interview questions
1 2 3 4 5 6 7

KPIT Technologies Interview Experiences

304 interviews found

Trainee Quality Engineer Interview Questions & Answers

user image Anonymous

posted on 28 Feb 2025

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected
Round 1 - Aptitude Test 

I went through the college placement process. The first round consisted of a combination of coding and aptitude tests.

Round 2 - Technical 

(3 Questions)

  • Q1. What is the difference between a microcontroller and a microprocessor
  • Ans. 

    Microcontrollers are integrated circuits designed for specific tasks with built-in memory and peripherals, while microprocessors are general-purpose CPUs without built-in memory or peripherals.

    • Microcontrollers are typically used in embedded systems for specific tasks, such as controlling a microwave oven or a washing machine.

    • Microprocessors are used in general-purpose computing devices like laptops and smartphones.

    • Micr...

  • Answered by AI
    Add your answer
  • Q2. What is pwm
  • Ans. 

    PWM stands for Pulse Width Modulation, a technique used to encode information in the form of a varying signal pulse width.

    • PWM is commonly used in controlling the speed of motors by varying the duty cycle of the signal.

    • It is also used in LED dimming to control the brightness of the LED.

    • PWM signals have a fixed frequency but varying duty cycle.

    • The duty cycle represents the percentage of time the signal is high compared t...

  • Answered by AI
    Add your answer
  • Q3. Explain about your project
  • Add your answer
Anonymous

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 15 Jan 2025

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

(2 Questions)

  • Q1. What is difference between rank and dense rank?
  • Ans. 

    Rank assigns unique ranks to each distinct value, while dense rank does not leave gaps between ranks.

    • Rank assigns consecutive integers to each distinct value based on their order.

    • Dense rank also assigns consecutive integers, but does not leave gaps between ranks.

    • For example, if we have values 10, 20, 20, 30, then rank would be 1, 2, 2, 4 and dense rank would be 1, 2, 2, 3.

  • Answered by AI
    Add your answer
  • Q2. What is RLS in Power Bi?
  • Add your answer
Round 2 - Behavioral 

(1 Question)

  • Q1. How would you identify time for any project?
  • Ans. 

    Identifying time for a project involves creating a timeline, setting deadlines, and monitoring progress.

    • Create a project timeline outlining key milestones and tasks

    • Set deadlines for each task to ensure timely completion

    • Monitor progress regularly to identify any delays and adjust timelines accordingly

  • Answered by AI
    Add your answer
Anonymous

Engineer Trainee Interview Questions & Answers

user image Anonymous

posted on 12 Jan 2025

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

I applied via Job Portal and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Thirty-nine questions, including two coding challenges and three to four sets of games.

Round 2 - Technical 

(4 Questions)

  • Q1. What is dynamic dispatch?
  • Ans. 

    Dynamic dispatch is a mechanism where the method to be executed is determined at runtime based on the actual type of the object.

    • In dynamic dispatch, the method call is resolved at runtime rather than compile time.

    • It allows for polymorphism, where a subclass can override a method from its superclass.

    • Examples include method overriding in object-oriented programming languages like Java and C++.

  • Answered by AI
    Add your answer
  • Q2. How do u manage stress?
  • Ans. 

    I manage stress by practicing mindfulness, exercising regularly, and prioritizing tasks effectively.

    • Practicing mindfulness through meditation and deep breathing exercises

    • Exercising regularly to release endorphins and reduce stress levels

    • Prioritizing tasks effectively to avoid feeling overwhelmed

    • Taking breaks when needed to recharge and relax

    • Seeking support from friends, family, or a therapist when necessary

  • Answered by AI
    Add your answer
  • Q3. What are environment variables in linux?
  • Ans. 

    Environment variables in Linux are dynamic values that affect the processes running on the system.

    • Environment variables are key-value pairs that are used by the system and applications to determine behavior.

    • They can be set, modified, or unset using commands like 'export', 'set', and 'unset'.

    • Common environment variables include PATH (for executable locations), HOME (for user's home directory), and LANG (for language set...

  • Answered by AI
    Add your answer
  • Q4. Explian merge sort.
  • Ans. 

    Merge sort is a divide and conquer algorithm that divides the input array into two halves, sorts them separately, and then merges them back together in sorted order.

    • Divide the array into two halves

    • Recursively sort each half

    • Merge the sorted halves back together

  • Answered by AI
    Add your answer
Anonymous

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
  • Add your answer
  • Q2. Explain about final year project
  • Add your answer
  • Q3. Github link for project
  • Add your answer
  • Q4. What is oops in java
  • Add your answer
  • Q5. What is polymorphism explain with examples
  • Ans. 

    Polymorphism allows methods to do different things based on the object it is acting upon, enhancing flexibility in programming.

    • Polymorphism is a core concept in Object-Oriented Programming (OOP).

    • It allows methods to be defined in multiple forms.

    • Example: A function 'draw()' can be used for different shapes like Circle and Square.

    • In Python, method overriding allows a subclass to provide a specific implementation of a met...

  • Answered by AI
    Add your answer

Skills evaluated in this interview

Anonymous

Senior Software Engineer Interview Questions & Answers

user image Anonymous

posted on 15 Jan 2025

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

(1 Question)

  • Q1. How does the CAN TP (Controller Area Network Transport Protocol) work?
  • Ans. 

    CAN TP is a protocol used for transferring large data packets over Controller Area Network.

    • CAN TP breaks large data packets into smaller segments for transmission

    • It uses flow control mechanisms to ensure all segments are received and retransmits if necessary

    • CAN TP is commonly used in automotive and industrial applications

  • Answered by AI
    Add your answer
Round 2 - Technical 

(1 Question)

  • Q1. Explain autosar layer
  • Ans. 

    AUTOSAR (Automotive Open System Architecture) is a standardized software architecture for automotive systems.

    • AUTOSAR is a layered architecture consisting of four layers: Application Layer, Runtime Environment (RTE) Layer, Basic Software Layer, and Microcontroller Abstraction Layer (MCAL).

    • Each layer in AUTOSAR has specific responsibilities and interfaces with other layers to ensure modularity and reusability of software...

  • Answered by AI
    Add your answer
Round 3 - HR 

(1 Question)

  • Q1. Are you prepared to work from home?
  • Ans. 

    Yes, I am fully prepared and equipped to work from home.

    • I have a dedicated home office space with all necessary equipment and tools.

    • I have experience working remotely and am comfortable with virtual communication tools.

    • I am self-motivated and able to manage my time effectively without direct supervision.

  • Answered by AI
    Add your answer
Anonymous

Embedded Engineer Interview Questions & Answers

user image Anonymous

posted on 13 Jan 2025

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Dec 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. What is yocto? Why it is used and the features
  • Ans. 

    Yocto is a Linux distribution builder tool that helps in creating custom embedded Linux systems.

    • Yocto is used to streamline the process of building custom Linux distributions for embedded systems.

    • It provides tools and templates to create custom configurations, packages, and images.

    • Yocto allows for easy customization and optimization of the Linux system for specific hardware requirements.

    • It supports cross-compilation, p...

  • Answered by AI
    Add your answer
  • Q2. How to write a device driver
  • Ans. 

    Writing a device driver involves understanding the hardware, implementing communication protocols, and handling interrupts.

    • Understand the hardware specifications and communication protocols of the device

    • Implement the necessary functions to communicate with the device

    • Handle interrupts and errors gracefully

    • Test the driver thoroughly to ensure compatibility and stability

  • Answered by AI
    Add your answer
Anonymous

Associate Software Engineering Intern Interview Questions & Answers

user image Anonymous

posted on 20 Dec 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Technical 

(2 Questions)

  • Q1. Could you explain the projects you have worked on and your contributions to them?
  • Ans. 

    I have worked on projects involving web development, mobile app development, and data analysis.

    • Developed a web application using React.js and Node.js for real-time data visualization.

    • Contributed to the development of a mobile app using Flutter for both iOS and Android platforms.

    • Performed data analysis using Python and SQL to extract insights from large datasets.

    • Collaborated with team members to implement new features a...

  • Answered by AI
    Add your answer
  • Q2. Can you provide code examples that demonstrate abstraction and polymorphism in programming?
  • Ans. 

    Abstraction and polymorphism are key concepts in object-oriented programming.

    • Abstraction involves hiding the implementation details and showing only the necessary features of an object.

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

    • Example of abstraction: defining a Shape class with methods like calculateArea() without specifying how each shape calculates its area.

    • Examp...

  • Answered by AI
    Add your answer
Anonymous

Interview Questions & Answers

user image Anonymous

posted on 2 Sep 2024

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

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

Round 1 - HR 

(2 Questions)

  • Q1. Basic questions
  • Add your answer
  • Q2. Skill set as per job requirements
  • Add your answer
Round 2 - Technical 

(2 Questions)

  • Q1. Project and Program Management skills
  • Add your answer
  • Q2. Automotive domain
  • Add your answer
Round 3 - One-on-one 

(2 Questions)

  • Q1. Project and Program Management skills
  • Add your answer
  • Q2. Leadership skills and automotive domain related questions
  • Add your answer
Round 4 - HR 

(2 Questions)

  • Q1. Salary expectations
  • Add your answer
  • Q2. Salary negotiation and other benefits
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn about automotive domain and prepare yourself related to project and Program Management skills.
Anonymous

Project Manager Interview Questions & Answers

user image Anonymous

posted on 11 Jan 2025

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

(2 Questions)

  • Q1. Risk management and mitigation
  • Add your answer
  • Q2. What are the key elements involved in project planning?
  • Ans. 

    Key elements in project planning include defining project scope, creating a timeline, setting goals, allocating resources, and identifying risks.

    • Defining project scope to clearly outline the objectives and deliverables

    • Creating a timeline with milestones and deadlines to track progress

    • Setting specific, measurable, achievable, relevant, and time-bound (SMART) goals

    • Allocating resources such as budget, team members, and ma...

  • Answered by AI
    Add your answer
Anonymous

Associate Software Engineer Interview Questions & Answers

user image Anonymous

posted on 14 Dec 2024

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

I appeared for an interview in Nov 2024.

Round 1 - Technical 

(1 Question)

  • Q1. Questions based on selected track.
  • Add your answer
Round 2 - Coding Test 

The programming languages available for coding were determined by the chosen track (AI-ML in my case), which included Python and Java. Two coding challenges centered on array and string manipulation, with difficulty levels categorized as easy and medium.

Round 3 - AI Proctored Interview 

(1 Question)

  • Q1. Total of 13 questions. No interviewer. AI based Interview. Questions included Technical questions , a coding question and HR questions as well.
  • Add your answer
Anonymous
More about working at KPIT Technologies
  • HQ - Pune, Maharashtra, India
  • Software Product
  • 5k-10k Employees (India)
  • Public
  • Analytics & KPO
  • IT Services & Consulting

KPIT Technologies Interview FAQs

How many rounds are there in KPIT Technologies interview?
KPIT Technologies interview process usually has 2-3 rounds. The most common rounds in the KPIT Technologies interview process are Technical, HR and Resume Shortlist.
How to prepare for KPIT Technologies 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, Embedded C, C++, Python and Debugging.
What are the top questions asked in KPIT Technologies interview?

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

  1. 1->like what is the process behind storing variables in memory? 2-> What is the...read more
  2. How to write the test cases. Any fails in coming testing stage how to resolove...read more
  3. If i delete an instance on the console and then i deploy the same instance terr...read more
What are the most common questions asked in KPIT Technologies HR round?

The most common HR questions asked in KPIT Technologies interview are -

  1. Where do you see yourself in 5 yea...read more
  2. Tell me about yourse...read more
  3. Why are you looking for a chan...read more
How long is the KPIT Technologies interview process?

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

Tell us how to improve this page.

KPIT Technologies Interviews By Designations

  • KPIT Technologies Software Engineer Interview Questions
  • KPIT Technologies Senior Software Engineer Interview Questions
  • KPIT Technologies Software Developer Interview Questions
  • KPIT Technologies Technical Lead Interview Questions
  • KPIT Technologies Associate Software Engineer Interview Questions
  • KPIT Technologies Trainee Interview Questions
  • KPIT Technologies Senior Technical Lead Interview Questions
  • KPIT Technologies Associate Engineer Interview Questions
  • Show more
  • KPIT Technologies Project Manager Interview Questions
  • KPIT Technologies Test Engineer Interview Questions

Interview Questions for Popular Designations

  • Software Engineer Interview Questions
  • Senior Software Engineer Interview Questions
  • Software Developer Interview Questions
  • Technical Lead Interview Questions
  • Associate Software Engineer Interview Questions
  • Trainee Interview Questions
  • Associate Engineer Interview Questions
  • Senior Technical Lead Interview Questions
  • Show more
  • Project Manager Interview Questions
  • Test Engineer Interview Questions

Overall Interview Experience Rating

3.9/5

based on 321 interview experiences

Difficulty level

Easy 16%
Moderate 79%
Hard 5%

Duration

Less than 2 weeks 57%
2-4 weeks 30%
4-6 weeks 6%
6-8 weeks 4%
More than 8 weeks 2%
View more

Interview Questions from Similar Companies

Microsoft Corporation
Microsoft Corporation Interview Questions
3.9
 • 572 Interviews
Zoho
Zoho Interview Questions
4.3
 • 531 Interviews
Amdocs
Amdocs Interview Questions
3.7
 • 528 Interviews
SAP
SAP Interview Questions
4.2
 • 291 Interviews
Automatic Data Processing (ADP)
Automatic Data Processing (ADP) Interview Questions
4.0
 • 253 Interviews
Adobe
Adobe Interview Questions
3.9
 • 247 Interviews
Salesforce
Salesforce Interview Questions
4.0
 • 233 Interviews
Oracle Financial Services Software
Oracle Financial Services Software Interview Questions
3.5
 • 180 Interviews
24/7 Customer
24/7 Customer Interview Questions
3.5
 • 179 Interviews
Dassault Systemes
Dassault Systemes Interview Questions
3.9
 • 175 Interviews
View all

KPIT Technologies Reviews and Ratings

based on 3k reviews

3.3/5

Rating in categories

3.4

Skill development

3.1

Work-life balance

3.1

Salary

3.0

Job security

3.1

Company culture

2.8

Promotions

3.1

Work satisfaction

Explore 3k Reviews and Ratings
Jobs at KPIT Technologies
KPIT Technologies
Sr. Technical Leader

Bangalore / Bengaluru

7-12 Yrs

Not Disclosed

KPIT Technologies
Technical Leader

Bangalore / Bengaluru

5-10 Yrs

₹ 9-27 LPA

KPIT Technologies
Associate Technical Architect

Bangalore / Bengaluru

5-10 Yrs

Not Disclosed

Explore more jobs
KPIT Technologies Salaries in India
Senior Software Engineer
2.7k salaries
unlock blur

₹6 L/yr - ₹20.2 L/yr

Software Engineer
2.3k salaries
unlock blur

₹3.2 L/yr - ₹11.5 L/yr

Technical Lead
2k salaries
unlock blur

₹8.2 L/yr - ₹26.2 L/yr

Senior Technical Lead
852 salaries
unlock blur

₹10 L/yr - ₹34 L/yr

Software Developer
652 salaries
unlock blur

₹4 L/yr - ₹14.4 L/yr

Explore more salaries
Compare KPIT Technologies with
Amdocs

Amdocs

3.7
Compare
Automatic Data Processing (ADP)

Automatic Data Processing (ADP)

4.0
Compare
24/7 Customer

24/7 Customer

3.5
Compare
Intellect Design Arena

Intellect Design Arena

3.9
Compare
Popular Calculators
Are you paid fairly?
Monthly In-hand Salary Calculator
Gratuity Calculator
HRA Calculator
Salary Hike Calculator
  • Home >
  • Interviews >
  • KPIT Technologies Interview Questions
write
Share an Interview
Stay ahead in your career. Get AmbitionBox app
Awards Banner

Trusted by over 1.5 Crore job seekers to find their right fit company

80 Lakh+

Reviews

4 Crore+

Salaries

10 Lakh+

Interviews

1.5 Crore+

Users

Contribute
Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
Users/Jobseekers
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Practice Test
  • Compare Companies
Employers
  • Create a new company
  • Update company information
  • Respond to reviews
  • Invite employees to review
  • AmbitionBox Offering for Employers
  • AmbitionBox Employers Brochure
AmbitionBox Awards
  • ABECA 2025 winners awaited tag
  • Participate in ABECA 2026
  • Invite employees to rate
AmbitionBox
  • About Us
  • Our Team
  • Email Us
  • Blog
  • FAQ
  • Credits
  • Give Feedback
Terms & Policies
  • Privacy
  • Grievances
  • Terms of Use
  • Summons/Notices
  • Community Guidelines
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2025 Info Edge (India) Ltd.

Follow Us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter