Upload Button Icon Add office photos

PwC

Compare button icon Compare button icon Compare

Filter interviews by

PwC Front end Developer Interview Questions and Answers for Experienced

Updated 22 May 2024

PwC Front end Developer Interview Experiences for Experienced

1 interview found

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

(1 Question)

  • Q1. Fir arrow function This keyword Promises Promise chain Generator function Rest operator Spread operator React hooks Higher order component Redux life cycle Palindrome string code Fibonacci code

Front end Developer Jobs at PwC

View all

Interview questions from similar companies

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

I applied via Referral and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Merge sort time complexity less
  • Ans. 

    Merge sort has a time complexity of O(n log n) in the worst case scenario.

    • Merge sort divides the array into two halves, sorts them recursively, and then merges them back together.

    • The time complexity of merge sort is O(n log n) in the worst case scenario.

    • For example, sorting an array of 8 elements would take 3 recursive calls to merge sort.

  • Answered by AI
  • Q2. Palindrome with react js to show on UI
  • Ans. 

    Create a palindrome checker using React JS to display on the UI

    • Create a input field for user to enter a string

    • Use state to store the input string

    • Create a function to check if the input string is a palindrome

    • Display the result on the UI

  • Answered by AI
Round 2 - Coding Test 

Javascript question on promise, callbacks, hosting

Skills evaluated in this interview

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

(1 Question)

  • Q1. Array linked list queue
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Walk-in and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Javascript array questions like palindrom and others with aptitude

Round 2 - Technical 

(4 Questions)

  • Q1. Skill related technical questions
  • Q2. How to share data in components react
  • Ans. 

    Data can be shared between components in React using props, context, or state management libraries like Redux.

    • Use props to pass data from parent to child components

    • Use context to share data across multiple components without passing props manually

    • Use state management libraries like Redux to manage global state and share data between components

  • Answered by AI
  • Q3. Prop drilling explain in react
  • Ans. 

    Prop drilling is the process of passing data through multiple levels of components in React.

    • Prop drilling occurs when a component needs to pass data to a deeply nested child component.

    • It can lead to code that is hard to maintain and understand.

    • One way to avoid prop drilling is by using Context API or Redux for state management.

  • Answered by AI
  • Q4. Redux flow explain
  • Ans. 

    Redux is a predictable state container for JavaScript apps.

    • Redux stores the entire state of an application in a single immutable object.

    • State changes are made by dispatching actions, which are plain JavaScript objects.

    • Reducers specify how the application's state changes in response to actions.

    • Redux flow: Action -> Reducer -> Store -> View

  • Answered by AI
Round 3 - Behavioral 

(1 Question)

  • Q1. Previous project discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Clear the basics of react or angular and redux also.

Skills evaluated in this interview

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

I appeared for an interview in Feb 2024.

Round 1 - Coding Test 

2 moderate DSA questions and a Question on React on Api's to fetch data

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA when you are appearing for Big4 and theory conceps when you attend for MNC's
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. HTML CSS JS Angular React Questions

Front end Developer Interview Questions & Answers

Deloitte user image mohammed nizamuddin gm

posted on 30 Jun 2024

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

(2 Questions)

  • Q1. How to handle error in javascript
  • Ans. 

    Error handling in JavaScript involves using try-catch blocks, throwing custom errors, and using error objects.

    • Use try-catch blocks to catch and handle errors

    • Throw custom errors using the throw keyword

    • Use error objects like Error, SyntaxError, TypeError, etc. for specific types of errors

  • Answered by AI
  • Q2. Explain closure
  • Ans. 

    Closure is a function that retains access to variables from its parent scope even after the parent function has finished executing.

    • Closure allows a function to access and manipulate variables from its outer scope.

    • It forms a 'closed-over' scope that persists even after the outer function has finished executing.

    • Closures are commonly used in event handlers, callbacks, and asynchronous code.

    • Example: function outerFunction(...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn Basic javascript question along with project knowledge

Skills evaluated in this interview

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

Basic angular questions like-lazy loading, == === operator etc

Round 2 - HR 

(1 Question)

  • Q1. Map function , hashmap
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What are closures with examples ?
  • Ans. 

    Closures are functions that have access to their own scope, as well as the scope in which they were defined.

    • Closures allow functions to access variables from their outer function even after the outer function has finished executing.

    • Closures are commonly used in event handlers and callbacks.

    • Example: function outerFunction() { let outerVar = 'I am outer'; return function innerFunction() { console.log(outerVar); }; }

  • Answered by AI
  • Q2. How to get updated content on scroll on e-commerce app?
  • Ans. 

    Use infinite scrolling to fetch new content as user scrolls down the page.

    • Implement infinite scrolling to load more products as user scrolls down

    • Make AJAX calls to fetch new content from the server

    • Update the DOM with the new content dynamically

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

I appeared for an interview in Jan 2025.

Round 1 - Technical 

(2 Questions)

  • Q1. What are semantic elements in HTML?
  • Ans. 

    Semantic elements in HTML provide meaning to the content, making it easier for search engines and screen readers to interpret.

    • Semantic elements are HTML tags that clearly define the content they wrap.

    • They provide structure and meaning to the content, making it more accessible and SEO-friendly.

    • Examples include <header>, <footer>, <nav>, <article>, <section>, <aside>, <main>, <

  • Answered by AI
  • Q2. Difference between html5 and html?
  • Ans. 

    HTML5 is the latest version of HTML with new features and improvements.

    • HTML5 supports new elements like <header>, <footer>, <nav>, <article>, <section> etc.

    • HTML5 supports new input types like email, url, date, range, color etc.

    • HTML5 supports new APIs like Geolocation, Web Storage, Web Workers, Canvas, Audio/Video etc.

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. How to pass data in components using Vue js and react js?
  • Ans. 

    Data can be passed in components using props in Vue.js and React.js.

    • In Vue.js, data can be passed down to child components using props.

    • In React.js, data can be passed down to child components using props as well.

    • In Vue.js, props are defined in the parent component and passed down to the child component.

    • In React.js, props are passed down from parent to child components as attributes.

  • Answered by AI

PwC Interview FAQs

How many rounds are there in PwC Front end Developer interview for experienced candidates?
PwC interview process for experienced candidates usually has 1 rounds. The most common rounds in the PwC interview process for experienced candidates are Technical.
How to prepare for PwC Front end Developer interview for experienced candidates?
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 Front End, Javascript, HTML, Analytical Chemistry and Backend.

Tell us how to improve this page.

PwC Front end Developer Interview Process for Experienced

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

Deloitte Interview Questions
3.8
 • 2.9k Interviews
Ernst & Young Interview Questions
3.4
 • 1.2k Interviews
KPMG India Interview Questions
3.5
 • 806 Interviews
ZS Interview Questions
3.3
 • 456 Interviews
BCG Interview Questions
3.7
 • 198 Interviews
Bain & Company Interview Questions
3.8
 • 108 Interviews
WSP Interview Questions
4.2
 • 97 Interviews
Gartner Interview Questions
4.1
 • 81 Interviews
View all
PwC Front end Developer Salary
based on 23 salaries
₹3 L/yr - ₹12 L/yr
26% more than the average Front end Developer Salary in India
View more details

PwC Front end Developer Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

5.0

Skill development

3.0

Work-life balance

5.0

Salary

3.0

Job security

3.0

Company culture

5.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
IN-Senior Associate_Front End Developer

Bangalore / Bengaluru

4-8 Yrs

Not Disclosed

IN-Senior Associate_Front End Developer

Bangalore / Bengaluru

4-8 Yrs

Not Disclosed

Senior Associate_Front End Developer

Bangalore / Bengaluru

4-8 Yrs

Not Disclosed

Explore more jobs
Senior Associate
16.2k salaries
unlock blur

₹8 L/yr - ₹30.6 L/yr

Associate
13.6k salaries
unlock blur

₹4.7 L/yr - ₹17 L/yr

Manager
7k salaries
unlock blur

₹14 L/yr - ₹45 L/yr

Senior Consultant
4.5k salaries
unlock blur

₹9 L/yr - ₹33 L/yr

Associate2
4.4k salaries
unlock blur

₹4.7 L/yr - ₹16.5 L/yr

Explore more salaries
Compare PwC with

Deloitte

3.8
Compare

Ernst & Young

3.4
Compare

Accenture

3.8
Compare

TCS

3.7
Compare
Did you find this page helpful?
Yes No
write
Share an Interview