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

Updated 16 Oct 2015

Publicis Sapient Consultant Interview Experiences

1 interview found

Consultant Interview Questions & Answers

user image Aaditya Gupta

posted on 14 Oct 2015

Interview Questionnaire 

20 Questions

  • Q1. What is Difference between C,C++?
  • Ans. 

    C is a procedural programming language while C++ is an object-oriented programming language.

    • C is a low-level language while C++ is a high-level language.

    • C++ supports object-oriented programming concepts like classes, inheritance, and polymorphism.

    • C++ has better support for exception handling and templates.

    • C++ is more complex than C and requires more memory.

    • C++ is used for developing applications like video games, while...

  • Answered by AI
  • Q2. What is a class?
  • Ans. 

    A class is a blueprint for creating objects that have similar attributes and behaviors.

    • Classes are used in object-oriented programming.

    • They define the properties and methods that objects of that class will have.

    • Objects are instances of a class.

    • Classes can inherit properties and methods from other classes.

    • Examples of classes include 'Person', 'Car', and 'Animal'.

  • Answered by AI
  • Q3. What is an object?
  • Ans. 

    An object is a self-contained entity that contains data and behavior.

    • An object is an instance of a class.

    • It has attributes (data) and methods (behavior).

    • Objects can interact with each other through their methods.

    • Examples include a car object with attributes like color and model, and methods like start and stop.

    • Another example is a person object with attributes like name and age, and methods like walk and talk.

  • Answered by AI
  • Q4. What is static variable?
  • Ans. 

    A variable that is associated with a class rather than with instances of the class.

    • Static variables are declared using the static keyword.

    • They are initialized only once, at the start of the program execution.

    • They retain their value throughout the program's execution.

    • They can be accessed without creating an instance of the class.

    • Example: public static int count = 0;

  • Answered by AI
  • Q5. What is difference between Static and Global Vaiable?
  • Ans. 

    Static variables have local scope but retain their value between function calls, while global variables have global scope.

    • Static variables are declared inside a function and retain their value between function calls

    • Global variables are declared outside of any function and can be accessed from any part of the program

    • Static variables have local scope, while global variables have global scope

    • Static variables are initializ...

  • Answered by AI
  • Q6. What are pointers?
  • Ans. 

    Pointers are variables that store memory addresses of other variables.

    • Pointers allow for dynamic memory allocation and manipulation.

    • They are commonly used in programming languages like C and C++.

    • Example: int *ptr; // declares a pointer to an integer variable

    • Example: ptr = # // assigns the memory address of num to ptr

    • Example: *ptr = 5; // assigns the value 5 to the variable pointed to by ptr

  • Answered by AI
  • Q7. What are structures?
  • Ans. 

    Structures are arrangements of elements that form a framework or framework-like support.

    • Structures can be found in various fields such as engineering, architecture, and biology.

    • They can be made of different materials such as steel, wood, or bone.

    • Examples include bridges, buildings, and the skeletal system.

    • Structures can be designed to withstand different types of forces such as compression, tension, or bending.

  • Answered by AI
  • Q8. What is a stack and various operations on it?
  • Ans. 

    A stack is a data structure that follows the Last In First Out (LIFO) principle.

    • Push: adds an element to the top of the stack

    • Pop: removes the top element from the stack

    • Peek: returns the top element without removing it

    • IsEmpty: checks if the stack is empty

    • Size: returns the number of elements in the stack

  • Answered by AI
  • Q9. What are 3 steps for using function in c?
  • Ans. 

    Three steps for using functions in C.

    • Declare the function with its return type, name, and parameters.

    • Define the function by writing the code for it.

    • Call the function by using its name and passing arguments if necessary.

  • Answered by AI
  • Q10. What is limit for no of arguments passed to functions? if limit is 10 den how to pass more parameters? Ans:- either Array or Structure
  • Ans. 

    The limit for the number of arguments passed to functions is not fixed. Arrays or structures can be used to pass more parameters.

    • The limit for the number of arguments passed to functions is not fixed and depends on the programming language and system architecture.

    • In C programming language, there is no limit on the number of arguments that can be passed to a function.

    • In Java, the maximum number of arguments that can be ...

  • Answered by AI
  • Q11. What is union?
  • Ans. 

    A union is an organization formed by workers to protect their rights and interests in the workplace.

    • Unions negotiate with employers for better wages, benefits, and working conditions.

    • They also provide support and representation for workers in disputes with management.

    • Membership in a union is voluntary, but members pay dues to support the union's activities.

    • Unions can be industry-specific, such as the United Auto Worker...

  • Answered by AI
  • Q12. What is difference between if else and switch case statements?
  • Ans. 

    if else is used for simple conditions while switch case is used for multiple conditions.

    • if else is a sequential decision-making statement while switch case is a multi-branch decision-making statement

    • if else is used when there are only a few conditions to be checked while switch case is used when there are multiple conditions to be checked

    • if else can have multiple conditions in a single statement while switch case can o...

  • Answered by AI
  • Q13. What are member functions?
  • Ans. 

    Member functions are functions that are defined inside a class and can access the class's private and protected members.

    • Member functions are also known as methods.

    • They can be used to manipulate the data members of an object.

    • They can be overloaded, meaning multiple functions with the same name but different parameters can exist within a class.

    • They can be declared as const, meaning they do not modify the object's state.

    • E...

  • Answered by AI
  • Q14. Find the output:- a=5;b=4;c=++a+b--; find c?
  • Ans. 

    Find the output of c=++a+b-- where a=5 and b=4.

    • The value of a is incremented by 1 before the addition operation

    • The value of b is decremented by 1 after the addition operation

    • The final value of c is 10

    • The value of a becomes 6 and the value of b becomes 3

  • Answered by AI
  • Q15. Plant 10 plants in 5 rows such that each row has 4 plants
  • Ans. 

    10 plants can be planted in 5 rows with 4 plants in each row.

    • Divide the plants into groups of 4.

    • Arrange the groups in 5 rows.

    • Each row will have 4 plants.

  • Answered by AI
  • Q16. There is 2 pot one red and one blue. one pot contains tressure. Two statement are given 1. only one of the statement is correct. 2. Blue pot has the tressure. Find the tressure?
  • Q17. Exceptions handling in java?
  • Ans. 

    Exceptions handling is a mechanism to handle runtime errors in Java programs.

    • Exceptions are objects that are thrown at runtime when an error occurs

    • Java provides try-catch-finally blocks to handle exceptions

    • Checked exceptions must be handled or declared in the method signature

    • Unchecked exceptions can be handled or left unhandled

    • Custom exceptions can be created by extending the Exception class

  • Answered by AI
  • Q18. Run me through your resume
  • Ans. 

    I have experience in project management, data analysis, and consulting across various industries.

    • Managed multiple projects simultaneously, ensuring timely delivery and client satisfaction

    • Analyzed data to identify trends and provide insights for clients

    • Consulted with clients to develop and implement strategies for growth and efficiency

    • Worked with clients in industries such as healthcare, finance, and retail

    • Collaborated ...

  • Answered by AI
  • Q19. Mostly my nterview was project based. He asked me to explain me my project. My contribution in it
  • Q20. What are your 5 year plans
  • Ans. 

    To gain experience in consulting and develop skills in project management, team leadership, and client relations.

    • Gain experience in consulting

    • Develop skills in project management

    • Develop skills in team leadership

    • Develop skills in client relations

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Written Test consists of following sections:
Technical sections had questions from almost all the sections(C, C++, DBMS, DS, OS)
Quantitative aptitude’s questions were good.. All were almost of R. S. Aggarwal’s level.
Logical reasoning and verbal ability was good.. Some questions were little tough.
Tips: Try to be fast n practice Quantitative aptitude to increase speed..

Round: Technical Interview
Experience: Technical Interview was conducted on skype. I was able to answer most of the questions. And if i could not answer i tried to explain my approach using examples...It lasted for 50 mins..

Tips: Brush up basics knowledge of C,C++ and be confident of what you know. And try to explain your approach if you couldn't tell answer.

Round: HR Interview
Experience: This interview was also through skype. You can drive this Interview towards the direction you want... This interview also lasted for 50 mins... I explained him my project.
Tips: Just be cool.. He was just checking your confidence n spirit to complete the task given to you..

All the best!!!!

General Tips: Practice Quant regularly from Rs.Agrawal, solve questions on DBMS and C,C++ from India Bix.. Test was conducted by AMCAT so try to find if its questions are available on internet.
Skills: C,C++
College Name: NIT Raipur
Motivation: Its clients which are AUDI, Ferrari, Coca-cola,Unilever.
Funny Moments: To try to make me comfortable he asked me weather i like coke or pepsi. He asked why? i said bcoz i feel coke has little less soda content in it.:P Next when i told him my hobbies are watching sitcoms he asked which sitcoms have u watched. I started naming sitcoms he had to intreuppt me.. den asked which one u liked best n y i was telling him the reason then in between he asked me about my project n i thought it was about sitcom so i was answering him about sitcom rather than my project then after a big confusion i co

Skills evaluated in this interview

Interview questions from similar companies

Interview Questionnaire 

2 Questions

  • Q1. What's a Single Ops tool?
  • Ans. 

    Single Ops tool is a software that helps businesses manage their operations from a single platform.

    • It streamlines processes and improves efficiency

    • It can include features like scheduling, inventory management, and invoicing

    • Examples include ServiceTitan, Jobber, and Housecall Pro

  • Answered by AI
  • Q2. Tell me about yourself
  • Ans. 

    I am a dedicated and hardworking individual with a passion for learning and growth.

    • I have a background in marketing and have worked in the industry for 5 years.

    • I am currently pursuing a Master's degree in Business Administration to further my skills and knowledge.

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

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: We had screening test in which 15 out of 40 were shortlisted
Tips: Be quick , skip the difficult ones
Duration: 20 minutes
Total Questions: 60

Round: Group Discussion
Experience: Had a brief discussion on the topic.Started the conversation and did positive contribution.
Tips: Speak with confidence , maintain eye contact with everyone .
Duration: 15 minutes

Round: Technical Interview
Experience: Have been asked around 10-15 questions , difficulty is moderate

Round: HR Interview
Experience: Open loop questions
Tips: Be realistic and keep it short

College Name: Malla Reddy Institute Of Engineering & Technology ( MRIET )

Skills evaluated in this interview

Associate Interview Questions & Answers

Capgemini user image Vivek kumar Singh

posted on 26 Jul 2017

Interview Questionnaire 

1 Question

  • Q1. Self intro Technical

Interview Preparation Tips

Round: Technical round
Experience: Computer skills

Round: Manager Round
Experience: Manager asked about experience and academics questions

I was interviewed before Oct 2016.

Interview Questionnaire 

1 Question

  • Q1. 1. Self introduce. 2. Can do night shift 3. Can go Jaipur if needed 4. Why appoint you 5. What you give to company 6. Some financial question (bookish)

Interview Preparation Tips

Round: HR Interview
Experience: After hr round, then aptitude test which was simple to crack, then operations manager interview, then they keep me waiting till 9 pm to declare That I am selected.
Tips: Go for 11 & 12 class financial management or finance book
Go through about share, debenture, mutual fund, banking system etc.

Round: Test
Experience: Aptitude is easy to crack and at last you have to write essay.
Duration: 1 hour
Total Questions: 60

Interview Questionnaire 

1 Question

  • Q1. They will ask about basic Google and YouTube process

Interview Preparation Tips

Round: Group Discussion
Experience: We have to be good in communication skill .as well as they expect us to be more confidential behaviour

Round: Telephonic client round
Experience: They will ask you behavioural questions simply like spell it name , and process based some questions

I was interviewed before Nov 2016.

Interview Questionnaire 

2 Questions

  • Q1. Simple question name and all
  • Q2. Why u want to join wipro
  • Ans. 

    I want to join Wipro because of its reputation for innovation and career growth opportunities.

    • Wipro is known for its cutting-edge technology solutions

    • I am impressed by Wipro's commitment to employee development

    • I believe Wipro will provide me with a challenging and rewarding work environment

  • Answered by AI

Interview Preparation Tips

Round: HR Interview
Experience: I got selected. And called to the office. For documentation. And then after a day I received one more call from higher authority for another interview. But it was a telephonic one. Next day I received call to come and collect offer letter
Tips: Be confident. Try to be normal. Do not show off much. English communication should be good.

Interview Questionnaire 

7 Questions

  • Q1. Say something about yourself?
  • Q2. Asked on college project
  • Q3. Which programming language do you know?
  • Ans. 

    I know multiple programming languages including Java, Python, and C++.

    • Proficient in Java with experience in developing web applications using Spring framework

    • Familiar with Python for data analysis and machine learning

    • Experience in C++ for developing high-performance applications

    • Also familiar with HTML, CSS, and JavaScript for front-end development

  • Answered by AI
  • Q4. What is class, encapsulation and other feature of OOP?
  • Ans. 

    Class is a blueprint for creating objects, encapsulation is the process of hiding data and methods within a class.

    • Class is a template or blueprint that defines the properties and behaviors of an object.

    • Encapsulation is the process of bundling data and methods together within a class, hiding the internal details from the outside world.

    • Other features of OOP include inheritance, polymorphism, and abstraction.

    • Inheritance a...

  • Answered by AI
  • Q5. Write a program to find the sum of the squares of each term of Fibonacci series
  • Ans. 

    Program to find the sum of squares of each term of Fibonacci series

    • Generate Fibonacci series using loop or recursion

    • Calculate square of each term

    • Add all squares to get the sum

  • Answered by AI
  • Q6. What can I do for you?
  • Q7. Why would you like to join Cognizant?
  • Ans. 

    I would like to join Cognizant because of its reputation as a leading global technology and consulting company.

    • Cognizant has a strong presence in the industry and is known for its innovative solutions.

    • I am impressed by Cognizant's commitment to digital transformation and its ability to deliver value to clients.

    • The company offers excellent career growth opportunities and a supportive work environment.

    • Cognizant's diverse...

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Questions were simple but demanded faster solving ability especially the Quantitative ability section.
Tips: Solve every bit of R.S.Aggarwal for Aptitude problems. www.indiabix.com is a good site to solve questions from all the sections.
Duration: 90 minutes

Round: Interview
Experience: Started with self description to explaining what projects I was involved in. Talked about my role in the project. Then answered questions from C++ programming language and then wrote the program that the interviewer gave me to do.
Tips: Be Confident. Have the problem solving & "Yes I can Do" attitude. Go with a open mind. Listen to the interviewer carefully. Do not stammer. Keep yourself calm and cool. Be honest.

Round: Interview
Experience: Faced normal questions
Tips: Be confident & keep smiling. Keep track of your body language. Be fluent in speaking English.

General Tips: Be confident and a "can do" attitude will help you grab the job.
Skill Tips: """"
Skills: Communication Skill, Proficiency in English, Basic Computer Progamming Knowledge, Learning ability, Aptitude
College Name: IIT Madras

Skills evaluated in this interview

Interview Questionnaire 

5 Questions

  • Q1. Based on a situation
  • Q2. Write a .small C code
  • Ans. 

    A C code that prints out the elements of an array of strings.

    • Declare an array of strings

    • Use a loop to iterate through the array

    • Print out each element

  • Answered by AI
  • Q3. Simple puzzles about colored balls probability
  • Q4. What Is the probability of it raining today in Chennai?
  • Ans. 

    The probability of rain in Chennai today depends on various factors such as season, weather conditions, and location.

    • The probability can be estimated by analyzing the current weather patterns and historical data.

    • Factors such as humidity, temperature, and wind speed can affect the probability of rain.

    • Local weather forecasts and satellite imagery can also provide insights into the likelihood of rain.

    • The probability of ra...

  • Answered by AI
  • Q5. Find the probability that India will win the next Cricket World Cup
  • Ans. 

    It is impossible to accurately predict the probability of India winning the next Cricket World Cup.

    • Sports events are unpredictable and depend on various factors such as team performance, weather conditions, injuries, etc.

    • Past performance of the team and individual players can be considered, but it does not guarantee future success.

    • Other teams participating in the tournament also play a significant role in determining t...

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Fifty people appeared for the test out of which sixteen were shortlisted.

Round: Case Study Interview
Experience: How would you promote a newly launched product? What marketing strategies would you use? They asked very simple case studies.

Round: Technical Interview
Experience: Test was based on data analysis, mainly maths. The interview was to see how much 'C' and probability you know.
Tips: Customized preparation is must along with good CGPA.

Skill Tips: Work details about your internship helps!
Skills: General knowledge, Technical knowledge
College Name: IIT Madras

Skills evaluated in this interview

Interview Preparation Tips

Round: Test
Experience: Shortlist is done based on the result of the test conducted. The test consists of two parts basic quantitative skills and a short essay to test your English
Tips: Math and Puzzle solving skills are useful They were looking for people with good math skills and team player

Round: Interview
Experience: Interview was held in two rounds. No technical round is held. One should be prepared for basic HR questions, your understanding of your projects etc.
Tips: There is no technical round and no emphasis on technical background
Prepare for all the basic HR questions beforehand, write them down
Get to know your resume very well

College Name: IIT Madras

Interview Questionnaire 

1 Question

  • Q1. Basic HR questions, your understanding of your projects, biggest achievement so far??

Interview Preparation Tips

Round: Resume Shortlist
Tips: Get to know your resume very well, have a story for each of your resume point

Round: Test
Experience: Written test. Basic Quant and one short essay to test your English.

Round: Interview
Experience: They were looking for people with good math skills and team player.

Round: Interview
Experience: Prepare for all the basic HR questions beforehand, write them down. for core get your basic fundamentals perfect.
Tips: I started preparing for placements from Nov starting but starting early will be better.

General Tips: Prepare for all the basic HR questions beforehand, write them down. 
For core, get your basic fundamentals perfect.
Skills: Basic fundamentals
College Name: IIT-Madras

Publicis Sapient Interview FAQs

How to prepare for Publicis Sapient Consultant interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Publicis Sapient. The most common topics and skills that interviewers at Publicis Sapient expect are SAP BW.
What are the top questions asked in Publicis Sapient Consultant interview?

Some of the top questions asked at the Publicis Sapient Consultant interview -

  1. What is limit for no of arguments passed to functions? if limit is 10 den how t...read more
  2. There is 2 pot one red and one blue. one pot contains tressure. Two statement a...read more
  3. What is difference between Static and Global Vaiab...read more

Tell us how to improve this page.

Join Publicis Sapient Let's imagine the future together.

Consultant Interview Questions from Similar Companies

TCS Consultant Interview Questions
3.7
 • 57 Interviews
Atos Consultant Interview Questions
3.9
 • 25 Interviews
View all
Publicis Sapient Consultant Salary
based on 36 salaries
₹4.2 L/yr - ₹21.8 L/yr
12% less than the average Consultant Salary in India
View more details

Publicis Sapient Consultant Reviews and Ratings

based on 2 reviews

4.6/5

Rating in categories

4.2

Skill development

5.0

Work-life balance

4.6

Salary

4.6

Job security

4.6

Company culture

4.2

Promotions

4.6

Work satisfaction

Explore 2 Reviews and Ratings
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