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 Full Stack Software Developer Interview Questions and Answers

Updated 12 Dec 2022

Publicis Sapient Full Stack Software Developer Interview Experiences

1 interview found

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

I applied via Naukri.com and was interviewed in Jun 2022. There were 4 interview rounds.

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 

Data structure Hash Map problem and java 8 code

Round 3 - Coding Test 

Coding singlton code and immutable code hashcode equals java 8 code data structure spring boot microservicis

Round 4 - HR 

(2 Questions)

  • Q1. How was your project info details
  • Q2. What about your qualifications

Interview Preparation Tips

Interview preparation tips for other job seekers - Java 8 microservicis spring boot concept should be strong knowledge

Interview questions from similar companies

I applied via Recruitment Consultant and was interviewed in May 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Abstract class vs interface, cte vs temp table, dependency injection , delete and truncate, action filters , primary , unique key , foreign key , oops concepts.

Interview Preparation Tips

Interview preparation tips for other job seekers - It is easy process.

I applied via Naukri.com

Round 1 - Technical 

(2 Questions)

  • Q1. I applied online for the post of software developer, interview was conducted by First IPO on behalf of Mindtree.
  • Q2. Basics of OOPs, program o find out prime number, basic coding problem asks for output, closure, arrays in JavaScript

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic of oops like static and instance member, polymorphism, inheritance.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I applied via Company Website

Round 1 - Coding Test 

It was javascript and reactjs. multiple choices and coding test

Round 2 - Technical 

(1 Question)

  • Q1. Mostly advanced javascript questions
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

Technical related questions

Round 2 - Group Discussion 

In Ai related question

Round 3 - Technical 

(2 Questions)

  • Q1. Java and Backend
  • Q2. MySQL and mongodb
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

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

Round 1 - Technical 

(3 Questions)

  • Q1. Consumer producer
  • Q2. Garbage collection
  • Q3. Features of java 8
  • Ans. 

    Java 8 introduced several new features including lambda expressions, functional interfaces, streams, and default methods.

    • Lambda expressions allow for more concise code and easier parallel programming.

    • Functional interfaces enable the use of lambda expressions.

    • Streams provide a way to work with sequences of elements and perform operations on them.

    • Default methods allow interfaces to have method implementations.

    • Optional cl...

  • Answered by AI

Skills evaluated in this interview

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

Good morning sir have a you sir my name is hemant Ramchandra narkhede

Round 2 - Coding Test 

Java script simple frame

Round 3 - HR 

(2 Questions)

  • Q1. What are the different data types present in javascript?
  • Ans. 

    JavaScript has several data types including string, number, boolean, object, function, undefined, and null.

    • String: 'hello', '123'

    • Number: 123, 3.14

    • Boolean: true, false

    • Object: { key: 'value' }

    • Function: function() { }

    • Undefined: undefined

    • Null: null

  • Answered by AI
  • Q2. Difference between var and let keyword in javascript.
  • Ans. 

    var is function-scoped while let is block-scoped in JavaScript.

    • var keyword is function-scoped, meaning it is accessible throughout the function it is declared in.

    • let keyword is block-scoped, meaning it is only accessible within the block it is declared in.

    • Using var can lead to variable hoisting issues, while let provides more predictable behavior.

    • let allows for better variable scoping and reduces the risk of unintended

  • Answered by AI
Round 4 - One-on-one 

(2 Questions)

  • Q1. What are the advantages of pair programming?
  • Ans. 

    Pair programming promotes collaboration, knowledge sharing, and code quality.

    • Enhances code quality through immediate code review and feedback

    • Promotes knowledge sharing and learning from each other

    • Fosters collaboration and teamwork

    • Reduces the likelihood of bugs and errors

    • Increases productivity by leveraging two minds on the same problem

    • Helps in breaking down complex problems into smaller tasks

    • Improves communication skil

  • Answered by AI
  • Q2. How do you handle constructive feedback about your full-stack development projects?
Round 5 - Technical 

(2 Questions)

  • Q1. How do you identify bugs in your code?
  • Ans. 

    I use a combination of manual testing, unit testing, and debugging tools to identify bugs in my code.

    • Perform manual testing by running the code and checking for any unexpected behavior or errors.

    • Write unit tests to verify the functionality of individual components and catch any issues early on.

    • Utilize debugging tools like breakpoints, logging, and stack traces to track down the root cause of bugs.

    • Collaborate with team ...

  • Answered by AI
  • Q2. How long have you been coding primarily in Python?
  • Ans. 

    I have been coding primarily in Python for 5 years.

    • I started learning Python in college and have been using it extensively in my professional career.

    • I have worked on various projects using Python, including web development, data analysis, and automation.

    • I am proficient in Python libraries such as NumPy, Pandas, and Django.

  • Answered by AI
Round 6 - Case Study 

HR round full stack developer experience

Round 7 - Group Discussion 

Best atitude round questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Another source of career guidance is to consult a career counselor or coach. These are trained professionals who can help you with various aspects of your career development, such as exploring your options, setting your goals, making your plans, overcoming your challenges, and enhancing your skills.24 Aug

Skills evaluated in this interview

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Check whether a given graph is cyclic
  • Ans. 

    To check if a graph is cyclic, use depth-first search to detect back edges.

    • Perform a depth-first search on the graph and keep track of visited nodes and parent nodes.

    • If a visited node is encountered with a parent different from the current node, then the graph contains a cycle.

    • Example: For a graph with edges (A, B), (B, C), (C, A), the graph is cyclic.

  • Answered by AI
  • Q2. Factory design pattern question

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Easy
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:
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 - Aptitude Test 

It was Maths problems Aptitude

Round 3 - Coding Test 

@ simple coding questions were asked

Round 4 - One-on-one 

(1 Question)

  • Q1. It was behaviour Round

Interview Preparation Tips

Interview preparation tips for other job seekers - Questions were easy.
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. How do you do version upgrades
  • Ans. 

    I use version control systems like Git to manage code changes and upgrades.

    • I create a new branch for the upgrade to isolate changes from the main codebase.

    • I test the upgrade in the new branch to ensure compatibility and functionality.

    • I merge the upgraded code back into the main branch once testing is successful.

    • I document the changes made during the upgrade process for future reference.

  • Answered by AI
Round 2 - Behavioral 

(1 Question)

  • Q1. Can we make applications using on C# code
  • Ans. 

    Yes, applications can be made using C# code.

    • C# is a versatile programming language commonly used for developing applications.

    • C# can be used to create web applications, desktop applications, mobile apps, and more.

    • Popular frameworks like .NET and Xamarin support C# for application development.

  • Answered by AI

Skills evaluated in this interview

Publicis Sapient Interview FAQs

How many rounds are there in Publicis Sapient Full Stack Software Developer interview?
Publicis Sapient interview process usually has 4 rounds. The most common rounds in the Publicis Sapient interview process are Coding Test, Resume Shortlist and HR.

Tell us how to improve this page.

Publicis Sapient Full Stack Software Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Join Publicis Sapient Let's imagine the future together.
Publicis Sapient Full Stack Software Developer Salary
based on 7 salaries
₹6.6 L/yr - ₹22 L/yr
75% more than the average Full Stack Software Developer Salary in India
View more details

Publicis Sapient Full Stack Software Developer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

3.0

Job security

5.0

Company culture

3.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
Senior Associate
2.1k 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