AmbitionBox

AmbitionBox

Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
  • Home
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Awards 2024
  • Campus Placements
  • Practice Test
  • Compare Companies
+ Contribute
notification
notification
Login
  • Home
  • Communities
  • Companies
    • Companies

      Discover best places to work

    • Compare Companies

      Compare & find best workplace

    • Add Office Photos

      Bring your workplace to life

    • Add Company Benefits

      Highlight your company's perks

  • Reviews
    • Company reviews

      Read reviews for 6L+ companies

    • Write a review

      Rate your former or current company

  • Salaries
    • Browse salaries

      Discover salaries for 6L+ companies

    • Salary calculator

      Calculate your take home salary

    • Are you paid fairly?

      Check your market value

    • Share your salary

      Help other jobseekers

    • Gratuity calculator

      Check your gratuity amount

    • HRA calculator

      Check how much of your HRA is tax-free

    • Salary hike calculator

      Check your salary hike

  • Interviews
    • Company interviews

      Read interviews for 40K+ companies

    • Share interview questions

      Contribute your interview questions

  • Jobs
  • Awards
    pink star
    VIEW WINNERS
    • ABECA 2025
      VIEW WINNERS

      AmbitionBox Employee Choice Awards - 4th Edition

    • ABECA 2024

      AmbitionBox Employee Choice Awards - 3rd Edition

    • AmbitionBox Best Places to Work 2022

      2nd Edition

    Participate in ABECA 2026 right icon dark
For Employers
logo
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 Work with us arrow

Compare button icon Compare button icon Compare
3.5

based on 3.4k Reviews

  • Why join us
  • Reviews
    3.4k
  • Salaries
    27.5k
  • Interviews
    643
  • Jobs
    271
  • Benefits
    432
  • Photos
    62
  • Posts
    3

Filter interviews by

Publicis Sapient Interview Questions and Answers

Updated 12 Jun 2025
Popular Designations

415 Interview questions

A Senior Software Engineer Testing was asked 1mo ago
Q. What is the concept of the Page Factory in software testing?
Ans. 

Page Factory is a design pattern in Selenium that enhances test automation by initializing web elements efficiently.

  • Lazy Initialization: Page Factory initializes web elements only when they are accessed, improving performance and reducing memory usage.

  • Annotations: It uses annotations like @FindBy to locate elements, making the code cleaner and more readable. Example: @FindBy(id = "username")

  • Separation of Concerns:...

View all Senior Software Engineer Testing interview questions
A Senior Software Engineer Testing was asked 1mo ago
Q. Can you explain how you utilized object-oriented programming concepts within the framework?
Ans. 

Object-oriented programming concepts enhance code organization, reusability, and maintainability in software testing frameworks.

  • Encapsulation: By encapsulating test data and methods within classes, I ensured that test cases were self-contained and easy to manage.

  • Inheritance: I created a base test class that contained common setup and teardown methods, allowing derived test classes to inherit these functionalities,...

View all Senior Software Engineer Testing interview questions
A Senior Software Engineer Testing was asked 1mo ago
Q. What is the procedure to arrange an integer array in ascending order and find the third highest number?
Ans. 

To sort an integer array and find the third highest number, use sorting algorithms and indexing techniques.

  • Sorting the Array: Use algorithms like QuickSort or MergeSort to arrange the array in ascending order. Example: [5, 2, 9, 1] becomes [1, 2, 5, 9].

  • Finding the Third Highest: After sorting, access the third last element. Example: In [1, 2, 5, 9], the third highest is 2.

  • Handling Duplicates: Ensure unique values ...

View all Senior Software Engineer Testing interview questions
A Senior Software Engineer Testing was asked 1mo ago
Q. What are abstract classes in object-oriented programming?
Ans. 

Abstract classes are incomplete classes in OOP that cannot be instantiated and are meant to be subclassed.

  • Definition: An abstract class serves as a blueprint for other classes, containing abstract methods that must be implemented by subclasses.

  • Cannot be Instantiated: You cannot create an instance of an abstract class directly; it must be subclassed first.

  • Abstract Methods: These are methods declared in an abstract ...

View all Senior Software Engineer Testing interview questions
A Senior Software Engineer Testing was asked 1mo ago
Q. What is the difference between method overloading and method overriding in Java?
Ans. 

Method overloading allows multiple methods with the same name but different parameters; overriding replaces a superclass method in a subclass.

  • Method Overloading: Achieved by defining multiple methods with the same name but different parameter types or counts. Example: `void add(int a, int b)` and `void add(double a, double b)`.

  • Method Overriding: Occurs when a subclass provides a specific implementation of a method...

View all Senior Software Engineer Testing interview questions
A Junior Associate was asked 1mo ago
Q. Write a method to count the number of alphabets in a given string?
Ans. 

This method counts the number of alphabetic characters in a given string, ignoring spaces and punctuation.

  • Iterate through each character in the string and check if it is an alphabet using isalpha() method.

  • Maintain a counter that increments for each alphabetic character found.

  • Return the final count after checking all characters.

  • Example: For the string 'Hello, World!', the count would be 10.

View all Junior Associate interview questions
A Junior Associate was asked 1mo ago
Q. Write a method to count the number of vowels in a given string?
Ans. 

This method counts the number of vowels in a given string, helping to analyze text for vowel frequency.

  • Define a method that takes a string as input.

  • Initialize a counter to zero to keep track of the number of vowels.

  • Iterate through each character in the string and check if it is a vowel (a, e, i, o, u).

  • If a vowel is found, increment the counter.

  • Return the final count of vowels after the loop.

View all Junior Associate interview questions
Are these interview questions helpful?
A Senior Associate 1 was asked 1mo ago
Q. How do you manage conflicts, and can you provide a few examples?
Ans. 

Effective conflict management involves communication, empathy, and problem-solving to resolve disagreements constructively.

  • Active Listening: I ensure all parties feel heard by summarizing their points before responding. For example, during a team project, I mediated a disagreement by allowing each member to express their concerns fully.

  • Empathy: I try to understand the perspectives of others. In a previous role, I ...

View all Senior Associate 1 interview questions
A Senior Associate 1 was asked 1mo ago
Q. Can you provide an example of a scenario in which you added value?
Ans. 

In my previous role, I streamlined a process that significantly improved team efficiency and reduced project turnaround time.

  • Identified Bottlenecks: I analyzed our project workflow and discovered that manual data entry was causing delays.

  • Implemented Automation: I introduced an automated tool that reduced data entry time by 50%, allowing the team to focus on more critical tasks.

  • Enhanced Collaboration: By facilitati...

View all Senior Associate 1 interview questions
A Senior Associate 1 was asked 1mo ago
Q. Why is risk management important, and how would you communicate its significance to stakeholders? Give examples.
Ans. 

Risk management is crucial for identifying, assessing, and mitigating potential threats to ensure project success and stakeholder confidence.

  • Identifying Risks: Effective risk management helps in identifying potential risks early, such as market fluctuations that could impact project budgets.

  • Mitigating Impact: By assessing risks, organizations can develop strategies to mitigate their impact, like creating contingen...

View all Senior Associate 1 interview questions
1 2 3 4 5 6 7

Publicis Sapient Interview Experiences

643 interviews found

Financial Analyst Interview Questions & Answers

user image Anonymous

posted on 5 Mar 2025

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

(2 Questions)

  • Q1. What is your current job portfolio?
  • Ans. 

    I currently manage financial analysis, budgeting, and forecasting for a mid-sized company, focusing on strategic growth.

    • Conduct detailed financial analysis to support decision-making, such as evaluating potential investments.

    • Prepare and present monthly financial reports to senior management, highlighting key performance indicators.

    • Develop and maintain financial models to forecast revenue and expenses, aiding in strateg...

  • Answered by AI
    Add your answer
  • Q2. What makes you proud at work?
  • Ans. 

    I take pride in delivering insightful analyses that drive strategic decisions and contribute to the team's success.

    • Achieving accurate financial forecasts that help the company allocate resources effectively.

    • Developing a comprehensive financial model that was used to secure a major investment.

    • Collaborating with cross-functional teams to identify cost-saving opportunities, resulting in a 15% reduction in expenses.

    • Present...

  • Answered by AI
    Add your answer
Round 2 - One-on-one 

(2 Questions)

  • Q1. What is your strength and weekness?
  • Ans. 

    My strength is analytical thinking, while my weakness is overanalyzing situations, which I am actively working to improve.

    • Strength: Strong analytical skills - I excel at breaking down complex financial data to identify trends and insights.

    • Example: In my previous role, I developed a financial model that improved forecasting accuracy by 20%.

    • Weakness: Tendency to overanalyze - Sometimes I spend too much time evaluating op...

  • Answered by AI
    Add your answer
  • Q2. What is your achievement at work
  • Ans. 

    Successfully led a financial analysis project that improved budgeting accuracy by 20%, enhancing decision-making processes.

    • Implemented a new forecasting model that reduced budget variances by 15%.

    • Collaborated with cross-functional teams to streamline reporting processes, saving 10 hours per month.

    • Presented findings to senior management, leading to a strategic investment decision that increased revenue by 25%.

  • Answered by AI
    Add your answer
Round 3 - HR 

(2 Questions)

  • Q1. How do you manage priority tasks?
  • Ans. 

    I prioritize tasks by assessing urgency, impact, and deadlines, ensuring efficient time management and focus on key objectives.

    • Use a priority matrix to categorize tasks by urgency and importance, helping to focus on high-impact activities.

    • Set clear deadlines for each task, allowing me to allocate time effectively and avoid last-minute rushes.

    • Regularly review and adjust priorities based on changing circumstances or new ...

  • Answered by AI
    Add your answer
  • Q2. Why should we hire you?
  • Ans. 

    I bring a unique blend of analytical skills, financial expertise, and a proactive approach to drive impactful results for your team.

    • Strong analytical skills: I have experience in financial modeling and forecasting, which helped my previous employer increase revenue by 15%.

    • Proven track record: In my last role, I successfully identified cost-saving opportunities that resulted in a 10% reduction in operational expenses.

    • Ef...

  • Answered by AI
    Add your answer

Financial Analyst Interview Questions asked at other Companies

Q1. Suppose you have $10,000 USD, including a $5,000 USD loan. You purchase two assets for $5,000 USD each, one with cash and one with the loan. How would you reflect this transaction in financial statements (cash flow, balance sheet, etc.)?
View answer (4)
Anonymous

Senior Data Engineer Interview Questions & Answers

user image Anonymous

posted on 15 Jan 2025

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

The aptitude test lasts 30 minutes and focuses on topics relevant to data engineering, including Spark, SQL, Azure, and PySpark.

Round 2 - Coding Test 

The coding test is a one-hour examination on PySpark.

Round 3 - Technical 

(3 Questions)

  • Q1. What is the difference between Cache() and Persist()?
  • Ans. 

    Cache() and Persist() are both used for caching RDDs in Apache Spark, but Persist() allows for more customization.

    • Cache() is a shorthand for Persist(StorageLevel.MEMORY_ONLY)

    • Persist() allows for specifying different storage levels like MEMORY_ONLY, MEMORY_AND_DISK, etc.

    • Persist() also allows for specifying serialization formats like Java serialization, Kryo serialization, etc.

  • Answered by AI
    Add your answer
  • Q2. What does the purpose of the Spark Submit command in Apache Spark?
  • Ans. 

    Spark Submit command is used to submit Spark applications to a cluster.

    • Spark Submit command is used to launch applications on a Spark cluster.

    • It allows users to specify application parameters like main class, jars, and arguments.

    • Users can also configure properties like memory allocation and number of executors.

    • Example: spark-submit --class com.example.Main --master yarn --deploy-mode cluster myApp.jar

  • Answered by AI
    Add your answer
  • Q3. What are window functions in SQL?
  • Ans. 

    Window functions in SQL are used to perform calculations across a set of table rows related to the current row.

    • Window functions operate on a set of rows related to the current row

    • They can be used to calculate running totals, ranks, and averages

    • Examples include ROW_NUMBER(), RANK(), and SUM() OVER()

  • Answered by AI
    Add your answer
Round 4 - HR 

(2 Questions)

  • Q1. Could you provide more details about the daily responsibilities associated with this role?
  • Ans. 

    The daily responsibilities of a Senior Data Engineer involve designing, implementing, and maintaining data pipelines, optimizing data workflows, and collaborating with cross-functional teams.

    • Designing and implementing scalable data pipelines to collect, process, and store data

    • Optimizing data workflows for efficiency and performance

    • Collaborating with data scientists, analysts, and other stakeholders to understand data r...

  • Answered by AI
    Add your answer
  • Q2. How would you describe your work culture?
  • Ans. 

    Our work culture is collaborative, innovative, and focused on continuous learning and growth.

    • Collaborative team environment where everyone's input is valued

    • Encouragement of innovation and thinking outside the box

    • Emphasis on continuous learning and professional development

    • Open communication and feedback culture

    • Supportive and inclusive atmosphere

  • Answered by AI
    Add your answer

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 and month. Order and Customer tables are separate, with Order_ID and Customer_ID as primary keys. The Customer table's Oid is a foreign key referencing the O... read more
View answer (2)
Anonymous

Senior Data Engineer Interview Questions & Answers

user image Anonymous

posted on 12 Jun 2025

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

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

  • Q1. Pyspark coding questions
  • Add your answer
  • Q2. SQL coding questions
  • Add your answer

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 and month. Order and Customer tables are separate, with Order_ID and Customer_ID as primary keys. The Customer table's Oid is a foreign key referencing the O... read more
View answer (2)
Anonymous

Senior Associate L1 Interview Questions & Answers

user image Anonymous

posted on 6 Nov 2024

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

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

Round 1 - Coding Test 

Assessment via link MCQ

Round 2 - One-on-one 

(2 Questions)

  • Q1. Microservices theory, Kafka
  • Add your answer
  • Q2. Singoloton design pattern, concurrent package, core java, collection questions, Java 8 related problem solving stream api questions
  • Add your answer
Round 3 - One-on-one 

(2 Questions)

  • Q1. Same like round 1, little bit managerial
  • Add your answer
  • Q2. Producer consumer multithreading, Java 8 , core java, project
  • Add your answer
Round 4 - One-on-one 

(2 Questions)

  • Q1. Behavioral questions
  • Add your answer
  • Q2. Situation based questions
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Get hands on actual code, singoloton design, multithreading and concurrent package, core java, spring boot, Kafka, microservices etc ..

Senior Associate L1 Interview Questions asked at other Companies

Q1. Core principles of java script. Rest api
View answer (1)
Anonymous

Java Developer Interview Questions & Answers

user image Anonymous

posted on 7 Nov 2024

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

(2 Questions)

  • Q1. Explain architecture of your project
  • Ans. 

    The project architecture follows a microservices pattern, utilizing Spring Boot for backend services and React for the frontend.

    • Microservices architecture allows for independent deployment and scaling of services.

    • Each service is built using Spring Boot, which simplifies the development of RESTful APIs.

    • The frontend is developed using React, providing a dynamic user interface.

    • Services communicate via REST APIs, ensuring ...

  • Answered by AI
    Add your answer
  • Q2. Some questions on Java, Spring Boot and sql
  • Add your answer
Round 2 - Technical 

(2 Questions)

  • Q1. Project flow and some behavioural questions
  • Add your answer
  • Q2. Project contribution of yours
  • Ans. 

    Developed a web application for tracking employee attendance and performance

    • Implemented user authentication and authorization using Spring Security

    • Utilized Hibernate for database interaction and data persistence

    • Designed and developed RESTful APIs for frontend integration

    • Used AngularJS for frontend development to create interactive user interfaces

  • Answered by AI
    Add your answer
Round 3 - HR 

(1 Question)

  • Q1. Basic formalities before offer release
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Understand your project properly and have your basic of programming very clear

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size N containing only integers 0 and 1, implement a function to sort this array. The solution should scan the array only once without using any additional arrays. Input: The firs... read more
View answer (7)
Anonymous

Senior Associate Technology L2 Interview Questions & Answers

user image Anonymous

posted on 4 Dec 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Nov 2024. There were 4 interview rounds.

Round 1 - Coding Test 

If is purely coding language related mcq test

Round 2 - Coding Test 

Leet code low to medium level problem.

Round 3 - Technical 

(2 Questions)

  • Q1. How does azure durable functions
  • Ans. 

    Azure Durable Functions enable stateful serverless workflows, managing complex orchestration and long-running processes efficiently.

    • Durable Functions allow you to write stateful functions in a serverless environment.

    • They support long-running workflows, such as approval processes or data processing pipelines.

    • Orchestrator functions manage the execution of other functions, enabling complex workflows.

    • Example: A function th...

  • Answered by AI
    Add your answer
  • Q2. Tells us about recent design pattern you used and why it was chosen
  • Ans. 

    I recently implemented the Observer pattern to enhance real-time data updates in a collaborative application.

    • The Observer pattern allows objects to subscribe and receive updates from a subject, promoting loose coupling.

    • In a collaborative document editor, multiple users can see real-time changes made by others, enhancing user experience.

    • I chose this pattern to manage state changes efficiently without tightly coupling co...

  • Answered by AI
    Add your answer
Round 4 - HR 

(2 Questions)

  • Q1. Personal information
  • Add your answer
  • Q2. Expectations and Expected earliest date of joining
  • Add your answer

Skills evaluated in this interview

Senior Associate Technology L2 Interview Questions asked at other Companies

Q1. what are Angular routing, component life cycle hooks, dir ctives, guards
View answer (1)
Anonymous

Senior Quality Assurance Engineer 2 Interview Questions & Answers

user image Anonymous

posted on 4 Dec 2024

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

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

Round 1 - Technical 

(3 Questions)

  • Q1. Coding, selenium, testNG questions
  • Add your answer
  • Q2. Wap to find char icc. Only once in a string
  • Ans. 

    This program identifies the character 'icc' appearing only once in a given string.

    • Use a loop to traverse the string and check for occurrences of 'icc'.

    • Count the occurrences using a counter variable.

    • If the counter equals 1, return the position; otherwise, indicate it's not found.

    • Example: For input 'abciccdef', output should be the index of 'icc'.

    • Example: For input 'iccabcicc', output should indicate 'icc' appears more t...

  • Answered by AI
    Add your answer
  • Q3. Wap to print sum of integers in a string
  • Ans. 

    This program extracts integers from a string and calculates their sum.

    • Use regular expressions to find all integers in the string.

    • Convert the extracted strings to integers.

    • Sum the integers using a loop or built-in functions.

    • Example: For input 'abc123def45', the output should be 168 (123 + 45).

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic java

Senior Quality Assurance Engineer 2 Interview Questions asked at other Companies

Q1. How to automate api using jmeter and how to write assertions for output
View answer (2)
Anonymous

Senior Platform Associate L2 Interview Questions & Answers

user image Srajit Gupta

posted on 20 Oct 2024

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Coding Test 

It was a concept and coding test, with MCQs. Very simple and straightforward.

Round 2 - Technical 

(3 Questions)

  • Q1. Talk about SOLID Principles
  • Ans. 

    SOLID principles are a set of five design principles in object-oriented programming to make software designs more understandable, flexible, and maintainable.

    • S - Single Responsibility Principle: A class should have only one reason to change.

    • O - Open/Closed Principle: Software entities should be open for extension but closed for modification.

    • L - Liskov Substitution Principle: Objects of a superclass should be replaceable...

  • Answered by AI
    Add your answer
  • Q2. Design pattern that you have used.
  • Ans. 

    I have used the Singleton design pattern in my previous projects.

    • Singleton pattern ensures a class has only one instance and provides a global point of access to it.

    • It is useful when you want to control the number of instances that can be created.

    • Example: Creating a Logger class that should have only one instance throughout the application.

  • Answered by AI
    Add your answer
  • Q3. Talk about Concurrent API
  • Ans. 

    Concurrent API allows multiple tasks to be executed simultaneously, improving efficiency and performance.

    • Concurrent API enables parallel processing of multiple requests at the same time.

    • It helps in reducing latency and improving overall system performance.

    • Examples include Java's CompletableFuture class for asynchronous programming and Node.js's cluster module for parallel processing.

  • Answered by AI
    Add your answer

Interview Preparation Tips

Topics to prepare for Publicis Sapient Senior Platform Associate L2 interview:
  • Concurrent API
  • Design Patterns
Interview preparation tips for other job seekers - Never opt for Interviewing to Publicis Sapient. The whole process becomes toxic after getting to the technical interview. It is scheduled to be long and tedious. My personal experience was even worse, as the interviewer immediately left the call as soon as I expressed that I haven't worked on Messaging queues. He did not even say goodbye, or gave me a chance to ask for feedback.

Skills evaluated in this interview

Senior Platform Associate L2 Interview Questions asked at other Companies

Q1. Which design patterns have you used?
View answer (1)
Anonymous

Architectural Draughtsman Interview Questions & Answers

user image Anonymous

posted on 22 Dec 2024

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

Create scenario-based questions that challenge you to utilize all of your coding skills.

Round 2 - Technical 

(2 Questions)

  • Q1. Explain the architect of your current project Multi threaded based questions Collection based questions Design pattern based questions Microservice architect based questions AWS cloud based questions
  • Add your answer
  • Q2. How to handle security in api.
  • Ans. 

    Security in APIs is crucial for protecting sensitive data and preventing unauthorized access.

    • Use authentication methods such as OAuth or API keys to verify the identity of users accessing the API.

    • Implement encryption to secure data transmission between clients and servers.

    • Set up rate limiting to prevent abuse and protect against denial of service attacks.

    • Regularly update and patch the API to address security vulnerabil...

  • Answered by AI
    Add your answer

Architectural Draughtsman Interview Questions asked at other Companies

Q1. Are you familiar with working on layers and different scales in AutoCAD?
View answer (6)
Anonymous

Interview Questions & Answers

user image Anonymous

posted on 26 Dec 2024

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

A coding test on Codility that includes multiple-choice questions and two coding problems.

Round 2 - Assignment 

I was asked to implement a web page in Angular with server-side rendering.

Round 3 - One-on-one 

(1 Question)

  • Q1. What is the explanation of the coding exercise and the associated unit tests?
  • Ans. 

    The coding exercise involves implementing a specific feature or functionality and writing unit tests to ensure its correctness.

    • Explain the purpose of the coding exercise and what is expected to be implemented.

    • Describe the approach taken to solve the problem and any challenges faced during implementation.

    • Discuss the design decisions made and how they impact the overall code quality.

    • Explain the unit tests written to vali...

  • Answered by AI
    Add your answer
Round 4 - One-on-one 

(1 Question)

  • Q1. Other projects, experience with other projects
  • Add your answer
Anonymous

Top trending discussions

View All
Interview Tips & Stories
2w (edited)
timepasstiwari
·
A Digital Markter
Nailed the interview, still rejected
Just had the BEST interview ever – super positive and encouraging! But got rejected. Interviewer said I was the most prepared, knew it was a full-time role (unlike others), and loved my answers. One of my questions was even called "the best ever asked!" He showed me around, said I was exactly what they wanted, and would get back by Friday. I was so hyped! Then today, I got the rejection email. No reason given, just "went with someone else." Feels bad when your best isn't enough. Anyone else been there? How'd you cope?
Got a question about Publicis Sapient?
Ask anonymously on communities.
More about working at Publicis Sapient
  • HQ - Boston, Massachusetts
  • IT Services & Consulting
  • 10k-50k Employees (India)
  • Analytics & KPO
  • Management Consulting

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, Multithreading, Javascript, OOPS and Design Patterns.
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
What are the most common questions asked in Publicis Sapient HR round?

The most common HR questions asked in Publicis Sapient interview are -

  1. What are your strengths and weakness...read more
  2. Why are you looking for a chan...read more
  3. What are your salary expectatio...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 Interviews By Designations

  • Publicis Sapient Senior Associate Interview Questions
  • Publicis Sapient Associate Technology L2 Interview Questions
  • Publicis Sapient Senior Software Engineer Interview Questions
  • Publicis Sapient Software Developer Interview Questions
  • Publicis Sapient Senior Associate Technology L1 Interview Questions
  • Publicis Sapient Software Engineer Interview Questions
  • Publicis Sapient Data Engineer Interview Questions
  • Publicis Sapient Senior Data Engineer Interview Questions
  • Show more
  • Publicis Sapient Senior Associate 2 Interview Questions
  • Publicis Sapient Associate Interview Questions

Interview Questions for Popular Designations

  • Senior Associate Interview Questions
  • Associate Technology L2 Interview Questions
  • Senior Software Engineer Interview Questions
  • Software Developer Interview Questions
  • Senior Associate Technology L1 Interview Questions
  • Software Engineer Interview Questions
  • Data Engineer Interview Questions
  • Senior Data Engineer Interview Questions
  • Show more
  • Associate Interview Questions
  • Senior Associate 2 Interview Questions

Overall Interview Experience Rating

4/5

based on 472 interview experiences

Difficulty level

Easy 11%
Moderate 71%
Hard 17%

Duration

Less than 2 weeks 70%
2-4 weeks 26%
4-6 weeks 2%
6-8 weeks 1%
More than 8 weeks 1%
View more
logo
Join Publicis Sapient Let's imagine the future together.

Interview Questions from Similar Companies

Genpact
Genpact Interview Questions
3.8
 • 3.4k Interviews
DXC Technology
DXC Technology Interview Questions
3.7
 • 832 Interviews
Nagarro
Nagarro Interview Questions
4.0
 • 788 Interviews
Sutherland Global Services
Sutherland Global Services Interview Questions
3.5
 • 687 Interviews
Optum Global Solutions
Optum Global Solutions Interview Questions
4.0
 • 670 Interviews
NTT Data
NTT Data Interview Questions
3.8
 • 653 Interviews
GlobalLogic
GlobalLogic Interview Questions
3.6
 • 620 Interviews
Virtusa Consulting Services
Virtusa Consulting Services Interview Questions
3.7
 • 611 Interviews
EPAM Systems
EPAM Systems Interview Questions
3.7
 • 568 Interviews
 UST
UST Interview Questions
3.8
 • 539 Interviews
View all

Publicis Sapient Reviews and Ratings

based on 3.4k 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.4k Reviews and Ratings
Jobs at Publicis Sapient
 Publicis Sapient
Product Manager

Noida

8-13 Yrs

Not Disclosed

 Publicis Sapient
Product Manager

Gurgaon / Gurugram

8-13 Yrs

Not Disclosed

 Publicis Sapient
Product Manager

Bangalore / Bengaluru

8-13 Yrs

Not Disclosed

Explore more jobs
Publicis Sapient Salaries in India
Senior Associate
2.2k salaries
unlock blur

₹11.2 L/yr - ₹41.8 L/yr

Associate Technology L2
1.6k salaries
unlock blur

₹6.7 L/yr - ₹20.4 L/yr

Senior Associate Technology L1
1.3k salaries
unlock blur

₹8.6 L/yr - ₹30 L/yr

Senior Software Engineer
873 salaries
unlock blur

₹10.3 L/yr - ₹37 L/yr

Senior Associate 2
659 salaries
unlock blur

₹15 L/yr - ₹42 L/yr

Explore more salaries
Compare Publicis Sapient with
Genpact

Genpact

3.8
Compare
DXC Technology

DXC Technology

3.7
Compare
Sutherland Global Services

Sutherland Global Services

3.5
Compare
Optum Global Solutions

Optum Global Solutions

4.0
Compare
Popular Calculators
Are you paid fairly?
Monthly In-hand Salary Calculator
Gratuity Calculator
HRA Calculator
Salary Hike Calculator
  • Home >
  • Interviews >
  • Publicis Sapient Interview Questions
write
Share an Interview
Stay ahead in your career. Get AmbitionBox app
Awards Banner

Trusted by over 1.5 Crore job seekers to find their right fit company

80 Lakh+

Reviews

4 Crore+

Salaries

10 Lakh+

Interviews

1.5 Crore+

Users

Contribute
Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
Users/Jobseekers
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Practice Test
  • Compare Companies
Employers
  • Create a new company
  • Update company information
  • Respond to reviews
  • Invite employees to review
  • AmbitionBox Offering for Employers
  • AmbitionBox Employers Brochure
AmbitionBox Awards
  • ABECA 2025 winners awaited tag
  • Participate in ABECA 2026
  • Invite employees to rate
AmbitionBox
  • About Us
  • Our Team
  • Email Us
  • Blog
  • FAQ
  • Credits
  • Give Feedback
Terms & Policies
  • Privacy
  • Grievances
  • Terms of Use
  • Summons/Notices
  • Community Guidelines
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2025 Info Edge (India) Ltd.

Follow Us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter