Upload Button Icon Add office photos

Publicis

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Publicis Front end Developer Interview Questions and Answers

Updated 15 Feb 2024

Publicis Front end Developer Interview Experiences

2 interviews found

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

It was a link from hackerEarth, only aptitude question were there

Round 2 - Coding Test 

Got 1 hr to complete 2 coding questions on the complier provided by them.

Round 3 - Technical 

(1 Question)

  • Q1. Had project structure discussion previous projects design model discussion, few problem solving questions, few react technical javascript technical question was about 1.30hr long interview

I applied via Referral and was interviewed in Jul 2021. There were 2 interview rounds.

Round 1 - One-on-one 
Round 2 - HR 

Interview Preparation Tips

Topics to prepare for Publicis Front end Developer interview:
  • Javascript
  • HTML
  • CSS3
Interview preparation tips for other job seekers - Anyone with good understanding of JS , experience with html and css should be able to clear the interview

Front end Developer Interview Questions Asked at Other Companies

Q1. Non-Decreasing Array Problem Statement Given an integer array ARR ... read more
Q2. Find Unique Element in Array You have been provided an integer ar ... read more
asked in JUSPAY
Q3. Dijkstra's Shortest Path Problem Statement You are given an undir ... read more
asked in JUSPAY
Q4. Encode N-ary Tree to Binary Tree Problem Statement You are provid ... read more
Q5. Sort Linked List Based on Actual Values You are given a Singly Li ... read more

Interview questions from similar companies

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

(5 Questions)

  • Q1. Explain promise in javascript
  • Ans. 

    Promises in JavaScript are objects representing the eventual completion or failure of an asynchronous operation.

    • Promises are used to handle asynchronous operations in JavaScript.

    • They can be in one of three states: pending, fulfilled, or rejected.

    • Promises can be chained using .then() to handle success and .catch() to handle errors.

    • Example: new Promise((resolve, reject) => { ... }).then(result => { ... }).catch(error =>

  • Answered by AI
  • Q2. HTML and CSS basic question
  • Q3. Let and var difference
  • Ans. 

    let is block scoped, var is function scoped

    • let is block scoped, var is function scoped

    • let can't be re-declared in the same scope, var can be

    • let variables are not hoisted, var variables are hoisted

  • Answered by AI
  • Q4. Spread and rest operator
  • Q5. Jwt and interceptor concepts

Skills evaluated in this interview

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

(2 Questions)

  • Q1. How to handle form validation?
  • Ans. 

    Form validation can be handled using client-side and server-side validation techniques.

    • Use HTML5 form validation attributes like required, pattern, min, max, etc.

    • Implement client-side validation using JavaScript to provide instant feedback to users.

    • Perform server-side validation to ensure data integrity and security.

    • Display error messages next to the input fields for better user experience.

    • Use a combination of front-en...

  • Answered by AI
  • Q2. Explain the concept of redux-toolkit
  • Ans. 

    Redux Toolkit is an official, opinionated, batteries-included toolset for efficient Redux development.

    • Redux Toolkit simplifies Redux code by providing a set of tools and best practices

    • It includes utilities like createSlice, createReducer, configureStore, and createAsyncThunk

    • Helps in writing concise and readable Redux code with less boilerplate

    • Encourages the use of Immer for writing immutable updates in a more intuitive

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Aug 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Javascript,Angular,Angular Js questions

Round 2 - Technical 

(1 Question)

  • Q1. Javascript, Angular questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Very bad experience. Incredibly disappointed with the hiring process, especially HR executives.
They didn't value candidates efforts and time. Firstly they will not respond to email, calls and if they respond by any chance they will give any silly answers possible. After completing Assessment test and technical round on portal it was showing that I will get invite for HR round but on next all status was reset and i received the mail again for technical assessment . And after contacting to HR many times, they are saying that my assessment test was not cleared and when I asked if my test was not cleared then how did my technical interview happened and she was like test result are confidential and are only disclosed to internal team. And then I again asked then how come I received the mail that I have cleared the test, and on their portal it was showing that my previous rounds are cleared and she cut the call.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
No response

I was interviewed before Nov 2023.

Round 1 - Technical 

(1 Question)

  • Q1. What is promises in js?
  • Ans. 

    Promises in JavaScript are objects representing the eventual completion or failure of an asynchronous operation.

    • Promises help in handling asynchronous operations in a more readable and manageable way.

    • They can be in one of three states: pending, fulfilled, or rejected.

    • Promises can be chained together using .then() method to handle success and failure cases.

    • They help in avoiding callback hell and writing cleaner asynchro...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Tell me about yourself?

Interview Questionnaire 

1 Question

  • Q1. What is event bubling
  • Ans. 

    Event bubbling is the process of propagating an event from the innermost element to its parent elements in the DOM hierarchy.

    • Events in JavaScript are triggered on elements and then propagate up the DOM tree.

    • During event bubbling, an event triggered on a child element will also trigger on its parent elements.

    • This allows for event delegation, where a single event handler can be used for multiple elements.

    • Event.stopPropag...

  • Answered by AI

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Explain difference between promise and observable with a use case

I applied via Naukri.com and was interviewed in Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Remove duplicate elements from an Array
  • Ans. 

    Remove duplicate elements from an Array

    • Use the Set object to remove duplicate elements

    • Convert the Set back to an array using the spread operator

    • If the array contains objects, use a custom comparison function

  • Answered by AI
  • Q2. How can you only accept jpg and png files using HTML5.
  • Ans. 

    Use the accept attribute in the input tag to only allow jpg and png files.

    • Add accept attribute to input tag with 'image/jpeg, image/png' value

    • This will restrict file selection to only jpg and png files

  • Answered by AI
  • Q3. How to center align a div in just one line in css.
  • Ans. 

    Use flexbox to center align a div in just one line in CSS.

    • Set the parent container's display property to flex.

    • Use the justify-content property with the value 'center' to horizontally center the div.

    • Use the align-items property with the value 'center' to vertically center the div.

  • Answered by AI
  • Q4. How to redirect to login page through React Router if the user has not logged in and trying to go to another page through URL.
  • Ans. 

    Use React Router's Redirect component to redirect to login page if user is not logged in.

    • Create a PrivateRoute component that checks if user is logged in

    • If user is not logged in, redirect to login page using Redirect component

    • Wrap the routes that require authentication with PrivateRoute component

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't really worry about success or failure. It is all about how much you learn. I have failed in at least 15-20 interviews (tbh, I stopped counting at a point, because it doesn't matter) over a span of one year before landing my dream job. I started from not knowing anything about React JS to be fluent enough for interviews. Face as many interviews you can. After the interview, note down all the questions you were asked and study on those topics. For react I divided my topics in three category. REACT(Virtual DOM, class vs functions, lifecycle methods and hooks, work flow on a button click, ROUTER, Context, HOC), REDUX(create store, apply middleware, combine reducers, pure functions, redux saga/thunk, also folder structure for redux ), REACT-REDUX(connect(), mapstatetoprops, mapdispatchtoprops, useselector and usedispatch). These are a few areas I focused on, and they all are VERY important. Study, Give Interviews, Learn, Repeat.

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

Publicis Interview FAQs

How many rounds are there in Publicis Front end Developer interview?
Publicis interview process usually has 2-3 rounds. The most common rounds in the Publicis interview process are Coding Test, Technical and One-on-one Round.
How to prepare for Publicis Front end Developer 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 Publicis. The most common topics and skills that interviewers at Publicis expect are Angularjs, React.Js, Javascript and Recruitment.

Recently Viewed

SALARIES

Directi

INTERVIEWS

ClearTax

No Interviews

INTERVIEWS

Directi

No Interviews

INTERVIEWS

DRC Systems

No Interviews

INTERVIEWS

Eversendai

No Interviews

INTERVIEWS

Credgenics

No Interviews

INTERVIEWS

Eversendai

No Interviews

INTERVIEWS

M&C Saatchi Performance

No Interviews

INTERVIEWS

Directi

No Interviews

SALARIES

DRC Systems

Tell us how to improve this page.

Publicis Front end Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Accenture Interview Questions
3.8
 • 8.1k Interviews
R.R. Donnelley Interview Questions
3.9
 • 100 Interviews
Regalix Interview Questions
2.9
 • 44 Interviews
Xdbs Interview Questions
3.2
 • 39 Interviews
Groupm Media Interview Questions
3.9
 • 35 Interviews
Smollan Group Interview Questions
4.2
 • 34 Interviews
Mediamint Interview Questions
3.4
 • 32 Interviews
Merkle Sokrati Interview Questions
3.8
 • 31 Interviews
View all
Publicis Front end Developer Salary
based on 6 salaries
₹7.5 L/yr - ₹13 L/yr
56% more than the average Front end Developer Salary in India
View more details

Publicis Front end Developer Reviews and Ratings

based on 2 reviews

3.8/5

Rating in categories

4.2

Skill development

3.4

Work-life balance

3.6

Salary

3.0

Job security

3.6

Company culture

4.0

Promotions

3.4

Work satisfaction

Explore 2 Reviews and Ratings
Associate Manager
235 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Business Manager
153 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Associate
137 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Analyst
118 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate
110 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Publicis with

WPP

3.0
Compare

Interpublic Group

3.5
Compare

Accenture

3.8
Compare

M&C Saatchi Performance

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