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 Trainee Interview Questions, Process, and Tips

Updated 3 Jul 2021

Top Publicis Sapient Associate Technology Trainee Interview Questions and Answers

Publicis Sapient Associate Technology Trainee Interview Experiences

2 interviews found

Interview Questionnaire 

2 Questions

  • Q1. Java 8
  • Q2. Core Java related

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice

Associate Technology Trainee Interview Questions & Answers

user image Mahi Kiran Reddy Siddareddy

posted on 4 Sep 2015

Interview Questionnaire 

11 Questions

  • Q1. What is the difference between Function definition and declaration
  • Ans. 

    Function definition specifies the implementation of a function, while declaration provides the function signature.

    • Function definition includes the function body, while declaration only includes the function signature.

    • Function definition is used to define the behavior of a function, while declaration is used to announce the existence of a function.

    • Function definition can only appear once in a program, while declaration ...

  • Answered by AI
  • Q2. How to swap numbers without using temporary variable
  • Ans. 

    Swapping numbers without using a temporary variable

    • Use addition and subtraction to swap the numbers

    • Example: a = 5, b = 10. a = a + b (15), b = a - b (5), a = a - b (10)

    • Alternatively, use bitwise XOR operation to swap the numbers

    • Example: a = 5, b = 10. a = a ^ b (15), b = a ^ b (5), a = a ^ b (10)

  • Answered by AI
  • Q3. Write a programme for Fibonacci series, length of string
  • Ans. 

    This program generates a Fibonacci series up to a given length.

    • Use an array to store the Fibonacci series

    • Initialize the first two elements of the array as 0 and 1

    • Use a loop to generate the subsequent elements of the series

    • Stop the loop when the desired length is reached

  • Answered by AI
  • Q4. What are data types and pointers
  • Ans. 

    Data types are classifications of data that determine the type of values that can be stored and manipulated. Pointers are variables that store memory addresses.

    • Data types include integers, floating-point numbers, characters, and booleans.

    • Pointers are used to store memory addresses of variables or objects.

    • Example: int num = 10; int *ptr = # // ptr stores the memory address of num

  • Answered by AI
  • Q5. What is an array
  • Ans. 

    An array is a data structure that stores a collection of elements of the same type in a contiguous block of memory.

    • Arrays can be of any data type, including strings.

    • Elements in an array are accessed using an index starting from 0.

    • Arrays have a fixed size, which is determined at the time of declaration.

    • Arrays can be multidimensional, allowing for the storage of data in multiple dimensions.

    • Example: ['apple', 'banana', 'o

  • Answered by AI
  • Q6. Some aptitude questions
  • Q7. Tell me about yourself
  • Q8. Why do you want to join sapient
  • Q9. Explain how did you face one complex situation in your life
  • Ans. 

    I faced a complex situation when I had to lead a team to complete a high-pressure project within a tight deadline.

    • I was assigned as the project manager for a software development project that had a strict deadline.

    • The project involved integrating multiple systems and coordinating with different teams.

    • We faced unexpected technical challenges and had to make quick decisions to overcome them.

    • I had to effectively communica...

  • Answered by AI
  • Q10. What are your interests
  • Q11. Do you have any questions

Interview Preparation Tips

Round: Test
Experience: The test consisted of Aptitude section, Verbal reasoning, Logical reasoning, Programming section.
Tips: Prepare for AMCAT

General Tips: Not too difficult. Prepare well for Aptitude and HR Round
Skills: Aptitude, programming knowledge, communication skill
College Name: NIT Bhopal
Motivation: Nice Work Culture

Skills evaluated in this interview

Associate Technology Trainee Interview Questions Asked at Other Companies

Q1. What is the difference between Function definition and declaratio ... read more
Q2. How to swap numbers without using temporary variable
Q3. Write a programme for Fibonacci series, length of string
Q4. What are data types and pointers
Q5. What is an array

Interview questions from similar companies

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

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. List the IT profiles that you have worked upon.
  • Q2. What are the major skills of a Php Developer?
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is rdbms in sql
  • Ans. 

    RDBMS stands for Relational Database Management System in SQL.

    • RDBMS is a type of database management system that stores data in a structured format using rows and columns.

    • It allows users to establish relationships between different data sets.

    • SQL (Structured Query Language) is commonly used to interact with RDBMS.

    • Examples of RDBMS in SQL include MySQL, Oracle, and SQL Server.

  • Answered by AI
  • Q2. What is polymorphism
  • Ans. 

    Polymorphism is the ability of a single function or method to operate on different types of data.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • It enables a single interface to represent multiple data types.

    • Examples include method overloading and method overriding in object-oriented programming.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. 1. Current Project architecture 2. How do you design micro services to scalable 3. How do you ensure ci/cd working as expected 4. What is oauth 5. Which Authorization servers you worked
  • Ans. 

    Answering questions related to current project architecture, designing scalable micro services, ensuring CI/CD, OAuth, and authorization servers.

    • Current project architecture involves a detailed analysis of the existing system, identifying key components, and designing a scalable solution.

    • Designing micro services to be scalable requires breaking down the application into smaller, independent services that can be easily ...

  • Answered by AI

Skills evaluated in this interview

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 Nov 2022. There were 3 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 - Technical 

(4 Questions)

  • Q1. What is a trigger
  • Ans. 

    A trigger is an event or condition that initiates a specific action or process.

    • Triggers are commonly used in programming and databases.

    • They can be used to automate tasks or initiate processes based on certain conditions.

    • Examples include a trigger that sends an email when a new user registers on a website, or a trigger that updates a database record when a certain field is changed.

    • Triggers can also be used in marketing ...

  • Answered by AI
  • Q2. What is right outer join
  • Ans. 

    Right outer join returns all records from the right table and matching records from the left table.

    • It includes all the records from the right table and only matching records from the left table.

    • If there is no match in the left table, the result will contain NULL values.

    • It is denoted by RIGHT OUTER JOIN or RIGHT JOIN keyword in SQL.

    • Example: SELECT * FROM right_table RIGHT JOIN left_table ON right_table.id = left_table.i

  • Answered by AI
  • Q3. What are types in Oracle
  • Ans. 

    Types in Oracle are data types that define the type of data that can be stored in a column or variable.

    • Oracle has several built-in data types such as NUMBER, VARCHAR2, DATE, and CLOB.

    • NUMBER is used to store numeric values, VARCHAR2 is used to store character strings, DATE is used to store dates and times, and CLOB is used to store large character strings.

    • Oracle also supports user-defined data types, which can be create...

  • Answered by AI
  • Q4. What is an array type
  • Ans. 

    An array type is a data type that stores a collection of elements of the same data type in a contiguous memory location.

    • Arrays can be one-dimensional or multi-dimensional

    • Elements in an array can be accessed using an index

    • Arrays can be initialized with a fixed size or dynamically resized

    • Examples of array types include int[], double[], and string[]

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. About yourself and last company

Interview Preparation Tips

Interview preparation tips for other job seekers - Technical round is bit difficult, review all the plsql concepts

Skills evaluated in this interview

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

Round 1 - Technical 

(1 Question)

  • Q1. Oops concept,WPF, basic c#, project based scenarios, multi threading, design patterns, solid principles,
Round 2 - Technical 

(1 Question)

  • Q1. Project based scenarios for design patterns and solid principles
Round 3 - HR 

(1 Question)

  • Q1. Salary negotiation, date of joining

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on c# basics along with project based scenarios for design patterns and solid principles
Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Technical stack worked upon, explain current project architecture, pillers of software architecture , How do you implement security in your project

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident while responding to question, Let your resume reflect exact knowledge you have.

Interview Questionnaire 

1 Question

  • Q1. In-depth basic questions on Apex, Lightning, Asynchronous Process, Permissions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident when you are answering, and show them you are ready to learn and work on new things.

Interview Questionnaire 

2 Questions

  • Q1. Was related to Microsoft Dynamics Functional Finance. Spoke about my strengths and asked what the company has to offer, apart from which was asked a few scenarios
  • Q2. Spoke to Manager on my role when selected and my aspirations going forward and if the company has the opportunity to explore my potential

Publicis Sapient Interview FAQs

What are the top questions asked in Publicis Sapient Associate Technology Trainee interview?

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

  1. What is the difference between Function definition and declarat...read more
  2. How to swap numbers without using temporary varia...read more
  3. Write a programme for Fibonacci series, length of str...read more

Tell us how to improve this page.

Join Publicis Sapient Let's imagine the future together.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.9
 • 8.2k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
View all
Senior Associate
2.2k salaries
unlock blur

₹11 L/yr - ₹37.8 L/yr

Associate Technology L2
1.5k salaries
unlock blur

₹5.1 L/yr - ₹20 L/yr

Senior Associate Technology L1
1.2k salaries
unlock blur

₹10 L/yr - ₹32 L/yr

Senior Software Engineer
731 salaries
unlock blur

₹9.3 L/yr - ₹37 L/yr

Senior Associate 2
614 salaries
unlock blur

₹14.1 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.6
Compare
Did you find this page helpful?
Yes No
write
Share an Interview