Upload Button Icon Add office photos
Premium Employer

i

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

KPMG India

Compare button icon Compare button icon Compare

Filter interviews by

KPMG India Interview Questions and Answers

Updated 31 Jul 2025
Popular Designations

477 Interview questions

An Associate1-Audit Staff was asked 1w ago
Q. What are the three golden rules of accounting?
Ans. 

The three golden rules of accounting guide the recording of financial transactions in a systematic manner.

  • 1. Debit the receiver, credit the giver: This rule applies to personal accounts. For example, if you receive cash from a customer, you debit the cash account and credit the customer’s account.

  • 2. Debit what comes in, credit what goes out: This rule is for real accounts. For instance, when you purchase equipment...

An Associate1-Audit Staff was asked 1w ago
Q. What vouching or verification processes do you use for fixed assets?
Ans. 

Vouching for fixed assets involves verifying their existence, valuation, and ownership through various audit procedures.

  • Physical Inspection: Verify the existence of fixed assets by conducting physical counts, e.g., checking machinery on-site.

  • Documentation Review: Examine purchase invoices, contracts, and title deeds to confirm ownership and valuation.

  • Depreciation Analysis: Review depreciation schedules to ensure a...

An Associate1-Audit Staff was asked 1w ago
Q. What do you mean by vouching?
Ans. 

Vouching is the process of verifying the authenticity of financial transactions by examining supporting documents.

  • Involves checking invoices, receipts, and contracts against recorded transactions.

  • Example: Verifying a sales invoice against the sales ledger to ensure accuracy.

  • Helps in detecting errors or fraud in financial records.

  • Essential for ensuring compliance with accounting standards and regulations.

A Senior Executive was asked 2w ago
Q. How can you format a cell or column in a spreadsheet?
Ans. 

Formatting cells or columns in a spreadsheet enhances data presentation and readability.

  • Select the cell or column you want to format.

  • Right-click and choose 'Format Cells' to open formatting options.

  • You can change the number format (e.g., currency, percentage). Example: Format a cell as currency to display $100.

  • Adjust font styles, sizes, and colors for better visibility. Example: Bold headers for emphasis.

  • Set cell ...

View all Senior Executive interview questions

What people are saying about KPMG India

View All
an associate - data science and analytics
4d
KPMG salary talk: Need your negotiation wisdom!
I cleared the interview at KPMG Global Services for a Senior - Germany Corporate D&A role. Right now, I'm at 9.8 LPA fixed with 4.4 YOE as a Data Scientist. What fixed CTC can I realistically expect and negotiate with HR for this role? I feel like I got lowballed in my last switch, so any advice would be awesome!
Got a question about KPMG India?
Ask anonymously on communities.
A Senior Executive was asked 2w ago
Q. What is conditional formatting?
Ans. 

Conditional formatting is a feature in spreadsheets that changes cell appearance based on specific criteria.

  • Highlights cells that meet certain conditions, e.g., values above a threshold.

  • Can use color scales to represent data ranges visually, e.g., a gradient from red to green.

  • Allows for data bars to show relative sizes of values within cells.

  • Can apply icons to cells based on their values, e.g., traffic light indic...

View all Senior Executive interview questions
A Business Analyst was asked 1mo ago
Q. What are the various types of charts available in Power BI?
Ans. 

Power BI offers various chart types for data visualization, enhancing insights and decision-making.

  • Bar Chart: Displays categorical data with rectangular bars (e.g., sales by region).

  • Column Chart: Similar to bar charts but vertical (e.g., monthly revenue).

  • Line Chart: Shows trends over time (e.g., stock prices over a year).

  • Pie Chart: Represents proportions of a whole (e.g., market share by company).

  • Area Chart: Simil...

View all Business Analyst interview questions

KPMG India HR Interview Questions

279 questions and answers

Q. What motivates you to do your best work every day?
Q. Can you describe a challenging situation at work and how you handled it?
Q. What is one aspect of your background or experience that is not included in ... read more
A Consultant was asked 1mo ago
Q. What are the attributes of user access testing?
Ans. 

User access testing ensures that users have appropriate permissions and access levels to systems and data.

  • Verification of user roles: Ensuring users have the correct role-based access, e.g., admin vs. regular user.

  • Access control checks: Testing if unauthorized users can access restricted areas, e.g., sensitive patient records.

  • Audit trails: Reviewing logs to confirm that access attempts are recorded and monitored.

  • U...

View all Consultant interview questions
Are these interview questions helpful?
A Consultant was asked 1mo ago
Q. What is user authentication?
Ans. 

User authentication is the process of verifying the identity of a user accessing a system or application.

  • Authentication methods include passwords, biometrics, and two-factor authentication.

  • Example: A user enters a password to log into their email account.

  • Biometric authentication uses fingerprints or facial recognition for access.

  • Two-factor authentication adds an extra layer by requiring a code sent to the user's p...

View all Consultant interview questions
A Technical Lead was asked 1mo ago
Q. Given a sorted array nums, remove the duplicates in-place such that each element appears only once and returns the new length. Do not allocate extra space for another array; you must do this by modifying th...
Ans. 

Remove duplicates from a sorted array by modifying the array in place and returning the new length.

  • Iterate through the array using a pointer to track unique elements.

  • If the current element is different from the last unique element, add it to the unique position.

  • Return the length of the modified array as the result.

  • Example: For input ['a', 'a', 'b', 'b', 'c'], the output will be ['a', 'b', 'c'] with length 3.

View all Technical Lead interview questions
A Technical Lead was asked 1mo ago
Q. Given a string, find the length of the longest substring without repeating characters.
Ans. 

Find the length of the longest substring without repeating characters using a sliding window approach.

  • Use a sliding window technique with two pointers to track the current substring.

  • Maintain a set to store characters in the current substring.

  • Expand the right pointer to include new characters until a repeat is found.

  • When a repeat is found, move the left pointer to shrink the window until the repeat is removed.

  • Examp...

View all Technical Lead interview questions

KPMG India Interview Experiences

854 interviews found

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I appeared for an interview in Jan 2025.

Round 1 - Technical 

(21 Questions)

  • Q1. What is the Selenium architecture in relation to C#?
  • Ans. 

    Selenium architecture allows for automation testing of web applications using C# bindings.

    • Selenium WebDriver interacts with web browsers to automate testing

    • C# bindings provide a way to write test scripts in C# language

    • Selenium Grid allows for parallel testing on multiple machines

    • Selenium IDE for recording and playback of test scripts

  • Answered by AI
  • Q2. What are the concepts of Object-Oriented Programming (OOP) in relation to your project?
  • Ans. 

    OOP concepts in my project include encapsulation, inheritance, and polymorphism.

    • Encapsulation: Data hiding and bundling of data with methods to operate on that data.

    • Inheritance: Ability to create new classes based on existing classes, promoting code reusability.

    • Polymorphism: Ability for objects of different classes to respond to the same method call.

    • Example: Using inheritance to create a base class 'Shape' with subclas...

  • Answered by AI
  • Q3. What are locators, and what are the different types of XPath?
  • Ans. 

    Locators are used to identify web elements in automated testing. XPath is a language used to navigate XML documents.

    • Locators are used to find and interact with elements on a web page in automated testing.

    • XPath is a language for navigating XML documents and is commonly used to locate elements on a web page.

    • Types of XPath include Absolute XPath, Relative XPath, Contains XPath, and more.

    • Absolute XPath starts from the root...

  • Answered by AI
  • Q4. Have you ever managed cookies and caches in automation?
  • Ans. 

    Yes, I have experience managing cookies and caches in automation.

    • Yes, I have written automation scripts to handle cookies by setting, getting, and deleting them.

    • I have also managed browser caches in automation to ensure accurate testing results.

    • Utilized tools like Selenium WebDriver to interact with cookies and caches during test execution.

  • Answered by AI
  • Q5. How have you managed team members in your previous roles?
  • Ans. 

    I have managed team members by setting clear expectations, providing support and guidance, and fostering a collaborative environment.

    • Set clear expectations for team members regarding goals, deadlines, and responsibilities.

    • Provide support and guidance to team members to help them succeed in their roles.

    • Foster a collaborative environment where team members can communicate openly and work together effectively.

    • Recognize an...

  • Answered by AI
  • Q6. How do you manage a situation where resources are limited and there is a deadline for completing testing?
  • Ans. 

    I prioritize testing based on critical functionalities, automate repetitive tasks, and collaborate with stakeholders to adjust scope if necessary.

    • Prioritize testing based on critical functionalities

    • Automate repetitive tasks to save time

    • Collaborate with stakeholders to adjust scope if necessary

  • Answered by AI
  • Q7. What is the defect life cycle?
  • Ans. 

    Defect life cycle is the process of identifying, reporting, fixing, retesting, and closing defects in software development.

    • Defect identification: Defects are identified through testing or user feedback.

    • Defect reporting: Defects are reported in a defect tracking system with details like severity and priority.

    • Defect fixing: Developers fix the reported defects based on the information provided.

    • Defect retesting: Testers ve...

  • Answered by AI
  • Q8. What is test scenario?
  • Q9. What is the relationship between test coverage and a test matrix?
  • Ans. 

    Test coverage is the measure of how much of the code is tested, while a test matrix is a document that maps test cases to requirements.

    • Test coverage measures the extent to which the source code of a program is executed during testing.

    • A test matrix is a document that maps test cases to requirements, helping to ensure that all requirements are covered by test cases.

    • Test coverage can be used to determine the effectiveness...

  • Answered by AI
  • Q10. How do you handle conflicting situations when working on priority-based tasks?
  • Ans. 

    I prioritize tasks based on impact and urgency, communicate with stakeholders, and seek consensus to resolve conflicts.

    • Prioritize tasks based on impact and urgency

    • Communicate with stakeholders to understand their perspectives

    • Seek consensus by discussing conflicting priorities with team members

    • Use data and metrics to support decision-making

    • Stay flexible and adapt to changing priorities

  • Answered by AI
  • Q11. What are the meanings of "Given," "When," and "Then" in Gherkin language? Please explain.
  • Ans. 

    In Gherkin language, 'Given' sets up the initial context, 'When' describes the action taken, and 'Then' specifies the expected outcome.

    • Given: Describes the initial state or precondition of the scenario

    • When: Represents the action or event that occurs

    • Then: Defines the expected outcome or result after the action is taken

    • Example: Given a user is logged in, When they click on the 'Logout' button, Then they should be logged ...

  • Answered by AI
  • Q12. What is the difference between a scenario and a scenario outline?
  • Ans. 

    A scenario is a single test case while a scenario outline is a template for multiple similar test cases with different inputs.

    • Scenario is a single test case with specific inputs and expected outcomes

    • Scenario outline is a template for multiple test cases with placeholders for inputs

    • In scenario outline, examples table is used to provide different input values for each test case

  • Answered by AI
  • Q13. What contributions have you made to the framework?
  • Ans. 

    I have contributed to the framework by designing and implementing new test cases, improving existing test scripts, and enhancing automation capabilities.

    • Designed and implemented new test cases to cover additional functionalities

    • Improved existing test scripts for better efficiency and coverage

    • Enhanced automation capabilities by integrating new tools and technologies

    • Collaborated with developers to identify and resolve is...

  • Answered by AI
  • Q14. What information do you include in a POM (Project Object Model) file?
  • Ans. 

    POM file includes information about project dependencies, build settings, and plugins in Maven projects.

    • Project dependencies

    • Build settings

    • Plugins

  • Answered by AI
  • Q15. What are the differences between WebDriver and ChromeDriver?
  • Ans. 

    WebDriver is a tool for automating web application testing, while ChromeDriver is a specific implementation for controlling Chrome browser.

    • WebDriver is a generic tool that supports multiple browsers, while ChromeDriver is specifically for Chrome browser.

    • WebDriver provides a common API for interacting with different browsers, while ChromeDriver is used to control Chrome browser instances.

    • WebDriver can be used with diffe...

  • Answered by AI
  • Q16. Syntax of xpath
  • Q17. How do you manage dynamic elements on a webpage?
  • Ans. 

    Dynamic elements on a webpage are managed using various techniques like waiting for element visibility, using explicit waits, and handling AJAX calls.

    • Use explicit waits to wait for the element to be present, visible, clickable, etc.

    • Use dynamic locators like XPath, CSS selectors, or relative locators to locate elements that change dynamically.

    • Handle AJAX calls by waiting for the call to complete before interacting with ...

  • Answered by AI
  • Q18. How do you inspect a drop-down element and write the corresponding syntax for handling drop-downs in Selenium?
  • Ans. 

    To inspect a drop-down element in Selenium, use the 'Select' class to interact with it.

    • Use the 'Select' class from Selenium's WebDriver library to interact with drop-down elements

    • Identify the drop-down element using its locator (id, name, class, etc.)

    • Instantiate a new Select object by passing the drop-down element as a parameter

    • Use Select object methods like selectByVisibleText(), selectByValue(), selectByIndex() to in...

  • Answered by AI
  • Q19. What is the structure of a framework? Explain.
  • Ans. 

    A framework is a structured set of guidelines, libraries, and tools used to develop and test software applications.

    • A framework provides a foundation for building software applications by defining the overall structure and design patterns.

    • It includes reusable components, libraries, and utilities that help in automating tasks and improving efficiency.

    • Frameworks can be categorized into different types such as testing fram...

  • Answered by AI
  • Q20. Explain feature file linking in relation to the step definition file?
  • Q21. What do you write in LINQ, what is its purpose, and how do you validate the database data against the user interface?
  • Ans. 

    LINQ is used to query data from different data sources in C#, purpose is to simplify data querying, validate database data against UI using LINQ queries.

    • LINQ is used in C# to query data from different data sources like collections, databases, XML, etc.

    • Purpose of LINQ is to simplify data querying by providing a uniform way to query different types of data sources.

    • To validate database data against the user interface, LIN...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - First, secure an interview and obtain an offer letter with a 40% salary increase. After that, negotiate with your current company; if the negotiations do not yield favorable results, use the same offer letter to apply to another company for a higher salary. Ensure to confirm the total cost to company (CTC) they are offering before attending interviews; if their budget does not align with yours, it would waste time for both parties.They may not respond to candidates though interview went well because they may move with lower salary expectations.
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
No response

I appeared for an interview in Jan 2025.

Round 1 - Group Discussion 

Programming questions related to Python and React.

Round 2 - Group Discussion 

Programmatical problem related to Python and React

Round 3 - HR 

(1 Question)

  • Q1. Salary Discussion
Round 4 - Aptitude Test 

Programming Problems related to react and python.

Round 5 - Technical 

(1 Question)

  • Q1. Object Oriented Programming, Memory Management, Multiprocessing, multithreading, GIL, React Components
Round 6 - Technical 

(1 Question)

  • Q1. Object Oriented Programming, GIL, Multi threading, multiprocessing, React Component, Shallow Copy, Deep Copy
Round 7 - Technical 

(1 Question)

  • Q1. Object Oriented Programming, GIL, Multi threading, multiprocessing, React Component, Shallow Copy, Deep Copy
Round 8 - Technical 

(1 Question)

  • Q1. Object Oriented Programming, GIL, Multi threading, multiprocessing, React Component, Shallow Copy, Deep Copy
Round 9 - One-on-one 

(1 Question)

  • Q1. Object Oriented Programming, GIL, Multi threading, multiprocessing, React Component, Shallow Copy, Deep Copy, Django ORM, Class Inheritance

Interview Preparation Tips

Interview preparation tips for other job seekers - In the name of the client Round, the internal team will contact you to conduct interview calls known as Preparation Call Round before the Client Round, aimed at creating a positive impression for the client. Typically, no additional rounds follow the HR round, but they conducted five more rounds while merely reiterating the aforementioned details, which led me to cancel my own job application.

Senior Associate Interview Questions & Answers

user image Roushan Kumar

posted on 28 Jul 2025

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I appeared for an interview in Jun 2025, where I was asked the following questions.

  • Q1. Behavioural related
  • Q2. Technicals on direct tax

Interview Preparation Tips

Interview preparation tips for other job seekers - Irresponsive HR team
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Big data , Optimization , Python basic , SQL intermediate
  • Q2. Find max and min number without sorting Joins related Big data handling Optimization question
Round 2 - Technical 

(2 Questions)

  • Q1. Schema , python , sql
  • Q2. Case study sql and python based
Round 3 - Case Study 

Sales data from a leading manufacturer

Software Developer Interview Questions & Answers

user image Sahana Sahana

posted on 18 Mar 2025

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Feb 2025, where I was asked the following questions.

  • Q1. Tell. Me. about your. Self
  • Q2. Why. Should.. we. choose.. You
  • Q3. Hello! I’m Sahana, and I done an MBA with a specialization in HR and Marketing, as well as a B.Com in E-Commerce. I’m done through my internship at Best Engineers pump in Coimbatore I’m passionate about ...
  • Q4. You should hire me because I bring a unique blend of skills in HR and marketing, supported by my academic background and practical experience.managing projects and understanding team dynamics. I am passion...

Interview Preparation Tips

Interview preparation tips for other job seekers - Speaking slowly and clearly can help you appecer relaked and confident
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Only self introduction has been taken

Interview Preparation Tips

Interview preparation tips for other job seekers - I had an extremely disappointing experience with the HR team at KPMG Pune. After traveling a long distance to attend the recruitment process, I encountered unresponsiveness and a lack of professionalism from the HR staff. Despite waiting for two days, I did not receive the assessment test URL, and my calls, emails, and messages were completely ignored.

The behavior of certain HR representatives, particularly Krishna Samhita and Aishwarya Bhosale, was highly unprofessional. They failed to provide clear communication, leaving candidates in uncertainty and wasting valuable time. Such a lack of responsibility and courtesy reflects poorly on a firm of KPMG’s stature.

A company known for its global reputation should ensure that its recruitment process is well-organized and that its HR representatives uphold professionalism and respect for candidates’ time. Unfortunately, my experience was far from that, making it one of the worst hiring processes I have encountered.

I hope KPMG takes this feedback seriously and improves its recruitment process to prevent similar experiences for future candidates.
🙏
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Dec 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Question on sas sql and credit risk
Round 2 - Technical 

(1 Question)

  • Q1. Similar as round 1 but with manager
Round 3 - Technical 

(1 Question)

  • Q1. Partner round with technical sas questions

Analyst Interview Questions & Answers

user image Anonymous

posted on 28 Feb 2025

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

I appeared for an interview in Jan 2025.

Round 1 - HR 

(2 Questions)

  • Q1. Previous experience
  • Q2. Are you relocate ?
Round 2 - Assignment 

Briefly 2 topic write depend upon 2 questions given

Round 3 - Technical 

(2 Questions)

  • Q1. Depth previous experience questions ask
  • Q2. Situation based questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Group Discussion 

GD TOPIC - AI is Bane or Boon

Round 2 - Technical 

(2 Questions)

  • Q1. What is internal Audit and tell me its complete process
  • Ans. 

    Internal Audit is a systematic and independent evaluation of an organization's operations to ensure effectiveness, efficiency, and compliance.

    • Planning: Define scope, objectives, and methodology of the audit.

    • Fieldwork: Collect and analyze data, identify risks and controls.

    • Reporting: Communicate findings, recommendations, and action plans.

    • Follow-up: Monitor implementation of recommendations and track progress.

    • Examples: P...

  • Answered by AI
  • Q2. What is Change Management and Access Control Management in details with example

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare well and have knowledge in each and every field not in very details but have some basic knowledge for every field.

Quality Analyst Interview Questions & Answers

user image Angel Light

posted on 24 Nov 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(5 Questions)

  • Q1. Tell me about yourself
  • Q2. Why you want to join kpmg?
  • Q3. What you understand about the job?
  • Q4. What is your work experience?
  • Q5. How will you see yourself within 5 years?

Interview Preparation Tips

Interview preparation tips for other job seekers - They ask very Simple questions. They just how we well communicate with them

KPMG India Interview FAQs

How many rounds are there in KPMG India interview?
KPMG India interview process usually has 2-3 rounds. The most common rounds in the KPMG India interview process are Technical, One-on-one Round and HR.
How to prepare for KPMG India 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 KPMG India. The most common topics and skills that interviewers at KPMG India expect are Professional Services, Project Management, Focus, Information Technology and Risk Management.
What are the top questions asked in KPMG India interview?

Some of the top questions asked at the KPMG India interview -

  1. While working late at night, you figure out that the data available with you ha...read more
  2. "A woman came to the market to sell eggs. The first customer bought half of her...read more
  3. Without the help of internet help me calculate the no. of white cars sold in Mu...read more
What are the most common questions asked in KPMG India HR round?

The most common HR questions asked in KPMG India interview are -

  1. What are your salary expectatio...read more
  2. Where do you see yourself in 5 yea...read more
  3. Why are you looking for a chan...read more
How long is the KPMG India interview process?

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

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 701 interview experiences

Difficulty level

Easy 16%
Moderate 75%
Hard 9%

Duration

Less than 2 weeks 63%
2-4 weeks 26%
4-6 weeks 7%
6-8 weeks 3%
More than 8 weeks 2%
View more

Interview Questions from Similar Companies

Deloitte Interview Questions
3.7
 • 3k Interviews
PwC Interview Questions
3.3
 • 1.5k Interviews
Ernst & Young Interview Questions
3.4
 • 1.2k Interviews
ZS Interview Questions
3.3
 • 479 Interviews
McKinsey & Company Interview Questions
3.8
 • 242 Interviews
KPMG Global Services Interview Questions
3.5
 • 236 Interviews
BCG Interview Questions
3.7
 • 207 Interviews
Bain & Company Interview Questions
3.9
 • 112 Interviews
Willis Towers Watson Interview Questions
3.6
 • 103 Interviews
WSP Interview Questions
4.2
 • 100 Interviews
View all

KPMG India Reviews and Ratings

based on 6.4k reviews

3.4/5

Rating in categories

3.4

Skill development

3.1

Work-life balance

3.2

Salary

3.6

Job security

3.3

Company culture

3.0

Promotions

3.1

Work satisfaction

Explore 6.4k Reviews and Ratings
Industrial Trainee - Internal Audit

Gurgaon / Gurugram

0-1 Yrs

Not Disclosed

Executive - IT Audit Executive - IT Audit

Hyderabad / Secunderabad

0-2 Yrs

Not Disclosed

Explore more jobs
Consultant
8.9k salaries
unlock blur

₹11.3 L/yr - ₹20 L/yr

Assistant Manager
8.1k salaries
unlock blur

₹16 L/yr - ₹27 L/yr

Associate Consultant
5.2k salaries
unlock blur

₹7.7 L/yr - ₹13.1 L/yr

Analyst
3.8k salaries
unlock blur

₹2.5 L/yr - ₹8 L/yr

Manager
3.6k salaries
unlock blur

₹22.2 L/yr - ₹39.1 L/yr

Explore more salaries
Compare KPMG India with

Cognizant

3.7
Compare

PwC

3.3
Compare

Capgemini

3.7
Compare

Google

4.3
Compare
write
Share an Interview