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
3.5

based on 3.1k Reviews

Filter interviews by

Publicis Sapient Associate Technology L2 Interview Questions, Process, and Tips

Updated 19 Nov 2024

Top Publicis Sapient Associate Technology L2 Interview Questions and Answers

  • Q1. What is a SSR and CSR website and when to use which one.
  • Q2. How to enhance web performance of a page.
  • Q3. Write Singleton classes Write Rest API Find the repeating character in a string. Variables are inherited or not. Exception Handling Spring AOP Exception handling Completa ...read more
View all 12 questions

Publicis Sapient Associate Technology L2 Interview Experiences

27 interviews found

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

(4 Questions)

  • Q1. How you handle security in your application?
  • Ans. 

    I handle security in my application by implementing encryption, access controls, regular security audits, and staying updated on security best practices.

    • Implement encryption for sensitive data to protect it from unauthorized access

    • Use access controls to restrict user permissions and limit exposure of sensitive information

    • Conduct regular security audits to identify and address vulnerabilities

    • Stay updated on security bes...

  • Answered by AI
  • Q2. How can we make a class immutable?
  • Ans. 

    To make a class immutable, we can use final keyword for class, fields, and methods, make fields private, and avoid setters.

    • Use final keyword for class to prevent inheritance

    • Make fields private to restrict direct access

    • Avoid providing setter methods for fields

    • If fields are mutable objects, return a copy of the object instead of the original

  • Answered by AI
  • Q3. Design patterns you have used in your project.
  • Ans. 

    I have used the Singleton, Factory, and Observer design patterns in my project.

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

    • Factory pattern creates objects without specifying the exact class of object that will be created.

    • Observer pattern defines a one-to-many dependency between objects so that when one object changes state, all its dependents are notified and upda

  • Answered by AI
  • Q4. Memory manaagement in java.
  • Ans. 

    Memory management in Java involves automatic memory allocation and garbage collection.

    • Java uses automatic memory management through garbage collection to allocate and deallocate memory.

    • Memory is divided into stack and heap. Stack stores primitive types and references to objects, while heap stores objects.

    • Garbage collection in Java identifies and removes objects that are no longer needed, freeing up memory for new objec...

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Aem Architecture
  • Q2. Sling Models and Osgi
Round 2 - HR 

(1 Question)

  • Q1. Behavioral and Communication skills related

Interview Preparation Tips

Interview preparation tips for other job seekers - Always prepare based on provided JD

Associate Technology L2 Interview Questions Asked at Other Companies

Q1. What is a SSR and CSR website and when to use which one.
Q2. How to enhance web performance of a page.
Q3. Write Singleton classes Write Rest API Find the repeating charact ... read more
Q4. How you handle security in your application?
Q5. how does singleton pattern is used in spring. how do you connect ... read more
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Difference between monolithic and microservices?
  • Ans. 

    Monolithic architecture is a single unified unit, while microservices architecture breaks down the application into smaller, independent services.

    • Monolithic architecture is a single, indivisible unit where all components are interconnected and interdependent.

    • Microservices architecture breaks down the application into smaller, independent services that communicate with each other through APIs.

    • Monolithic applications are...

  • Answered by AI

Skills evaluated in this interview

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 - HR 

(1 Question)

  • Q1. Technical questions about js
Round 3 - Technical 

(1 Question)

  • Q1. Js and reactjs related
Round 4 - Technical 

(1 Question)

  • Q1. Js , react questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Overall good company but job security is concern in sapient, seen multiple people being laid off from here including me.

Publicis Sapient interview questions for designations

 Senior Associate Technology L2

 (5)

 Associate L2

 (1)

 Associate Technology L2 Automation

 (1)

 Associate Technology

 (8)

 Associate QA L2

 (3)

 Junior Associate Technology

 (7)

 Associate Technology L1

 (4)

 Associate Technology Trainee

 (2)

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

I applied via Referral and was interviewed before Jun 2023. There were 4 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Basic HTML, CSS and JS Questions
Round 2 - One-on-one 

(1 Question)

  • Q1. ReactJS - Hooks, HOC and Context API etc
Round 3 - One-on-one 

(1 Question)

  • Q1. Behavioural Questions
Round 4 - HR 

(1 Question)

  • Q1. Salary Negotiations

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Basics of HTML, CSS, JS and Tricky Behavioural Questions (DSA wasn't asked)

Get interview-ready with Top Publicis Sapient Interview Questions

Associate Technology L2 Interview Questions & Answers

user image Sayan Bhattacharjee

posted on 19 Nov 2024

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

I was interviewed before Nov 2023.

Round 1 - Technical 

(1 Question)

  • Q1. Many questions on core java, spring boot
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Mar 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. How does singleton pattern is used in spring. how do you connect the database in spring
  • Ans. 

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

    • In Spring, singleton pattern is used by default for all beans created through the Spring container.

    • This means that by default, Spring beans are singletons and only one instance is created and shared throughout the application.

    • To connect to a database in Spring, you can use the JDBC template or ORM framewor...

  • Answered by AI
  • Q2. How does hashmap works internally
  • Ans. 

    HashMap works internally by using a hash function to map keys to their corresponding values in an array of linked lists.

    • HashMap uses a hash function to determine the index of the array where the key-value pair will be stored.

    • In case of hash collisions, where multiple keys map to the same index, a linked list is used to store multiple entries at that index.

    • When retrieving a value, the hash function is used to find the c...

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

(1 Question)

  • Q1. Mostly experience driven scenario based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare the basic properly

Skills evaluated in this interview

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

Round 1 - Assignment 

Basic Core Java Questions, Input output based, Spring, Hibernate & Sql query output

Round 2 - One-on-one 

(1 Question)

  • Q1. Java oops, String immutable concepts, HashMap, HashSet ,Multithreading, Springboot Annotations,Transaction in Springboot,Hibernate basic qns,singleton pattern.
Round 3 - One-on-one 

(2 Questions)

  • Q1. Java collections,multithreading, spring mvc flow, springboot annotations
  • Q2. Code1-First repeating element in string code2-Implement singleton pattern code3-freqency of elements in array.

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview bit spring,springboot and hibernate qns are enough to clear this interview.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Feb 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Online MCQ test with mid level difficulty

Round 2 - Technical 

(2 Questions)

  • Q1. Internal working of a hashmap
  • Ans. 

    A hashmap is a data structure that allows for efficient retrieval of values based on their associated keys.

    • A hashmap uses a hash function to convert keys into array indices.

    • Collisions can occur when multiple keys hash to the same index.

    • To handle collisions, a hashmap typically uses linked lists or other data structures to store multiple values at the same index.

    • When retrieving a value, the hashmap uses the hash functio...

  • Answered by AI
  • Q2. Stream API and other Java 8 feature questions
Round 3 - HR 

(1 Question)

  • Q1. Project related and goal oriented scenario based questions

Skills evaluated in this interview

I applied via Approached by Company and was interviewed before Dec 2021. There were 4 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 - Assignment 

It was technical test containing of java 8 + Springboot

Round 3 - Technical 

(1 Question)

  • Q1. Technical round was about 2 hrs. I have a experince on angular as well as springboot + microservices. started with basic questions till implementation of the services with microservice arch. the level wa...
Round 4 - Technical 

(1 Question)

  • Q1. Second technical was coding + Manageral round given 2 codes which are general codes with java 8. and project related questions .

Interview Preparation Tips

Topics to prepare for Publicis Sapient Associate Technology L2 interview:
  • springboot
  • hava 8
  • Kafka
  • microservices
Interview preparation tips for other job seekers - sticks to your basics and upgrade as per market tech stack

What people are saying about Publicis Sapient

View All
a senior associate
2w
Removing 3 months work ex from resume?
yes
0%
no
0%
6 participants . poll closed
Got a question about Publicis Sapient?
Ask anonymously on communities.

Publicis Sapient Interview FAQs

How many rounds are there in Publicis Sapient Associate Technology L2 interview?
Publicis Sapient interview process usually has 2-3 rounds. The most common rounds in the Publicis Sapient interview process are Technical, Resume Shortlist and HR.
What are the top questions asked in Publicis Sapient Associate Technology L2 interview?

Some of the top questions asked at the Publicis Sapient Associate Technology L2 interview -

  1. What is a SSR and CSR website and when to use which o...read more
  2. How to enhance web performance of a pa...read more
  3. Write Singleton classes Write Rest API Find the repeating character in a strin...read more
How long is the Publicis Sapient Associate Technology L2 interview process?

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

Tell us how to improve this page.

Publicis Sapient Associate Technology L2 Interview Process

based on 16 interviews

4 Interview rounds

  • Technical Round - 1
  • Technical Round - 2
  • Technical Round - 3
  • HR Round
View more
Join Publicis Sapient Let's imagine the future together.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Accenture Interview Questions
3.9
 • 8.1k Interviews
Infosys Interview Questions
3.7
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Capgemini Interview Questions
3.8
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
View all
Publicis Sapient Associate Technology L2 Salary
based on 1.5k salaries
₹6.5 L/yr - ₹20 L/yr
At par with the average Associate Technology L2 Salary in India
View more details

Publicis Sapient Associate Technology L2 Reviews and Ratings

based on 179 reviews

3.4/5

Rating in categories

3.5

Skill development

3.4

Work-life balance

3.4

Salary

2.8

Job security

3.2

Company culture

2.5

Promotions

2.9

Work satisfaction

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

₹10.9 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.1 L/yr - ₹32 L/yr

Senior Software Engineer
728 salaries
unlock blur

₹9.2 L/yr - ₹36 L/yr

Senior Associate 2
608 salaries
unlock blur

₹14.7 L/yr - ₹41 L/yr

Explore more salaries
Compare Publicis Sapient with

Accenture

3.9
Compare

IBM

4.0
Compare

TCS

3.7
Compare

Infosys

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