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 Associate Software Engineer Interview Questions, Process, and Tips

Updated 2 Apr 2024

Top Publicis Sapient Associate Software Engineer Interview Questions and Answers

  • Q1. Trapping Rain Water Problem Statement You are given a long type array/list ARR of size N , representing an elevation map. The value ARR[i] denotes the elevation of the i ...read more
  • Q2. Merge Two Sorted Arrays Problem Statement Given two sorted integer arrays ARR1 and ARR2 of size M and N , respectively, merge them into ARR1 as one sorted array. Assume ...read more
  • Q3. Height of a Binary Tree You are provided with an arbitrary binary tree consisting of 'N' nodes where each node is associated with a certain value. The task is to determi ...read more

Publicis Sapient Associate Software Engineer Interview Experiences

8 interviews found

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

I applied via Campus Placement and was interviewed in Nov 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Coding Test 

There were 3-4 medium-level DSA questions.

Round 3 - One-on-one 

(1 Question)

  • Q1. The technical interview is easy in this company. General questions are asked on C++, operating systems, Databases, OOPS. Basic project discussion also happens.
Round 4 - HR 

(2 Questions)

  • Q1. They expect the new joiners to have complete knowledge about the company thus it is advised that before this interview, candidates should properly read about Publicis sapient history and should visit its w...
  • Q2. Where are the job locations of Publicis sapient in India?
  • Ans. 

    Publicis Sapient has job locations in multiple cities across India.

    • Publicis Sapient has offices in Bangalore, Gurgaon, Mumbai, and Chennai.

    • They also have a presence in Noida, Hyderabad, and Jaipur.

    • The company offers remote work options as well.

    • Job locations may vary depending on the specific role and project.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just have your basics clear. The interviewer in this company will not ask tough DSA questions and over all its interview process is medium.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Coding Test 

One Dp and one backtracking question

Round 3 - Technical 

(3 Questions)

  • Q1. Basic Questions about Java
  • Q2. Computer Network Basics
  • Q3. Thorough OOP questions
Round 4 - HR 

(1 Question)

  • Q1. How would you resolve conflict

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare OOP thoroughly, also some basics of each field of computer science

Associate Software Engineer Interview Questions Asked at Other Companies

asked in Accenture
Q1. Triplets with Given Sum Problem Given an array or list ARR consis ... read more
asked in Gainsight
Q2. Connecting Ropes with Minimum Cost You are given 'N' ropes, each ... read more
Q3. Intersection of Two Arrays II Given two integer arrays ARR1 and A ... read more
asked in Clarivate
Q4. Best Time to Buy and Sell Stock II Problem Statement Given the st ... read more
Q5. Ninja and Alternating Largest Problem Statement Ninja is given a ... read more
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Technical question in depth on your skillset
  • Q2. What is Event loop? What is higher order components?
  • Ans. 

    Event loop is a mechanism that allows JavaScript to perform non-blocking I/O operations.

    • Event loop is a part of JavaScript runtime that continuously checks the call stack and the task queue.

    • It processes the tasks in the task queue one by one and pushes them to the call stack.

    • Higher order components are functions that take a component and return a new component with additional functionality.

    • They are commonly used in Rea...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - One nwwd to be very strong in technical perspective in order to get into this company
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Jul 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Questions about the project were asked. No deep questions were asked.
  • Q2. Questions from CS fundamentals were mostly asked and not a single question from DSA was asked.
Round 3 - HR 

(1 Question)

  • Q1. Questions about the company was asked. Candidate should have good knowledge about the company.

Interview Preparation Tips

Topics to prepare for Publicis Sapient Associate Software Engineer interview:
  • OS
  • DBMS
  • OOPS
Interview preparation tips for other job seekers - Its interview is on the easy side. Candidates should answer the questions confidently and they should be prepared to answer questions related to the project that they have mentioned in their resume.

Publicis Sapient interview questions for designations

 Associate Software Developer

 (4)

 Software Engineer

 (14)

 Associate Software Development Engineer

 (2)

 Senior Software Engineer

 (20)

 Software Engineer II

 (1)

 Software Development Engineer II

 (1)

 Software Engineer Level 1

 (1)

 Senior Software Test Engineer

 (1)

I appeared for an interview in Apr 2022.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

  • Q1. 

    Height of a Binary Tree

    You are provided with an arbitrary binary tree consisting of 'N' nodes where each node is associated with a certain value. The task is to determine the height of the tree.

    Explana...

  • Ans. 

    The height of a binary tree is the maximum number of edges from the root to a leaf node.

    • Traverse the tree recursively and keep track of the maximum height

    • If the current node is null, return 0

    • Otherwise, calculate the height of the left and right subtrees and return the maximum height plus 1

  • Answered by AI
  • Q2. 

    Trapping Rain Water Problem Statement

    You are given a long type array/list ARR of size N, representing an elevation map. The value ARR[i] denotes the elevation of the ith bar. Your task is to determine th...

  • Ans. 

    The question asks to calculate the total amount of rainwater that can be trapped in the given elevation map.

    • Iterate through the array and find the maximum height on the left and right side of each bar.

    • Calculate the amount of water that can be trapped on each bar by subtracting its height from the minimum of the maximum heights on both sides.

    • Sum up the trapped water for all bars and return the total amount.

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 45 minutes
Round difficulty - Medium

  • Q1. 

    Merge Two Sorted Arrays Problem Statement

    Given two sorted integer arrays ARR1 and ARR2 of size M and N, respectively, merge them into ARR1 as one sorted array. Assume that ARR1 has a size of M + N to hol...

  • Ans. 

    The task is to merge two sorted arrays into one sorted array.

    • Create a new array with size M + N to store the merged array

    • Use two pointers to iterate through the elements of ARR1 and ARR2

    • Compare the elements at the current pointers and add the smaller element to the new array

    • Move the pointer of the array from which the element was added

    • Repeat the process until all elements are merged

    • If there are remaining elements in AR...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Associate Software Engineer in NoidaEligibility criteriaAbove 6.5 CGPA, No backlogsPublicis Sapient interview preparation:Topics to prepare for the interview - Data Structures, Web Technology, OS, DBMS, Java, OOPSTime required to prepare for the interview - 5 monthsInterview preparation tips for other job seekers

Tip 1 : Just focus on Data structures mostly arrays, string and dp and practice at least 350 Questions
Tip 2 : Prepare topics related to web tech like HTML, CSS, Node Js
Tip 3 : Prepare Java, OOPS and if required then spring framework and jsp, servlets and do atleast 2 good projects

Application resume tips for other job seekers

Tip 1 : Everything should be clear and right what you have written on your resume.
Tip 2 : Have some projects on your resume and that projects should be done by you only and you should have proper knowledge of the tech and flow you have used in that projects.

Final outcome of the interviewSelected

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. React custom hooks, react memo, use callback
Round 2 - Coding Test 

Creating a card component using react and rendering a list of people using that card

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

I applied via Campus Placement and was interviewed before Sep 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Do not use an unprofessional email address such as cool_boy@email.com. It shows a lack of professionalism by the candidate.
View all tips
Round 2 - Coding Test 

30 question mCQ for online assessment

Round 3 - Coding Test 

3 codes for online assessment and MCQ

Round 4 - Technical 

(1 Question)

  • Q1. He ask about project and string related coding questions

I applied via Naukri.com and was interviewed before Oct 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. They asked about the machine test and advance javascript like promises, async, await, hooks in react, virtual dom, component lifecycle

Interview Preparation Tips

Interview preparation tips for other job seekers - All good just excel you skills in javascript and react

Interview questions from similar companies

I appeared for an interview in Oct 2016.

Interview Questionnaire 

14 Questions

  • Q1. Tell me something about yourself.
  • Ans. 

    I am a recent graduate with a degree in Computer Science and a passion for coding and problem-solving.

    • Graduated with a degree in Computer Science

    • Passionate about coding and problem-solving

    • Completed internships in software development

    • Familiar with programming languages like Java, Python, and C++

  • Answered by AI
  • Q2. Walk me over your strengths and weaknesses.
  • Ans. 

    My strengths include problem-solving skills and attention to detail. My weaknesses include public speaking and time management.

    • Strengths: problem-solving skills

    • Strengths: attention to detail

    • Weaknesses: public speaking

    • Weaknesses: time management

  • Answered by AI
  • Q3. Why are you opting for CGI (a consultancy firm)? Why the sudden shift of interest?
  • Ans. 

    I am opting for CGI because of their reputation for providing challenging projects and opportunities for growth.

    • CGI is known for offering challenging projects that will help me enhance my skills and knowledge.

    • I am interested in working with a diverse range of clients and industries, which CGI can provide.

    • CGI's emphasis on professional development and training programs align with my career goals.

    • I believe CGI's collabor...

  • Answered by AI
  • Q4. Tell me about the internships that you have done.
  • Ans. 

    I have completed internships at two different software companies, where I gained hands-on experience in software development and learned about different programming languages and technologies.

    • Internship at Company A involved working on a web application using Java and Spring framework

    • Internship at Company B focused on mobile app development using React Native and Firebase

    • Both internships provided me with valuable exper...

  • Answered by AI
  • Q5. A response to a real life business problematic situation- you are a fresher and in the first day of your job: you face huge ruckus and burden over close deadline, unfinished project work, unsatisfactory cl...
  • Q6. How do you handle stress?
  • Ans. 

    I handle stress by practicing mindfulness, taking breaks, and seeking support from colleagues.

    • Practicing mindfulness through meditation and deep breathing exercises

    • Taking short breaks to clear my mind and recharge

    • Seeking support from colleagues or mentors to discuss challenges and brainstorm solutions

  • Answered by AI
  • Q7. Why should I hire you instead of all the others?
  • Ans. 

    I have a strong technical background, excellent problem-solving skills, and a passion for software development.

    • I have a Bachelor's degree in Computer Science with a focus on software engineering.

    • I have completed multiple internships where I gained hands-on experience in developing software applications.

    • I have a proven track record of successfully completing projects on time and exceeding expectations.

  • Answered by AI
  • Q8. Are you up for relocating for the interest of the company?
  • Ans. 

    Yes, I am open to relocating for the interest of the company.

    • I am willing to relocate for career growth opportunities

    • I understand the importance of being flexible for the company's needs

    • I have relocated for previous job opportunities and have adapted well to new environments

  • Answered by AI
  • Q9. Any questions you got to ask me.
  • Q10. Tell something about yourself.
  • Ans. 

    I am a recent graduate with a degree in Computer Science and a passion for coding and problem-solving.

    • Graduated with a degree in Computer Science

    • Passionate about coding and problem-solving

    • Completed internships in software development

    • Proficient in programming languages like Java, Python, and C++

  • Answered by AI
  • Q11. Why CGI?
  • Ans. 

    CGI is a leading global IT and business consulting services firm.

    • CGI has a strong reputation in the industry for delivering high-quality software solutions.

    • CGI offers a wide range of opportunities for career growth and development.

    • CGI has a diverse and inclusive work culture that fosters collaboration and innovation.

    • CGI has a global presence, providing exposure to international projects and clients.

    • CGI values employee ...

  • Answered by AI
  • Q12. What do you know about the company?
  • Ans. 

    The company is a leading software development firm specializing in creating innovative solutions for various industries.

    • Specializes in creating innovative software solutions

    • Works with clients from various industries

    • Known for high-quality and reliable products

    • Has a strong team of software engineers and developers

  • Answered by AI
  • Q13. What is your motivation?
  • Ans. 

    My motivation stems from my passion for problem-solving and creating innovative solutions.

    • Passion for problem-solving drives me to constantly seek new challenges

    • Desire to create innovative solutions that improve efficiency and user experience

    • Inspiration from successful projects and positive feedback from users

  • Answered by AI
  • Q14. Where do you see yourself in five years time?
  • Ans. 

    In five years, I see myself as a senior software engineer leading a team of developers on innovative projects.

    • Continuing to enhance my technical skills through ongoing learning and certifications

    • Taking on more leadership responsibilities within the team

    • Contributing to the development of cutting-edge software solutions

    • Mentoring junior team members to help them grow in their careers

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: The first round was an online test conducted by hirepro.in. The round was 2 hours and went pretty swift aside from some really 'make or break' questions. As a mechanical Engineer and having next to little proficiency in programming, I was not astounded to find myself biting nails and clicking Flukes while glancing at the ever-incomprehensible coding questions. With each question, it seemed like I was brandishing the bat in the air for all kinds of balls, whether bouncer or Yorker, just for the only reason "I can't make a single thing out of these questions, let alone answer". The verbal and quantitative part was friendlier on me. I was able to answer almost 90% in those two sections. The questions framed were basic and doable with a month

I appeared for an interview in Oct 2016.

Interview Questionnaire 

14 Questions

  • Q1. Tell me something about yourself.
  • Ans. 

    I am a software engineer with experience in Java and Python.

    • I have a Bachelor's degree in Computer Science.

    • I have worked on projects involving web development and data analysis.

    • I am passionate about learning new technologies and solving complex problems.

    • I am a team player and enjoy collaborating with others to achieve common goals.

  • Answered by AI
  • Q2. Walk me over your strengths and weaknesses.
  • Ans. 

    My strengths include problem-solving, adaptability, and teamwork. My weaknesses include public speaking and time management.

    • Strengths: problem-solving, adaptability, teamwork

    • Examples: I have experience in solving complex coding problems, I am able to adapt to new technologies quickly, I work well in a team environment

    • Weaknesses: public speaking, time management

    • Examples: I struggle with presenting in front of large grou...

  • Answered by AI
  • Q3. Why are you opting for CGI (a consultancy firm)? Why the sudden shift of interest?
  • Ans. 

    I am opting for CGI because of their reputation in the industry and the opportunities they offer for growth and learning.

    • CGI has a strong reputation in the industry for providing quality services to clients

    • CGI offers a wide range of opportunities for growth and learning, including training programs and mentorship

    • I am excited about the chance to work with a diverse group of professionals and learn from their experiences

    • ...

  • Answered by AI
  • Q4. Tell me about the internships that you have done.
  • Ans. 

    I have completed internships at two different software companies.

    • Internship at Company A involved developing a web application using Java and Spring framework.

    • Internship at Company B focused on mobile app development using React Native.

    • Both internships provided hands-on experience with software development lifecycle and teamwork.

  • Answered by AI
  • Q5. A response to a real life business problematic situation- you are a fresher and in the first day of your job: you face huge ruckus and burden over close deadline, unfinished project work, unsatisfactory cl...
  • Q6. How do you handle stress?
  • Ans. 

    I handle stress by prioritizing tasks, taking breaks, and seeking support when needed.

    • I prioritize tasks and focus on the most important ones first

    • I take breaks to clear my mind and recharge

    • I seek support from colleagues or supervisors when necessary

    • I practice mindfulness and meditation to manage stress

    • I maintain a healthy work-life balance to prevent burnout

  • Answered by AI
  • Q7. Why should I hire you instead of all the others?
  • Ans. 

    I have a strong technical background, a passion for problem-solving, and a proven track record of delivering high-quality software solutions.

    • I have a Bachelor's degree in Computer Science and relevant internship experience.

    • I excel in programming languages such as Java, Python, and C++.

    • I have successfully completed projects that required complex problem-solving skills, such as developing a mobile application for a local

  • Answered by AI
  • Q8. Are you up for relocating for the interest of the company?
  • Ans. 

    Yes, I am open to relocating for the company if required.

    • I am willing to relocate for the right opportunity and growth.

    • I understand the importance of being flexible and adaptable in the tech industry.

    • I have relocated for previous job opportunities and have had positive experiences.

    • I am excited about the possibility of exploring new locations and cultures.

  • Answered by AI
  • Q9. Any questions you got to ask me.
  • Q10. Tell something about yourself.
  • Ans. 

    I am a dedicated and passionate software engineer with experience in developing web applications.

    • I have a Bachelor's degree in Computer Science.

    • I have worked on projects using technologies such as Java, Python, and JavaScript.

    • I am skilled in front-end development using React and Angular.

    • I have experience working in Agile development environments.

    • I am a quick learner and enjoy working in a team environment.

  • Answered by AI
  • Q11. Why CGI?
  • Ans. 

    CGI is a leading global IT and business consulting services firm.

    • CGI has a strong reputation in the industry for delivering high-quality software solutions.

    • CGI offers a wide range of opportunities for career growth and development.

    • CGI has a global presence, allowing for exposure to diverse projects and clients.

    • CGI values innovation and encourages employees to think creatively.

    • CGI provides a supportive and collaborative

  • Answered by AI
  • Q12. What do you know about the company?
  • Ans. 

    The company is a leading software development firm specializing in creating innovative solutions for various industries.

    • The company was founded in 2005 and has since grown to become a key player in the software development industry.

    • They have a strong focus on creating cutting-edge solutions for clients in industries such as healthcare, finance, and retail.

    • The company values innovation, teamwork, and customer satisfacti...

  • Answered by AI
  • Q13. What is your motivation?
  • Ans. 

    My motivation is to constantly learn and improve my skills while contributing to the success of the team and the company.

    • I am driven by the desire to learn and grow professionally

    • I am motivated by the opportunity to work with a talented team and contribute to the success of the company

    • I am passionate about technology and enjoy solving complex problems

    • I am motivated by the satisfaction of seeing my work make a positive ...

  • Answered by AI
  • Q14. Where do you see yourself in five years time?
  • Ans. 

    In five years, I see myself as a senior software engineer, leading a team of developers to create innovative solutions.

    • Continuing to learn and grow my skills in software development

    • Taking on more responsibility and leadership roles

    • Contributing to the success of the company through my work

    • Mentoring and guiding junior developers

    • Staying up-to-date with the latest technologies and trends in the industry

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: The first round was an online test conducted by hirepro.in. The round was 2 hours and went pretty swift aside from some really 'make or break' questions. As a mechanical Engineer and having next to little proficiency in programming, I was not astounded to find myself biting nails and clicking Flukes while glancing at the ever-incomprehensible coding questions. With each question, it seemed like I was brandishing the bat in the air for all kinds of balls, whether bouncer or Yorker, just for the only reason "I can't make a single thing out of these questions, let alone answer". The verbal and quantitative part was friendlier on me. I was able to answer almost 90% in those two sections. The questions framed were basic and doable with a month

Publicis Sapient Interview FAQs

How many rounds are there in Publicis Sapient Associate Software Engineer interview?
Publicis Sapient interview process usually has 3-4 rounds. The most common rounds in the Publicis Sapient interview process are Resume Shortlist, Coding Test and Technical.
What are the top questions asked in Publicis Sapient Associate Software Engineer interview?

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

  1. Where are the job locations of Publicis sapient in Ind...read more
  2. What is Event loop? What is higher order componen...read more
  3. Questions from CS fundamentals were mostly asked and not a single question from...read more

Tell us how to improve this page.

Publicis Sapient Associate Software Engineer Interview Process

based on 6 interviews

2 Interview rounds

  • Resume Shortlist Round
  • Coding Test Round
View more
Join Publicis Sapient Let's imagine the future together.
Publicis Sapient Associate Software Engineer Salary
based on 93 salaries
₹4.6 L/yr - ₹16 L/yr
93% more than the average Associate Software Engineer Salary in India
View more details

Publicis Sapient Associate Software Engineer Reviews and Ratings

based on 19 reviews

4.2/5

Rating in categories

4.3

Skill development

4.0

Work-life balance

3.5

Salary

4.0

Job security

4.0

Company culture

3.4

Promotions

3.6

Work satisfaction

Explore 19 Reviews and Ratings
Senior Associate
2.1k salaries
unlock blur

₹11 L/yr - ₹40 L/yr

Associate Technology L2
1.5k salaries
unlock blur

₹6.5 L/yr - ₹20 L/yr

Senior Associate Technology L1
1.2k salaries
unlock blur

₹10.3 L/yr - ₹32 L/yr

Senior Software Engineer
779 salaries
unlock blur

₹10 L/yr - ₹38 L/yr

Senior Associate 2
638 salaries
unlock blur

₹14.1 L/yr - ₹41 L/yr

Explore more salaries
Compare Publicis Sapient with

Genpact

3.8
Compare

DXC Technology

3.7
Compare

Virtusa Consulting Services

3.7
Compare

CGI Group

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