Upload Button Icon Add office photos

PwC

Compare button icon Compare button icon Compare

Filter interviews by

PwC Data Analyst Interview Questions and Answers

Updated 10 Nov 2024

11 Interview questions

A Data Analyst was asked 9mo ago
Q. What is the difference between the HAVING and WHERE clauses?
Ans. 

The main difference between 'having' and 'where' in SQL is that 'having' is used with aggregate functions to filter groups, while 'where' is used to filter rows.

  • HAVING is used with GROUP BY to filter groups based on aggregate functions results

  • WHERE is used to filter rows based on conditions

  • HAVING is applied after GROUP BY, while WHERE is applied before GROUP BY

  • Example: SELECT department, AVG(salary) FROM employees...

A Data Analyst was asked 9mo ago
Q. Explain the different types of joins.
Ans. 

Different types of joins in SQL are inner join, left join, right join, and full outer join.

  • Inner join: Returns rows when there is a match in both tables

  • Left join: Returns all rows from the left table and the matched rows from the right table

  • Right join: Returns all rows from the right table and the matched rows from the left table

  • Full outer join: Returns rows when there is a match in either table

Data Analyst Interview Questions Asked at Other Companies

asked in Deloitte
Q1. Write code to calculate the number of people in a room at the end ... read more
asked in Wipro
Q2. Chocolate Distribution Problem You are given an array/list CHOCOL ... read more
asked in Wipro
Q3. Ninja and Substrings Problem Statement Ninja has to determine all ... read more
asked in Capgemini
Q4. Ninja and His Secret Information Encoding Problem Ninja, a new me ... read more
Q5. Sliding Window Maximum Problem Statement You are given an array/l ... read more
A Data Analyst was asked
Q. Compare the record count of two source files and print whether they are equal or not.
Ans. 

Compare record count of 2 score files and print if they are equal or not.

  • Read both score files

  • Count the number of records in each file

  • Compare the record counts

  • Print if they are equal or not

A Data Analyst was asked
Q. Write a query to generate a state-wise sales summary report, joining multiple tables and ranking the results.
Ans. 

Query to generate state-wise sales summary report with ranking using multiple table joins.

  • Use SQL JOINs to combine sales, states, and products tables.

  • Aggregate sales data using SUM() function grouped by state.

  • Use RANK() or DENSE_RANK() to rank states based on total sales.

  • Example SQL: SELECT state, SUM(sales) AS total_sales, RANK() OVER (ORDER BY SUM(sales) DESC) AS sales_rank FROM sales_data JOIN states ON sales_d...

What people are saying about PwC

View All
an associate - data science and analytics
1w
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 PwC?
Ask anonymously on communities.
A Data Analyst was asked
Q. Write a query to retrieve all customer names that start with the letter 'A'.
Ans. 

Query to retrieve all customer names starting with A.

  • Use the SELECT statement to retrieve customer names.

  • Use the LIKE operator with the pattern 'A%' to match names starting with A.

  • Specify the table and column name where the customer names are stored.

  • Example: SELECT customer_name FROM customers WHERE customer_name LIKE 'A%';

What are the roles & responsibilities of a Data Analyst at PwC?

Data Analysis

  • Gather requirements with Subject Matter Experts (SMEs)
  • Perform data profiling to ensure data quality and integrity

Read full roles & responsibilities

A Data Analyst was asked
Q. What is a substring?
Ans. 

Substring is a part of a string that is smaller in length and extracted from the original string.

  • Substring is a sequence of characters within a string.

  • It can be extracted using string slicing or substring functions.

  • For example, 'hello world'[0:5] will return 'hello'.

PwC HR Interview Questions

286 questions and answers

Q. What motivated you to choose this company?
Q. What motivated you to choose a career in cybersecurity?
Q. What skills do you have?
🔥 Asked by recruiter 2 times
A Data Analyst was asked
Q. What is normalization?
Ans. 

Normalization is the process of organizing data in a database to reduce redundancy and improve data integrity.

  • Normalization involves breaking down a database into smaller, more manageable tables

  • Each table should have a primary key that uniquely identifies each record

  • Data is then organized into related tables to minimize redundancy

  • Normalization helps to prevent data inconsistencies and anomalies

  • There are different ...

Are these interview questions helpful?
A Data Analyst was asked
Q. What is the difference between char and varchar?
Ans. 

Char is fixed length while varchar is variable length.

  • Char takes up the same amount of space for each value, while varchar only takes up as much space as needed.

  • Char is faster for fixed length data, while varchar is more flexible for variable length data.

  • Example: char(10) will always take up 10 characters, while varchar(10) will only take up as much space as needed for the value.

  • Example: char is commonly used for ...

A Data Analyst was asked
Q. What is an index in SQL?
Ans. 

Index in SQL is a database object that improves the speed of data retrieval operations.

  • Index is created on one or more columns of a table.

  • It stores a copy of the data in the indexed columns in a separate structure.

  • This allows for faster search and retrieval of data.

  • Examples of index types include clustered, non-clustered, and unique indexes.

A Data Analyst was asked
Q. What are all the types of JOINs in SQL?
Ans. 

SQL has four types of joins: Inner Join, Left Join, Right Join, and Full Outer Join.

  • Inner Join returns only the matching rows from both tables.

  • Left Join returns all the rows from the left table and matching rows from the right table.

  • Right Join returns all the rows from the right table and matching rows from the left table.

  • Full Outer Join returns all the rows from both tables, with NULL values in the columns where ...

PwC Data Analyst Interview Experiences

15 interviews found

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 10 Nov 2024

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

(2 Questions)

  • Q1. Explain all types of joins
  • Q2. Difference between having and where

Skills evaluated in this interview

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

Behavioural Tests,Quants, basic Excel functions

Round 2 - HR 

(1 Question)

  • Q1. About the firm and interests
Round 3 - Group Discussion 

What do you think about electric cars

Round 4 - One-on-one 

(1 Question)

  • Q1. It was completely about competency questions

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 21 Oct 2024

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

I appeared for an interview in Sep 2024.

Round 1 - Coding Test 

Good questions on power bi

Round 2 - Group Discussion 

Duration 45 min with current affairs topics

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 22 Oct 2024

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Self intro was asked

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 5 Apr 2024

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

I applied via Approached by Company and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. What is SQL and How to use in Data Analyst ? What Difference Between NO SQL and SQL ? Difference Between RDBMS and DBMS ?
  • Ans. 

    SQL is a programming language used for managing and manipulating relational databases. NoSQL is a non-relational database management system. RDBMS is a type of DBMS that stores data in a structured format.

    • SQL (Structured Query Language) is used to manage and manipulate data in relational databases.

    • Examples of SQL commands include SELECT, INSERT, UPDATE, and DELETE.

    • NoSQL databases are non-relational and do not use SQL. ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep Focus and Learning Approach .

Skills evaluated in this interview

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 2 Nov 2023

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Aptitude Test 

Logical , Reasoning questions

Round 3 - Coding Test 

2 program questions of Dsa

Round 4 - Technical 

(1 Question)

  • Q1. Array , linked list

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 28 Feb 2023

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Jan 2023. There were 4 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 - Aptitude Test 

Good communication skills Strongly time management

Round 3 - HR 

(2 Questions)

  • Q1. Tell me about your self
  • Q2. Salary expectation. And time management
Round 4 - Technical 

(1 Question)

  • Q1. All about experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep confidence on yourself because the interview will believe how much you strong

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 24 Nov 2022

I applied via Approached by Company and was interviewed in Oct 2022. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Informatica: All scenario based questions. When aggregator will fail, need top and bottom 1 salary.
  • Q2. Compare 2 scorce files record count and print if their are equally or not

Interview Preparation Tips

Interview preparation tips for other job seekers - All are purely scenario based questions on informatica

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 1 Dec 2023

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Dec 2022. There were 4 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 - HR 

(2 Questions)

  • Q1. Tell me about yourself.
  • Q2. Why do you want to join PwC
Round 3 - Case Study 

We were given a case study to solve. End-to-end. Tableau/Power BI. 3hrs

Round 4 - One-on-one 

(1 Question)

  • Q1. Telephonic Operation Round. Where do you see yourself in 5 years? Salary Expectations

Interview Preparation Tips

Topics to prepare for PwC Data Analyst interview:
  • Tableau
  • Power Bi
  • Alteryx
  • SQL
  • Python
  • Advanced Excel

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 13 Apr 2024

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

I applied via Campus Placement and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Pretty easy , questions were mostly around SQL coding

Round 2 - HR 

(2 Questions)

  • Q1. General behavioural questions
  • Q2. Tell me about yourself Why PwC Why are you switching now

PwC Interview FAQs

How many rounds are there in PwC Data Analyst interview?
PwC interview process usually has 2-3 rounds. The most common rounds in the PwC interview process are Technical, Resume Shortlist and HR.
How to prepare for PwC Data Analyst 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 PwC. The most common topics and skills that interviewers at PwC expect are Data Analysis, SQL, Leadership Development, Analytical and Risk Management.
What are the top questions asked in PwC Data Analyst interview?

Some of the top questions asked at the PwC Data Analyst interview -

  1. Write a query where all the customer name start with...read more
  2. Write a query where we'll get state wise sales summary report. Actually in this...read more
  3. Compare 2 scorce files record count and print if their are equally or ...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4.1/5

based on 10 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 60%
6-8 weeks 20%
More than 8 weeks 20%
View more

Interview Questions from Similar Companies

ZS Data Analyst Interview Questions
3.3
 • 479 Interviews
BCG Data Analyst Interview Questions
3.7
 • 207 Interviews
Mercer Data Analyst Interview Questions
3.6
 • 89 Interviews
View all
PwC Data Analyst Salary
based on 433 salaries
₹5.1 L/yr - ₹13.7 L/yr
33% more than the average Data Analyst Salary in India
View more details

PwC Data Analyst Reviews and Ratings

based on 55 reviews

3.7/5

Rating in categories

3.6

Skill development

3.4

Work-life balance

3.6

Salary

3.5

Job security

3.6

Company culture

3.2

Promotions

3.4

Work satisfaction

Explore 55 Reviews and Ratings
Senior Associate
20.2k salaries
unlock blur

₹12.7 L/yr - ₹25.4 L/yr

Associate
15.6k salaries
unlock blur

₹8.1 L/yr - ₹14.6 L/yr

Manager
7.6k salaries
unlock blur

₹22.5 L/yr - ₹41 L/yr

Senior Consultant
5.1k salaries
unlock blur

₹16 L/yr - ₹27 L/yr

Associate2
4.9k salaries
unlock blur

₹7.5 L/yr - ₹14 L/yr

Explore more salaries
Compare PwC with

Deloitte

3.7
Compare

Ernst & Young

3.4
Compare

Accenture

3.7
Compare

TCS

3.5
Compare
write
Share an Interview