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

Filter interviews by

Publicis Sapient Senior Software Engineer 1 Interview Questions and Answers

Updated 28 Mar 2025

Publicis Sapient Senior Software Engineer 1 Interview Experiences

3 interviews found

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

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

  • Q1. What are the SOLID principles in software development?
  • Ans. 

    SOLID principles are five design principles aimed at making software designs more understandable, flexible, and maintainable.

    • S - Single Responsibility Principle: A class should have one, and only one, reason to change. Example: A class handling user data should not also handle logging.

    • O - Open/Closed Principle: Software entities should be open for extension but closed for modification. Example: Using interfaces to allo...

  • Answered by AI
  • Q2. What are design principles, and could you provide an example of the Singleton design pattern?
  • Ans. 

    Design principles guide software development for maintainability and scalability. Singleton ensures a class has only one instance.

    • Design principles include SOLID, DRY, KISS, and YAGNI.

    • The Singleton pattern restricts instantiation of a class to one object.

    • Example: A configuration manager that loads settings once and provides access globally.

    • Singleton can be implemented using a private constructor and a static method to ...

  • Answered by AI
  • Q3. What are the different default functional interfaces in Java?
  • Ans. 

    Java provides several default functional interfaces for functional programming, enhancing code readability and reusability.

    • Predicate<T>: Represents a single argument function that returns a boolean. Example: Predicate<String> isEmpty = s -> s.isEmpty();

    • Function<T, R>: Represents a function that takes an argument of type T and produces a result of type R. Example: Function<Integer, String> int...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Binary search question

Senior Software Engineer 1 Interview Questions Asked at Other Companies

Q1. Describe the architecture design for an end-to-end system that ta ... read more
Q2. What is CRFS? The experience around working with it.
Q3. What is the difference between Python and Node.JS?
Q4. What is the difference between SQL and NoSQL?
Q5. Given a string, convert it into substrings based on a given numbe ... read more

I applied via Referral and was interviewed before Sep 2021. There were 4 interview rounds.

Round 1 - Coding Test 

Swift and objective fundamentals

Round 2 - Aptitude Test 

Reasoning and math with multiple options

Round 3 - Technical 

(1 Question)

  • Q1. One to one with technical person
Round 4 - HR 

(1 Question)

  • Q1. Common Hr questions related to the organisation, work culture

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice Company to work and upgrade skills in your desired direction

What people are saying about Publicis Sapient

View All
an associate
6d
Stuck in a rut at PS—need an internal move!
Hey everyone, I recently joined PS, hoping to learn new things, but this job is super monotonous. I'm really good with Power BI and Excel (Tableau too, but PBI is my jam). Any advice on how to approach internal mobility to start making Power BI dashboards? Who should I talk to? Based in India.
Got a question about Publicis Sapient?
Ask anonymously on communities.

Interview questions from similar companies

Interview Questionnaire 

5 Questions

  • Q1. Oops,program on oops concepts,collection related examples. Hibernate and spring related questions
  • Q2. Logical programs String related
  • Q3. Managerial round Most of the questions asked on java, jQuery, java script and hibernate
  • Q4. Spring annotations Discussion on previous project
  • Q5. Introduction Skills related Salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Study basics

Interview Questionnaire 

1 Question

  • Q1. Core java

I appeared for an interview before Jun 2021.

Round 1 - Coding Test 

Had DSA and aptitude questions

Round 2 - Technical 

(1 Question)

  • Q1. DSA a questions, Database Questions
Round 3 - HR 

(1 Question)

  • Q1. 5 min question and answers about company

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA and database management
Are these interview questions helpful?

I appeared for an interview in Oct 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 75 min
Round difficulty - Medium

This round was MCQ and coding round. 25 MCQs and one coding question were asked. MCQs were based on OS, DBMS, Aptitude and Data Structures.

  • Q1. 

    Minimum Days to Complete Work

    You have 'N' tasks to complete. Each task can only be done on one of two specific days provided in two arrays: day1 and day2.

    For each task i, day1[i] represents the earliest...

  • Ans. 

    Find the minimum number of days required to complete all tasks given specific completion days for each task.

    • Sort the tasks based on day1 in ascending order.

    • For each task, choose the minimum of day1 and day2 as the completion day.

    • Keep track of the maximum completion day for each task.

    • The final answer is the maximum completion day of all tasks.

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 30 min
Round difficulty - Easy

This was a Data Structural round. Only one coding question was asked by the interviewer. The interviewer was very friendly. This round was very easy.

  • Q1. 

    Bubble Sort Problem Statement

    Sort the given unsorted array consisting of N non-negative integers in non-decreasing order using the Bubble Sort algorithm.

    Input:

    The first line contains an integer 'T' r...
  • Ans. 

    Bubble Sort algorithm is used to sort an array of non-negative integers in non-decreasing order.

    • Implement the Bubble Sort algorithm to sort the array in place.

    • Compare adjacent elements and swap them if they are in the wrong order.

    • Repeat this process until the array is sorted.

    • Time complexity of Bubble Sort is O(n^2) in the worst case.

    • Example: For input [6, 2, 8, 4, 10], the output should be [2, 4, 6, 8, 10].

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from TIET - Thapar Institute of Engineering And Technology. I applied for the job as SDE - 1 in GurgaonEligibility criteria8Optum interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS,Dynamic Programminng,Operating System,DBMSTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Be confident! 
Tip 2 : Maintain high Cgpa
Tip 3 : Do your best

Application resume tips for other job seekers

Tip 1 : Mention clear points
Tip 2 : Atleast 3 projects and never put anything you have not revised

Final outcome of the interviewSelected

Skills evaluated in this interview

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 75 minutes
Round difficulty - Medium

It was in the evening.
It consisted of 26 questions of easy to hard level.
It consisted of 25 MCQs and only 1 coding problem.

  • Q1. 

    Author and Books Formatting

    Given a structured list of books and their authors, format the information as specified.

    Input:

    The first line of input contains an integer ‘T' representing the number of tes...
  • Ans. 

    The task is to format a list of authors and their books in a specific way as per the given input format.

    • Parse the input to extract the number of test cases, number of authors, author names, and their respective books.

    • Format the output by printing the author names and their books in the specified format.

    • Ensure correct sequence and labeling of authors and books as per the example provided.

    • Handle multiple test cases and a...

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 15 minutes
Round difficulty - Medium

It was more of CV based round. A brief discussion on projects was there followed by some questions like why optum.

  • Q1. 

    Delete a Node from a Linked List

    You are provided with a linked list of integers. Your task is to implement a function that deletes a node located at a specified position 'POS'.

    Input:

    The first line co...
  • Ans. 

    Implement a function to delete a node from a linked list at a specified position.

    • Traverse the linked list to find the node at the specified position.

    • Update the pointers of the previous and next nodes to skip the node to be deleted.

    • Handle edge cases such as deleting the head or tail of the linked list.

    • Ensure to free the memory of the deleted node to avoid memory leaks.

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 15 minutes
Round difficulty - Easy

A short round where some basic dbms questions like procedure, cursor were asked. Then some questions on whether I would prefer working alone or in a team. Where I see myself in 5 years.

  • Q1. 

    Graph Coloring Problem

    You are given a graph with 'N' vertices numbered from '1' to 'N' and 'M' edges. Your task is to color this graph using two colors, such as blue and red, in a way that no two adjacen...

  • Ans. 

    Given a graph with 'N' vertices and 'M' edges, determine if it can be colored using two colors without adjacent vertices sharing the same color.

    • Use graph coloring algorithm like BFS or DFS to check if the graph can be colored with two colors without conflicts.

    • Check if any adjacent vertices have the same color. If so, it is not possible to color the graph as described.

    • If the graph has connected components, color each co...

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 8 CGPA, Computer oriented branchesOptum interview preparation:Topics to prepare for the interview - DBMS, Data Structures, Algorithms, Puzzles, Operating Systems, OOPSTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Projects do not matter much for this company.
Tip 2 : I did almost all the puzzles from Interviewbit.
Tip 3 : DBMS is really important. Practice queries in SQL thoroughly. You should know the use of limit and top also. It may be asked to write the same query in more than 1 form.
Tip 4 : Practice all the data structures. Questions were simple and you should know the basics of every data structure.

Application resume tips for other job seekers

Tip 1 : Don't write anything just for the sake of it.
Tip 2 : If you are writing some project then be thorough with all the details. If you are not much confident, then simply remove it and focus on other subjects.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Basic questions related to skillset

Publicis Sapient Interview FAQs

How many rounds are there in Publicis Sapient Senior Software Engineer 1 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 Aptitude Test.
What are the top questions asked in Publicis Sapient Senior Software Engineer 1 interview?

Some of the top questions asked at the Publicis Sapient Senior Software Engineer 1 interview -

  1. What are design principles, and could you provide an example of the Singleton d...read more
  2. What are the different default functional interfaces in Ja...read more
  3. What are the SOLID principles in software developme...read more

Tell us how to improve this page.

Overall Interview Experience Rating

5/5

based on 2 interview experiences

Difficulty level

Hard 100%

Duration

2-4 weeks 100%
View more
Join Publicis Sapient Let's imagine the future together.
Publicis Sapient Senior Software Engineer 1 Salary
based on 31 salaries
₹16.5 L/yr - ₹26 L/yr
15% more than the average Senior Software Engineer 1 Salary in India
View more details

Publicis Sapient Senior Software Engineer 1 Reviews and Ratings

based on 8 reviews

3.8/5

Rating in categories

3.8

Skill development

4.0

Work-life balance

3.7

Salary

3.8

Job security

4.0

Company culture

3.6

Promotions

3.8

Work satisfaction

Explore 8 Reviews and Ratings
Senior Associate
2.2k salaries
unlock blur

₹16.7 L/yr - ₹32 L/yr

Associate Technology L2
1.6k salaries
unlock blur

₹9.2 L/yr - ₹18 L/yr

Senior Associate Technology L1
1.4k salaries
unlock blur

₹16.4 L/yr - ₹30 L/yr

Senior Software Engineer
915 salaries
unlock blur

₹18 L/yr - ₹32 L/yr

Senior Associate 2
666 salaries
unlock blur

₹23.8 L/yr - ₹42 L/yr

Explore more salaries
Compare Publicis Sapient with

Genpact

3.7
Compare

DXC Technology

3.6
Compare

Optum Global Solutions

4.0
Compare

Virtusa Consulting Services

3.7
Compare
write
Share an Interview