Premium Employer

i

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

Publicis Sapient Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Publicis Sapient Interview Questions, Process, and Tips

Updated 8 Mar 2025

Top Publicis Sapient Interview Questions and Answers

View all 446 questions

Publicis Sapient Interview Experiences

Popular Designations

614 interviews found

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

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

Round 1 - Technical 

(1 Question)

  • Q1. Program on collection framework
  • Ans. 

    The collection framework in Java provides a set of classes and interfaces to store and manipulate groups of objects.

    • The collection framework includes interfaces like List, Set, and Map, along with classes like ArrayList, HashSet, and HashMap.

    • Collections can store objects of any type, including custom classes.

    • Collections provide methods for adding, removing, and accessing elements, as well as for sorting and searching.

    • I...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Tough interview process

Quality Engineer Interview Questions asked at other Companies

Q1. What is MSA and addition of msa version, type of msa ,what different between variable data and attibute data .why difine flase and miss rate calculate by msa .
View answer (8)
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Coding Test 

MCQ Questions from various topics in java, spring, unit testing, multithreading and other OOPS concepts

Round 2 - Case Study 

Need to develop microservices with multiple APIs.

Round 3 - Technical 

(1 Question)

  • Q1. They will ask questions from various topics. They expect you to answer 100/100. They will simply waste your time. 1 (MCQ) + 2 (CASE STUDY) + 2 (Technical Interview). Even though you answer 80 - 90 percent ...

Interview Preparation Tips

Interview preparation tips for other job seekers - One Advice..Dont apply..

Top Publicis Sapient Senior Software Engineer Interview Questions and Answers

Q1. An unsorted array has numbers. Find the duplicate numbers and return the array.
View answer (1)

Senior Software Engineer Interview Questions asked at other Companies

Q1. Tell me about yourself. What technology are you using? What is a Collection? What are the different types of collection there? What is the difference between ArrayList and LinkedList What are the basic building blocks of Stream operators, s... read more
View answer (2)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Some online test with MCQ and Coding

Round 2 - One-on-one 

(1 Question)

  • Q1. Self Details and Current Project
Round 3 - HR 

(1 Question)

  • Q1. Situation based

Top Publicis Sapient Senior Software Engineer Interview Questions and Answers

Q1. An unsorted array has numbers. Find the duplicate numbers and return the array.
View answer (1)

Senior Software Engineer Interview Questions asked at other Companies

Q1. Tell me about yourself. What technology are you using? What is a Collection? What are the different types of collection there? What is the difference between ArrayList and LinkedList What are the basic building blocks of Stream operators, s... read more
View answer (2)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Uncontrolled components
  • Q2. Why to use uncontrolled components instead of controlled
  • Ans. 

    Uncontrolled components are useful for simple forms where you don't need to track every change in real-time.

    • Uncontrolled components are easier to set up and require less code compared to controlled components.

    • They are useful for forms with a large number of inputs where tracking every change is not necessary.

    • Uncontrolled components can be faster for rendering large forms as they do not need to re-render on every change

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for coding question to call an apk

React Js Frontend Developer Interview Questions asked at other Companies

Q1. 1. What is difference between abstract class and interface ?
View answer (1)

Publicis Sapient interview questions for popular designations

 Senior Associate

 (41)

 Associate Technology L2

 (27)

 Senior Software Engineer

 (20)

 Software Developer

 (19)

 Senior Associate Technology L1

 (18)

 Software Engineer

 (13)

 Data Engineer

 (13)

 Senior Data Engineer

 (10)

Senior Data Engineer Interview Questions & Answers

user image Akashdeep Jassal

posted on 26 Aug 2024

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

One question on pysaprk

Round 2 - One-on-one 

(2 Questions)

  • Q1. Solve the query for the dataset
  • Q2. Solve it without using spark-sql

Top Publicis Sapient Senior Data Engineer Interview Questions and Answers

Q1. What does the purpose of the Spark Submit command in Apache Spark?
View answer (1)

Senior Data Engineer Interview Questions asked at other Companies

Q1. Write a query to get the customer with the highest total order value for each year, month. [Note: Order table is different and Customer table is different. Order_ID and Customer_ID are the PK of the table with Oid from Customer table being ... read more
View answer (2)

Get interview-ready with Top Publicis Sapient Interview Questions

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

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

Round 1 - Technical 

(3 Questions)

  • Q1. Write a program to print occurrence of character from a given string
  • Ans. 

    Program to print occurrence of characters in a given string

    • Create a map to store characters and their counts

    • Iterate through the string and update the counts in the map

    • Print the characters and their counts from the map

  • Answered by AI
  • Q2. Write a program to find sum of any two elements in an array is equal to x?(x=-1)
  • Ans. 

    Program to find sum of any two elements in an array equal to -1

    • Iterate through the array and for each element, check if there exists another element whose sum is equal to -1

    • Use a hashmap to store the elements and their indices for faster lookup

    • Handle edge cases like empty array or array with less than 2 elements

    • Example: For array [-2, 3, 5, -3, 8], the pairs (-2, 1) and (3, -3) have sum equal to -1

  • Answered by AI
  • Q3. Find xpath for a given element
  • Ans. 

    Use browser developer tools to inspect element and generate xpath

    • Inspect element using browser developer tools

    • Right click on element and select 'Copy' -> 'Copy XPath'

    • Modify generated xpath if needed to make it more robust

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good interview experience. well versed in java can easily crack this interview

Skills evaluated in this interview

Senior Automation Test Engineer Interview Questions asked at other Companies

Q1. (1) write a list comprehension to print a list from 1 to 10 (2) write a program to check if a given positive integer is a power of two (3) create a fibonacci series of 100 using recursive function (4) write a program to find missing numbers... read more
View answer (2)

Jobs at Publicis Sapient

View all

Interview Questions & Answers

user image Anonymous

posted on 2 Jan 2025

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

Frontend Show list of data from api using custom hooks

Interview experience
2
Poor
Difficulty level
-
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - One-on-one 

(3 Questions)

  • Q1. What Volume of data have you handled in your POCs ?
  • Ans. 

    I have handled terabytes of data in my POCs, including data from various sources and formats.

    • Handled terabytes of data in POCs

    • Worked with data from various sources and formats

    • Used tools like Hadoop, Spark, and SQL for data processing

  • Answered by AI
  • Q2. When will you decide to use repartition and coalesce?
  • Ans. 

    Repartition is used for increasing partitions for parallelism, while coalesce is used for decreasing partitions to reduce shuffling.

    • Repartition is used when there is a need for more partitions to increase parallelism.

    • Coalesce is used when there are too many partitions and need to reduce them to avoid shuffling.

    • Example: Repartition can be used before a join operation to evenly distribute data across partitions for bette...

  • Answered by AI
  • Q3. How will you design/configure a cluster if you have given 10 petabytes of data.
  • Ans. 

    Designing/configuring a cluster for 10 petabytes of data involves considerations for storage capacity, processing power, network bandwidth, and fault tolerance.

    • Consider using a distributed file system like HDFS or object storage like Amazon S3 to store and manage the large volume of data.

    • Implement a scalable processing framework like Apache Spark or Hadoop to efficiently process and analyze the data in parallel.

    • Utilize...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Sometimes you can easily detect that they want to rush your interview by asking irrelevant questions even though you have not mentioned such expertise in your resume. Also they have only shortlisted the resume just to reject. This breaks the confidence of the person who is looking for the job and honestly conveying the level of expertise he/she has.

Skills evaluated in this interview

Top Publicis Sapient Data Engineer Interview Questions and Answers

Q1. What will happen if job has failed in pipeline and data processing cycle is over?
View answer (1)

Data Engineer Interview Questions asked at other Companies

Q1. Optimal Strategy for a Coin Game You are playing a coin game with your friend Ninjax. There are N coins placed in a straight line. Here are the rules of the game: 1. Each coin has a value associated with it. 2. The game involves two players... read more
View answer (1)

Interview Questions & Answers

user image Krishna Joshi

posted on 1 Mar 2025

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - HR 

(2 Questions)

  • Q1. How do you handle work-related pressure?
  • Ans. 

    I manage work-related pressure by prioritizing tasks, maintaining open communication, and practicing stress-relief techniques.

    • Prioritize tasks: I create a daily to-do list to focus on urgent tasks first, ensuring deadlines are met.

    • Open communication: I regularly check in with my team to discuss workloads and share concerns, fostering a supportive environment.

    • Stress-relief techniques: I practice mindfulness and take sho...

  • Answered by AI
  • Q2. What are your career aspirations?
  • Ans. 

    I aspire to grow in Compensation and Benefits, enhancing employee satisfaction and driving organizational success through strategic initiatives.

    • Aim to become a Compensation and Benefits Manager, leading innovative programs that attract and retain top talent.

    • Desire to specialize in data analytics to assess compensation trends and improve decision-making processes.

    • Plan to pursue certifications like Certified Compensation...

  • Answered by AI
Round 2 - Aptitude Test 

Logical test and problem-solving test.

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

I applied via LinkedIn and was interviewed in Apr 2024. There were 5 interview rounds.

Round 1 - Online MCQ Test 

(1 Question)

  • Q1. .NET stack related MCQ test
Round 2 - Coding Test 

Asked to create WebAPI with all CRUD operations with some use case

Round 3 - Technical 

(1 Question)

  • Q1. Technical interview L1
Round 4 - Technical 

(1 Question)

  • Q1. Technical interview L2
Round 5 - Behavioral 

(2 Questions)

  • Q1. Managerial interview questions
  • Q2. Questions asked were tricky to check your thoughts and communications

Senior Associate 2 Interview Questions asked at other Companies

Q1. How to troubleshoot Outlook unable to send and received mail ?
View answer (1)

Publicis Sapient Interview FAQs

How many rounds are there in Publicis Sapient interview?
Publicis Sapient interview process usually has 2-3 rounds. The most common rounds in the Publicis Sapient interview process are Technical, Coding Test and One-on-one Round.
How to prepare for Publicis Sapient 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 Sapient. The most common topics and skills that interviewers at Publicis Sapient expect are Java, Javascript, Multithreading, Spring Boot and OOPS.
What are the top questions asked in Publicis Sapient interview?

Some of the top questions asked at the Publicis Sapient interview -

  1. pirates of different ages have a treasure of 100 gold coins. On their ship, th...read more
  2. There are 10 black socks and 10 white socks in a drawer. You have to go ou...read more
  3. 3 men go into a hotel. The man behind the desk says a room is $30 so each man p...read more
How long is the Publicis Sapient interview process?

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

Tell us how to improve this page.

Publicis Sapient Interview Process

based on 445 interviews

Interview experience

4
  
Good
View more
Join Publicis Sapient Let's imagine the future together.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.8
 • 8.1k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Capgemini Interview Questions
3.7
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
IBM Interview Questions
4.0
 • 2.3k Interviews
View all

Publicis Sapient Reviews and Ratings

based on 3.2k reviews

3.5/5

Rating in categories

3.6

Skill development

3.4

Work-life balance

3.4

Salary

3.1

Job security

3.4

Company culture

2.7

Promotions

3.2

Work satisfaction

Explore 3.2k Reviews and Ratings
Product Manager

Pune

8-13 Yrs

Not Disclosed

Product Manager

Mumbai

8-13 Yrs

Not Disclosed

Product Manager

Noida

8-13 Yrs

Not Disclosed

Explore more jobs
Senior Associate
2.2k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Technology L2
1.5k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Associate Technology L1
1.2k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
738 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Associate 2
626 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Publicis Sapient with

Accenture

3.8
Compare

IBM

4.0
Compare

TCS

3.7
Compare

Infosys

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