At KPMG India, a Software Engineer plays a pivotal role in driving digital transformation, both for the firm’s internal capabilities and for its vast portfolio of global enterprise clients. Unlike traditional tech companies, engineering at KPMG India sits at the intersection of cutting-edge software development and strategic business consulting. As a Software Engineer, you will not just write code; you will design, build, and deploy robust, secure, and scalable enterprise-grade applications that solve complex business challenges. The impact of this role is substantial. The systems you build will handle massive datasets, automate critical financial and operational workflows, and utilize modern cloud architectures to deliver high-performance solutions. Whether you are working on modernizing legacy platforms, implementing cloud-native architectures on Azure, or integrating AI and machine learning capabilities into client workflows, your contributions directly influence the speed, security, and success of global business operations. This role offers a unique and intellectually stimulating environment. You will collaborate with cross-functional teams of consultants, data scientists, and business analysts to turn complex requirements into clean, maintainable code. KPMG India provides an environment where technical expertise is highly valued, and engineers are encouraged to take ownership of end-to-end delivery, from initial system design to final cloud deployment.
Online Application
reportedSubmit your application online for the Software Engineer position.
What to demonstrate
- Submit your application online for the Software Engineer position
- Depth in Python
How to prepare
- Answer aloud and timed: Write a function to perform complex string manipulation, such as reversing words in a sentence while preserving whitespace and identifying duplicate substrings.
- Answer aloud and timed: Solve a dynamic programming problem, such as finding the minimum number of coins needed to make a target change amount, and explain its time and space complexity.
Preliminary Assessment
reportedComplete psychometric testing, reliability evaluations, and a coding assessment.
What to demonstrate
- Complete psychometric testing, reliability evaluations, and a coding assessment
- Depth in Python
How to prepare
- Answer aloud and timed: Given an array of integers, find the contiguous subarray that has the largest product and return the product.
- Answer aloud and timed: Implement a basic search algorithm on a custom data structure and discuss how you would optimize it for memory efficiency.
Technical Interviews
reportedParticipate in virtual technical and competency interviews focusing on coding and project management.
What to demonstrate
- Participate in virtual technical and competency interviews focusing on coding and project management
- Depth in Python
How to prepare
- Answer aloud and timed: Explain the core differences between value types and reference types in.NET, and how memory management differs for both.
- Answer aloud and timed: What are the fundamental principles of Object-Oriented Programming (OOP), and how do you apply them to write reusable, maintainable code?
Partner Interview
reportedEngage in a comprehensive interview with a Partner focusing on behavioral alignment and strategic fit.
What to demonstrate
- Engage in a comprehensive interview with a Partner focusing on behavioral alignment and strategic fit
- Depth in Python
How to prepare
- Answer aloud and timed: Explain the lifecycle of a React component and how you manage state globally in a large-scale frontend application.
- Answer aloud and timed: Describe what happens behind the scenes from the moment a user types a URL into a web browser to when the page is fully rendered.
1 candidate reports. Individual accounts describe a particular role and hiring cycle.
Kpmg India Consultant interview: business scenarios and fit
The recruiter scheduled the HR step through Zoom or email and kept the conversation relaxed, focusing on my background and fit. I then had behavioral and scenario conversations, including business situations around integration, separation, and M&A. Interviewers followed up on my answers and asked me to explain my reasoning rather than stay broad. The next phase was an assessment followed by an in…
Read full experiencePracHub editorial advice for the preparation topics above.
Going into the loop without having done this.
Prepare for Psychometric and Reliability Tests: KPMG India utilizes long psychometric and reliability assessments early in the hiring process. Approach these tests with honesty, consistency, and a focus on professional integrity.
Going into the loop without having done this.
When taking the online psychometric assessments, ensure you are in a quiet environment and read each situational scenario carefully. Consistency in your answers is highly valued.
Going into the loop without having done this.
Master the STAR Method: When answering behavioral questions, structure your responses using the Situation, Task, Action, and Result (STAR) framework. Always emphasize the positive business impact of your technical actions.
Going into the loop without having done this.
Be Ready for Tech-Stack Trivia: Do not neglect the basics. Brush up on core OOP concepts, memory management, garbage collection, and basic web protocols, as interviewers frequently ask direct trivia questions on these topics.
Choose a category, try a prompt, then open its approach, worked solution or follow-up when you need it.
Write a function to perform complex string manipulation, such as reversing words in a sentence while preservin
Write a function to perform complex string manipulation, such as reversing words in a sentence while preserving whitespace and identifying duplicate substrings.
Approach
- Restate the input: its shape, its size, and what is guaranteed about it.
- Name the brute-force solution and its complexity before improving on it.
- Choose the data structure from the access pattern, not from familiarity.
- State the target complexity and say which constraint rules the naive version out.
Follow-up
- How does this change if the input no longer fits in memory?
- What is the worst case, and how likely is it on real data?
Solve a dynamic programming problem, such as finding the minimum number of coins needed to make a target chang
Solve a dynamic programming problem, such as finding the minimum number of coins needed to make a target change amount, and explain its time and space complexity.
Approach
- Restate the input: its shape, its size, and what is guaranteed about it.
- Name the brute-force solution and its complexity before improving on it.
- Choose the data structure from the access pattern, not from familiarity.
- State the target complexity and say which constraint rules the naive version out.
Follow-up
- How does this change if the input no longer fits in memory?
- What is the worst case, and how likely is it on real data?
Given an array of integers, find the contiguous subarray that has the largest product and return the product.
Given an array of integers, find the contiguous subarray that has the largest product and return the product.
Approach
- Restate the input: its shape, its size, and what is guaranteed about it.
- Name the brute-force solution and its complexity before improving on it.
- Choose the data structure from the access pattern, not from familiarity.
- State the target complexity and say which constraint rules the naive version out.
Follow-up
- How does this change if the input no longer fits in memory?
- What is the worst case, and how likely is it on real data?
Implement a basic search algorithm on a custom data structure and discuss how you would optimize it for memory
Implement a basic search algorithm on a custom data structure and discuss how you would optimize it for memory efficiency.
Approach
- Say what the runtime actually does before reasoning about the code.
- Name what is shared across threads and what owns each piece of state.
- Identify the window where an invariant is briefly untrue.
- Distinguish a value from a reference to it, and say which one you handed out.
Follow-up
- What happens if two callers reach this at the same time?
- Where could this allocate more than you expect?
Explain the core differences between value types and reference types in.NET, and how memory management differs
Explain the core differences between value types and reference types in.NET, and how memory management differs for both.
Approach
- Say what the runtime actually does before reasoning about the code.
- Name what is shared across threads and what owns each piece of state.
- Identify the window where an invariant is briefly untrue.
- Distinguish a value from a reference to it, and say which one you handed out.
Follow-up
- What happens if two callers reach this at the same time?
- Where could this allocate more than you expect?
How does garbage collection work in Python, and how can you prevent memory leaks in long-running processes?
How does garbage collection work in Python, and how can you prevent memory leaks in long-running processes?
Approach
- Say what the runtime actually does before reasoning about the code.
- Name what is shared across threads and what owns each piece of state.
- Identify the window where an invariant is briefly untrue.
- Distinguish a value from a reference to it, and say which one you handed out.
Follow-up
- What happens if two callers reach this at the same time?
- Where could this allocate more than you expect?
Write the update path that detects a concurrent edit
resource carries version INT NOT NULL DEFAULT 1. resource_revision holds revision_id, resource_id, version, actor_user_id, change_kind, patch JSONB, request_id, created_at with UNIQUE (resource_id, version). outbox_event holds aggregate_type, aggregate_id, aggregate_version, event_type, payload, status. A PUT carries the version the client read. Write the exact statements for the single transaction that applies the edit, records the revision and enqueues 'resource.updated', and give the handler's branch on zero affected rows. Then say what PostgreSQL 16 does under READ COMMITTED when two of these updates hit one row at once.
Approach
- One transaction, three writes, no network call inside it: UPDATE resource SET title = $3, version = version + 1, updated_at = now() WHERE resource_id = $1 AND tenant_id = $4 AND version = $2; then INSERT the resource_revision row at version $2 + 1; then INSERT the outbox_event row at the same aggregate_version. The event goes to a table rather than a broker because no transaction spans both.
- Branch on the affected-row count before doing anything else. Zero has three causes — stale version, wrong tenant, row gone — so re-read once and map to 409 carrying the current version, or 404 for an id outside the caller's tenant, which also stops the endpoint confirming that another tenant's id exists.
- State the engine behaviour instead of assuming it. Under READ COMMITTED the second UPDATE blocks on the row lock, and when the first commits PostgreSQL re-evaluates the WHERE clause against the newly committed row, so the version predicate now fails and the statement reports zero rows. Under REPEATABLE READ the identical collision raises SQLSTATE 40001 instead, so the handler must fold both shapes into one conflict response.
- Keep UNIQUE (resource_id, version) even though the predicate already serialises writers. It is what makes a lost update unwritable if any other path ever reaches the revision table, and it converts a logic bug into 23505 rather than into a silently missing history row.
Follow-up
- A client sends the version it read ten minutes ago and the resource has moved three versions. What is in your 409 so it can resolve the conflict without a full re-fetch?
- Two editors, two disjoint fields, no overlap. Does your answer still refuse the second write, and should it?
Denormalise tenant onto revisions and backfill it live
resource_revision (revision_id, resource_id, version, actor_user_id, change_kind, patch, request_id, created_at) has 400M rows and no tenant column; tenant_id lives only on resource. Two reads need it: a tenant-scoped audit feed ordered by created_at DESC, and an offboarding purge. Both join back to resource today. Justify adding tenant_id to resource_revision against those two reads, name the anomaly the copy introduces and the constraint that prevents it, then give the ordered migration for a live table taking 1.2k writes/second — the lock each step takes, how the backfill is batched, and where each step stops being reversible. PostgreSQL 16.
Approach
- Justify from the access path rather than from taste. Without the column, the audit feed either scans resource_revision by created_at and discards other tenants' rows, or resolves the tenant's resource_ids first and probes with them — both proportional to the tenant's whole history rather than to one page. With (tenant_id, created_at DESC, revision_id DESC) it is a seek that stops at 50 rows, and the purge becomes a ranged delete instead of a join.
- Name the cost exactly: a second copy of a fact can disagree with the first. Make the disagreement unwritable rather than documented — add UNIQUE (resource_id, tenant_id) on resource so it can serve as a foreign-key target, then FOREIGN KEY (resource_id, tenant_id) REFERENCES resource (resource_id, tenant_id) on the revision table. A revision can then only ever carry its parent's tenant.
- Step one, expand: ALTER TABLE resource_revision ADD COLUMN tenant_id BIGINT NULL, with no default, so it is a catalogue change and no rewrite. It still needs ACCESS EXCLUSIVE for an instant, and that instant queues behind the longest open transaction on the table while every later query queues behind it — set lock_timeout to 2s and retry rather than wait.
- Step two, dual-write: deploy the writer that populates tenant_id on every new revision while reads still use the join. Reversible by redeploying the previous build, because nothing reads the column yet.
Follow-up
- The backfill is half finished and a rollback is required. What state is the table in, and what does the previous build do with a half-populated column?
- How do you verify the backfill actually finished, given rows are still being inserted while it runs?
What are the fundamental principles of Object-Oriented Programming (OOP), and how do you apply them to write r
What are the fundamental principles of Object-Oriented Programming (OOP), and how do you apply them to write reusable, maintainable code?
Approach
- Clarify what is being asked and what a complete answer contains.
- State your assumptions explicitly before working the problem.
- Say what you would check first and why it is the highest-information step.
- Work from the requirement backwards to the design.
Follow-up
- What assumption would you test first?
- How would you know your answer was wrong?
Explain the lifecycle of a React component and how you manage state globally in a large-scale frontend applica
Explain the lifecycle of a React component and how you manage state globally in a large-scale frontend application.
Approach
- Clarify what is being asked and what a complete answer contains.
- State your assumptions explicitly before working the problem.
- Say what you would check first and why it is the highest-information step.
- Work from the requirement backwards to the design.
Follow-up
- What assumption would you test first?
- How would you know your answer was wrong?
Describe what happens behind the scenes from the moment a user types a URL into a web browser to when the page
Describe what happens behind the scenes from the moment a user types a URL into a web browser to when the page is fully rendered.
Approach
- Clarify what is being asked and what a complete answer contains.
- State your assumptions explicitly before working the problem.
- Say what you would check first and why it is the highest-information step.
- Work from the requirement backwards to the design.
Follow-up
- What assumption would you test first?
- How would you know your answer was wrong?
How would you design a secure, scalable deployment pipeline for a React frontend and a.NET backend on Azure?
How would you design a secure, scalable deployment pipeline for a React frontend and a.NET backend on Azure?
Approach
- Fix the scope first: who calls this, how often, and what they do when it fails.
- Name the read and write paths separately; they rarely have the same bottleneck.
- Choose a partition key and say what query it makes expensive.
- State the consistency you need, and where you are willing to be stale.
Follow-up
- What breaks first when traffic grows ten times?
- How does this behave when that dependency is down for an hour?
What strategies would you use to design a database schema for a multi-tenant enterprise application that requi
What strategies would you use to design a database schema for a multi-tenant enterprise application that requires high-speed read operations?
Approach
- Fix the scope first: who calls this, how often, and what they do when it fails.
- Name the read and write paths separately; they rarely have the same bottleneck.
- Choose a partition key and say what query it makes expensive.
- State the consistency you need, and where you are willing to be stale.
Follow-up
- What breaks first when traffic grows ten times?
- How does this behave when that dependency is down for an hour?
Explain how you would integrate AI or machine learning APIs into an existing microservices architecture withou
Explain how you would integrate AI or machine learning APIs into an existing microservices architecture without degrading system performance.
Approach
- Fix the scope first: who calls this, how often, and what they do when it fails.
- Name the read and write paths separately; they rarely have the same bottleneck.
- Choose a partition key and say what query it makes expensive.
- State the consistency you need, and where you are willing to be stale.
Follow-up
- What breaks first when traffic grows ten times?
- How does this behave when that dependency is down for an hour?
Read latency spikes on a sixty-second sawtooth
The cached listing read path serves about 14k reads/second at an 85% hit rate. p99 sits at 35 ms for 57 seconds, jumps to 900 ms for 3, and repeats. During each spike the primary shows several hundred identical listing queries starting within the same millisecond, all carrying one large tenant's id. Cache entries use a 60-second TTL. Give the mechanism, the ordered checks, the fix, and the correctness hazard your fix must not introduce.
Approach
- Match the period to a configured number before theorising about load. A spike every 60 seconds against a 60-second TTL is an entry expiring, and you confirm it by correlating spike timestamps with the entry's write time rather than with the traffic curve. If the period had matched a cron or a GC interval instead, this is a different investigation.
- Establish the concurrency of the miss. Several hundred identical queries in one millisecond means the miss path has no coalescing: every request that arrives between expiry and repopulation recomputes. The herd size is that key's arrival rate times its recompute time, so at 1.2k reads/second for the hot key and a 250 ms recompute you expect about 300 concurrent misses, which matches what is observed.
- Add single-flight on the miss path so one caller per key recomputes under a short-lived lock while the rest wait for its result. Prefer stale-while-revalidate where the read tolerates it: return the expired value immediately and refresh asynchronously, which removes the latency spike rather than serialising it into a queue of waiters.
- De-synchronise the keys. Write TTLs with jitter, for example 60 seconds plus or minus 10%, so a deploy or a mass invalidation does not align every key on the same second and turn a per-key herd into a fleet-wide one.
Follow-up
- The same sawtooth appears on a key that is invalidated on write rather than expired. Is that the same bug?
- How does your answer change if the recompute takes 4 seconds instead of 250 ms?
Built from the rounds and topics Kpmg India candidates report.
Prepare, practise & reflect
One practical outcome each day. Spend longer where you need it.
0 / 7 done01Map the Kpmg India loop
- Write out the reported sequence: Online Application, Preliminary Assessment, Technical Interviews, Partner Interview.
- For each round, write one sentence on what it is judging, from the description above, and mark the one you are least ready for.
Deliverable: A one-page map of the 4 reported rounds, with the weakest marked.
02Work Python
- Spend the session on Python, which Kpmg India candidates report being tested on.
- Write one worked example in Python and time yourself on it.
Deliverable: One timed worked example in Python.
03Work Problem Solving
- Spend the session on Problem Solving, which Kpmg India candidates report being tested on.
- Write one worked example in Problem Solving and time yourself on it.
Deliverable: One timed worked example in Problem Solving.
04Work React
- Spend the session on React, which Kpmg India candidates report being tested on.
- Write one worked example in React and time yourself on it.
Deliverable: One timed worked example in React.
05Answer out loud: Coding & Algorithms
- Answer aloud, timed: Write a function to perform complex string manipulation, such as reversing words in a sentence while preserving whitespace and identifying duplicate substrings.
- Answer aloud, timed: Solve a dynamic programming problem, such as finding the minimum number of coins needed to make a target change amount, and explain its time and space complexity.
Deliverable: Spoken answers to 2 reported Coding & Algorithms question(s), under time.
06Answer out loud: Technical Trivia & Domain Knowledge
- Answer aloud, timed: Explain the core differences between value types and reference types in.NET, and how memory management differs for both.
- Answer aloud, timed: What are the fundamental principles of Object-Oriented Programming (OOP), and how do you apply them to write reusable, maintainable code?
Deliverable: Spoken answers to 2 reported Technical Trivia & Domain Knowledge question(s), under time.
07Answer out loud: System Design & Architecture
- Answer aloud, timed: How would you design a secure, scalable deployment pipeline for a React frontend and a.NET backend on Azure?
- Answer aloud, timed: What strategies would you use to design a database schema for a multi-tenant enterprise application that requires high-speed read operations?
Deliverable: Spoken answers to 2 reported System Design & Architecture question(s), under time.
Expand any day for tasks and deliverables. Your progress is saved on this device.
Behavioural rounds judge the decision you made and what it cost.
How do you handle data consistency, caching, and rate-limiting in a highly distributed system?
How do you handle data consistency, caching, and rate-limiting in a highly distributed system?
Approach
- Pick a story where you made the decision, not one where you watched it.
- State the situation in two sentences and spend the rest on the reasoning.
- Give the blast radius: what could have broken, and what you measured.
- Name the disagreement and how you resolved it with evidence.
Follow-up
- What would you do differently if you ran that again?
- How did you know your change caused the improvement?
Describe a situation where you had to meet a tight deadline under pressure. How did you prioritize your tasks
Describe a situation where you had to meet a tight deadline under pressure. How did you prioritize your tasks and manage your time?
Approach
- Pick a story where you made the decision, not one where you watched it.
- State the situation in two sentences and spend the rest on the reasoning.
- Give the blast radius: what could have broken, and what you measured.
- Name the disagreement and how you resolved it with evidence.
Follow-up
- What would you do differently if you ran that again?
- How did you know your change caused the improvement?
Tell me about a time when you had to work with a difficult team member or resolve a conflict regarding a techn
Tell me about a time when you had to work with a difficult team member or resolve a conflict regarding a technical decision.
Approach
- Pick a story where you made the decision, not one where you watched it.
- State the situation in two sentences and spend the rest on the reasoning.
- Give the blast radius: what could have broken, and what you measured.
- Name the disagreement and how you resolved it with evidence.
Follow-up
- What would you do differently if you ran that again?
- How did you know your change caused the improvement?
Explain a project you worked on where you had to learn a completely new technology on the fly. What was your a
Explain a project you worked on where you had to learn a completely new technology on the fly. What was your approach?
Approach
- Pick a story where you made the decision, not one where you watched it.
- State the situation in two sentences and spend the rest on the reasoning.
- Give the blast radius: what could have broken, and what you measured.
- Name the disagreement and how you resolved it with evidence.
Follow-up
- What would you do differently if you ran that again?
- How did you know your change caused the improvement?
How do you align your daily engineering work with the broader mission and values of the organization you work
How do you align your daily engineering work with the broader mission and values of the organization you work for?
Approach
- Pick a story where you made the decision, not one where you watched it.
- State the situation in two sentences and spend the rest on the reasoning.
- Give the blast radius: what could have broken, and what you measured.
- Name the disagreement and how you resolved it with evidence.
Follow-up
- What would you do differently if you ran that again?
- How did you know your change caused the improvement?
- 01
How do you handle data consistency, caching, and rate-limiting in a highly distributed system?
- 02
Describe a situation where you had to meet a tight deadline under pressure. How did you prioritize your tasks and manage your time?
- 03
Tell me about a time when you had to work with a difficult team member or resolve a conflict regarding a technical decision.
- 04
Explain a project you worked on where you had to learn a completely new technology on the fly. What was your approach?
How technical is the interview process for Software Engineers at KPMG India?
The process is moderately technical. While you will face coding challenges (covering string manipulation and dynamic programming) and tech stack trivia, there is a strong, equal focus on your system design capabilities, project experience, and behavioral alignment.
Kpmg India Software Engineer candidate reports ↗What is the significance of the Partner round?
The Partner round is the final stage of the process and is highly critical. It focuses on your long-term career goals, cultural fit, consulting potential, and alignment with KPMG India's values. It is less about live coding and more about your professional maturity and communication skills.
Kpmg India Software Engineer candidate reports ↗Does KPMG India require experience with specific cloud platforms?
While experience with Azure is highly valued due to the firm's extensive use of Microsoft technologies, strong foundational knowledge of other major cloud providers like AWS or GCP is also highly regarded and transferable.
Kpmg India Software Engineer candidate reports ↗What is the typical timeline from application to offer?
The entire process generally takes between three to six weeks. This timeline includes online assessments, technical rounds, managerial discussions, and the final partner interview. The recruitment team is known for maintaining professional and clear communication throughout.
Kpmg India Software Engineer candidate reports ↗How hard is the Kpmg India interview?
Candidates most commonly rate Kpmg India interviews as medium, based on 610 reported interviews. About 55% of candidates who interview go on to receive an offer.
Kpmg India Software Engineer candidate reports ↗What topics does Kpmg India test in interviews?
Kpmg India interviews most often cover Problem Solving, SQL, Python, Communication Skills, and KQL (Kusto Query Language). The exact emphasis depends on the specific role you apply for.
Kpmg India Software Engineer candidate reports ↗Where is Kpmg India headquartered?
Kpmg India is headquartered in Amstelveen, Netherlands.
Kpmg India Software Engineer candidate reports ↗Sources & methodology 3 sources ↗
Official role evidence, timestamped platform data and clearly labeled preparation advice.
- 01Kpmg India Software Engineer candidate reports ↗
Company-reported rounds, questions and FAQ.
candidate · Accessed 2026-09-22 - 02PracHub Software Engineer practice ↗
PracHub practice material, not company-reported.
platform · Accessed 2026-09-22 - 03PracHub preparation framework ↗
PracHub preparation guidance.
platform · Accessed 2026-09-22