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

Updated 19 May 2022

Publicis Sapient Software Developer Intern Interview Experiences

1 interview found

I appeared for an interview before May 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 120 minutes
Round difficulty - Medium

It was in the morning. It had basic questions and 2 programming questions(1 string and 1 Data Structure)

  • Q1. 

    Character Pattern Problem Statement

    Generate a pattern based on the input number of rows N. Each row i should start with the i-th letter of the alphabet, and the number of letters in the row should match ...

  • Ans. 

    Generate a character pattern based on the input number of rows N, where each row starts with the i-th letter of the alphabet and contains i letters.

    • Create an array to store each row of the pattern

    • Iterate from 1 to N, for each row i, generate the string starting with the i-th letter of the alphabet and containing i letters

    • Add each generated string to the array

    • Return the array of strings as the output

  • Answered by AI
  • Q2. 

    Stack using Two Queues Problem Statement

    Develop a Stack Data Structure to store integer values using two Queues internally.

    Your stack implementation should provide these public functions:

    Explanation:

    ...
  • Ans. 

    Implement a stack using two queues to store integer values with specified functions.

    • Use two queues to simulate stack operations efficiently.

    • Maintain one queue for storing elements and another for temporary storage during push operation.

    • Ensure to handle edge cases like empty stack and maximum size limit.

    • Example: Push operation involves transferring elements from one queue to another before adding the new element.

    • Example...

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

My interviewer asked me about my projects and the concepts involved in making it. Then he asked me to solve a string problem which was not very difficult followed by basic questions on array and it's properties. He also asked HTML tags.

  • Q1. 

    Reverse the String Problem Statement

    You are given a string STR which contains alphabets, numbers, and special characters. Your task is to reverse the string.

    Example:

    Input:
    STR = "abcde"
    Output:
    "e...
  • Ans. 

    Reverse a given string containing alphabets, numbers, and special characters.

    • Iterate through the string from the end to the beginning and append each character to a new string.

    • Use built-in functions like reverse() or slicing to reverse the string.

    • Handle special characters and numbers while reversing the string.

    • Ensure to consider the constraints on the input string length and number of test cases.

  • Answered by AI
Round 3 - HR 

Round duration - 150 minutes
Round difficulty - Easy

This round for Sapient was based on it's core values and how I've implemented these once or more in life. It mostly involved discussion around my leadership, team player, problem solving and innovative skills as a part of the clubs in college. Also, what are my expectations from Sapient and what I bring to them

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - Intern in GurgaonEligibility criteriaAbove 6 CGPA, 60% in 12th and 10thPublicis Sapient interview preparation:Topics to prepare for the interview - Strings, Arrays, Stack, Queue, Basics of HTML, Basics of CSS, OOPSTime required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : Be confident, clear and calm with the answers during interview
Tip 2 : Practice coding questions on based on different difficulty
Tip 3 : Prepare the topics thoroughly the questions might not be tough but they would be based on the core concept
Tip 4 : You should have at least 2 projects - JAVA and database related or Data Analytics

Application resume tips for other job seekers

Tip 1 : Projects are mandatory you can steer the interview in that direction
Tip 2 : Resume should only have what you actually know and did
Tip 3 : Add extra-curriculars (for Sapient it really matters if you have incidents related team building, leadership, conflict resolution experiences)

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview questions from similar companies

Interview Preparation Tips

Round: Resume Shortlist
Experience: I had a standard resume for this company as per our institute placement cell norms.
I usually changed my “Areas of Interest” as per the company profile. For Headstrong I mentioned subjects that dealt with coding and data structure.

Round: Test
Experience: First round was a written test containing 90 aptitude based questions and the time allotted for the same was 90 minutes. Questions were of high difficulty level; most of the questions based on probability, permutation and combination. 40 people were shortlisted out of the 180 applicants.
Duration: 90 minutes
Total Questions: 90

Round: Group Discussion
Experience: In Group Discussion there were 11 people in my group. The topic for the discussion was the “impact of family drama daily soaps (saas bahu serials) on the society”. Almost all of us agreed to the fact that these serials were sending wrong message to the society. They were interested in students who were expressive. 3 people got selected from my group.

Round: Technical Interview
Experience: The first round was a technical interview. Questions related to my family and areas of interest were also asked though. Questions related to C++ were asked and the topic of data structure was their main focus. They asked me questions on linked list and other forms of data structure. Finally they asked few general puzzles too. This interview continued for around 20 minutes.

Round: HR Interview
Experience: In the HR interview, questions were asked on why they should choose me and why I had opted for Headstrong. They also asked which location I would prefer for the job. They wanted someone who would be comfortable with any location whether it be south or north India. This last interview was small and lasted around 5-10 minutes.
Tips: Preparation of puzzles foe the interview would be beneficial.

College Name: IIT ROORKEE
Motivation: Most information regarding the company was obtained by attending the pre placement talk. The company did not check much about our knowledge related to the company but were more concerned with our technical knowledge.

I applied via Approached by Company and was interviewed before May 2018. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Core Java questions except multi threading. New features in java 8. Basic spring boot questions. Sorting algorithm. Comparable and comparator interface. Focus on core java
  • Q2. Core java. Custom hasmmap implementation.

Interview Preparation Tips

General Tips: Focus on core java.
Skills: Problem Solving, Analytical Skills
Duration: <1 week

I applied via Naukri.com and was interviewed before Nov 2020. There were 3 interview rounds.

Interview Preparation Tips

Interview preparation tips for other job seekers - don't be afraid be positive during the interview, Make eye contact of interview person then they feel u have manage any critical incident occurring work place.

Interview Questionnaire 

10 Questions

  • Q1. Sql command for creating a table
  • Ans. 

    SQL command for creating a table

    • Use CREATE TABLE statement

    • Specify table name and column names with data types

    • Add any constraints or indexes as needed

  • Answered by AI
  • Q2. Sql command for inserting details in table,changing them and deleting specifics ones
  • Ans. 

    SQL commands for inserting, updating, and deleting data from a table.

    • INSERT INTO table_name (column1, column2, column3) VALUES (value1, value2, value3);

    • UPDATE table_name SET column1 = new_value1 WHERE condition;

    • DELETE FROM table_name WHERE condition;

  • Answered by AI
  • Q3. Difference between truncate and drop
  • Ans. 

    Truncate and drop are SQL commands used to remove data from a table.

    • Truncate removes all data from a table but keeps the structure intact.

    • Drop removes the entire table and its structure.

    • Truncate is faster than drop as it only removes data.

    • Drop cannot be undone while truncate can be rolled back.

    • Truncate resets the identity of the table while drop does not.

    • Examples: TRUNCATE TABLE table_name; DROP TABLE table_name;

  • Answered by AI
  • Q4. Difference between c and c++
  • Ans. 

    C++ is an extension of C with object-oriented programming features.

    • C++ supports classes and objects while C does not.

    • C++ has better support for polymorphism and inheritance.

    • C++ has a standard template library (STL) while C does not.

    • C++ allows function overloading while C does not.

    • C++ has exception handling while C does not.

  • Answered by AI
  • Q5. Tell me abt yourself
  • Ans. 

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

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

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

    • I am proficient in Java and Python programming languages.

    • I have experience with frameworks such as Spring and Django.

    • I am familiar with databases such as MySQL and MongoDB.

  • Answered by AI
  • Q6. Why interest in IT line
  • Ans. 

    I have always been fascinated by technology and its ability to solve complex problems.

    • I enjoy problem-solving and logical thinking

    • I have a natural curiosity for how things work

    • I see the potential for technology to make a positive impact on society

    • I have experience in programming and find it rewarding

    • I am excited about the constant innovation and evolution in the IT industry

  • Answered by AI
  • Q7. What r ur strengths and weakness
  • Ans. 

    My strengths include problem-solving, adaptability, and teamwork. My weakness is public speaking.

    • Strengths: problem-solving, adaptability, teamwork

    • Examples: I have successfully solved complex coding problems, adapted to new technologies quickly, and collaborated effectively with team members.

    • Weakness: public speaking

    • Examples: I get nervous when speaking in front of large groups, but I am working on improving my present

  • Answered by AI
  • Q8. Why should we select you
  • Ans. 

    I have the technical skills, experience, and passion to excel in this role.

    • I have a strong background in software development, with expertise in multiple programming languages and frameworks.

    • I have experience working on complex projects and collaborating with cross-functional teams.

    • I am passionate about staying up-to-date with the latest technologies and trends in the industry.

    • I am a quick learner and adaptable to new ...

  • Answered by AI
  • Q9. Discussed abt my test results(positive and negatives)
  • Q10. He asked about my hometown,mathura and near around area

Interview Preparation Tips

Round: Technical Interview
Experience: technical interview was easy if u know basics of sql and c++.
Tips: try to achieve good marks in the test
sneek out for your marks in technical and aptitude test results in interviewer's hands it will help u make ur mind of the level u need to give to get the job, as few students with low scores also got the job but they had tough interviews

Round: HR Interview
Experience: experience of this round was very cool, interviewer started asking with basic questions . i focussed on my strengths, accepted my weaknesses, used the good result in test in conversation that helped, give an insight about hometown places when he asked. i was little bit nervous and my english was not sounding good enough at that time.
Tips: focus on your --1. communication skills
2. english
be calm,
be prepared for basic questions

Skill Tips: be smart enough to focus/direct the conversation in ur favour
some students with zero technical knowledge cleared the technical interview with this skill
Skills: communication skills, english fluency,
College Name: NIT AGARTALA

Skills evaluated in this interview

I appeared for an interview before Sep 2016.

Interview Questionnaire 

13 Questions

  • Q1. Tell me about yourself
  • Ans. 

    I am a software engineer with 5 years of experience in developing web applications using Java, Spring, and Angular.

    • 5 years of experience in software development

    • Proficient in Java, Spring, and Angular

    • Strong problem-solving skills

    • Experience working in Agile development environment

    • Bachelor's degree in Computer Science from XYZ University

  • Answered by AI
  • Q2. Tell about your projects you did
  • Ans. 

    I have worked on various projects including a web application for inventory management and a mobile app for task tracking.

    • Developed a web application using React for inventory management

    • Created a mobile app using Flutter for task tracking

    • Implemented RESTful APIs for communication between frontend and backend

    • Utilized databases like MySQL and MongoDB for data storage

  • Answered by AI
  • Q3. How do you rate yourself
  • Ans. 

    I rate myself as a highly skilled and experienced software engineer.

    • I have a strong understanding of various programming languages and technologies.

    • I have successfully completed multiple projects, showcasing my problem-solving abilities.

    • I continuously strive to learn and improve my skills in the ever-evolving field of software engineering.

  • Answered by AI
  • Q4. Some RTOS questions
  • Q5. Swipe 2 numbers with 3rd variable
  • Ans. 

    Swapping two numbers using a third variable in a software engineering interview.

    • Declare a third variable to store the value of one of the numbers

    • Assign the value of the first number to the third variable

    • Assign the value of the second number to the first number

    • Assign the value of the third variable to the second number

  • Answered by AI
  • Q6. Swipe 2 numbers without 3rd variable
  • Ans. 

    Swapping two numbers without using a third variable.

    • Use the XOR operation to swap the numbers.

    • Assign the first number to the second number using XOR.

    • Assign the result of XOR operation to the first number.

    • The numbers are now swapped without using a third variable.

  • Answered by AI
  • Q7. Function pointer
  • Q8. Structure usage
  • Q9. Union usage
  • Q10. Pointers
  • Q11. Tell about you
  • Ans. 

    I am a software engineer with 5 years of experience in developing web applications using Java, Spring Boot, and Angular.

    • 5 years of experience in software development

    • Proficient in Java, Spring Boot, and Angular

    • Strong problem-solving skills

    • Experience working in Agile development environment

    • Passionate about learning new technologies

  • Answered by AI
  • Q12. Why bosch
  • Ans. 

    Bosch is a global leader in technology and innovation, offering exciting opportunities for growth and development.

    • Bosch has a strong reputation for quality and innovation in the technology industry.

    • The company offers a wide range of products and services, providing diverse opportunities for software engineers.

    • Bosch values employee development and offers a supportive work environment.

    • Working at Bosch allows for collabor...

  • Answered by AI
  • Q13. What if you don't get this job
  • Ans. 

    I will continue to search for other job opportunities and improve my skills.

    • I will actively search for other job opportunities in the software engineering field.

    • I will continue to improve my skills and knowledge through self-study, online courses, and personal projects.

    • I will network with professionals in the industry and attend relevant events or meetups.

    • I will consider freelance or contract work to gain more experien...

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: online aptitude test
Tips: basic aptitude questions + English grammer
Duration: 1 hour
Total Questions: 60

Round: Technical Interview
Experience: basic C question along with basics of electronics
Tips: stay positive, don't blabber, say u don't know if you don't, better to stay no than giving wrong answer

Round: HR Interview
Experience: if you are at this level that means yo are through they generally don't reject anyone
Tips: be true and psitive

Skills: C, RTOS, Electronics
College Name: VIT university

Skills evaluated in this interview

I appeared for an interview in Jun 2017.

Interview Questionnaire 

2 Questions

  • Q1. What is use of OOO programming?
  • Ans. 

    Object-oriented programming (OOP) is a programming paradigm that uses objects to represent and manipulate data.

    • Encourages modular and reusable code

    • Provides a clear structure and organization to the code

    • Allows for easier maintenance and updates

    • Supports code reusability through inheritance and polymorphism

    • Enables encapsulation, hiding the internal details of an object

    • Promotes code extensibility and scalability

    • Facilitates...

  • Answered by AI
  • Q2. Why do you want to join ATOS?
  • Ans. 

    I want to join ATOS because of their reputation for innovation and their commitment to employee growth and development.

    • ATOS is known for its innovative solutions in the software development industry.

    • I am impressed by ATOS's focus on employee growth and development through training programs and career advancement opportunities.

    • ATOS has a strong reputation for delivering high-quality software solutions to its clients.

    • I b...

  • Answered by AI

Interview Preparation Tips

Round: Technical Interview
Experience: He asked about technical topics and I gave answer with example.
Tips: Be ready with what you have written in CV with real scenario.

Round: HR Interview
Experience: She asked about reason to join, why leaving previous comp.etc
Tips: Explain your ambition and this company will provide me opportunities to fulfill those. Be realstic in answer. Should know about the company.

Interview Questionnaire 

8 Questions

  • Q1. Pl/sql
  • Q2. C programs
  • Q3. Switch case programs
  • Q4. Optimizing them again
  • Q5. Java
  • Q6. About yourself
  • Q7. If i would comply with all norms and conditions of company
  • Q8. As to where i see myself and what would differentiate me in next few years
  • Ans. 

    I see myself as a senior software engineer leading innovative projects and mentoring junior developers.

    • Continuously improving my technical skills through training and certifications

    • Taking on more leadership responsibilities within the team

    • Contributing to open-source projects to expand my network and knowledge

    • Mentoring junior developers to help them grow in their careers

  • Answered by AI

Interview Preparation Tips

Round: Resume Shortlist
Experience: Indeed, being a person known for my communication skills in college days wished to have a resume, setting me out of the queue. It was not easy though ,as to write something so brief yet which had a strong impact on others. Take help from your teachers, the one taking your communicative skills classes.
Tips: The most important of all,,Take at most attention to what you platter on someone for the first time. No one wants a dull person working in adding on nothing but pounds on themselves. Showcase the best of you....

Round: Test
Experience: Elitmus, it's really tough to crack. Especially the Reasoning, try and focus to prepare as if to prepare for an MBA admission. The level would be no lessor than that.
Tips: One needs to work real hard to compete. That's the only option. It's the only way you had to get on the first step correctly.
Duration: 120 minutes
Total Questions: 60

Round: Group Discussion
Experience: Good ,as always. Was bit nervous, after seeing such a crowd and as it was my first off-campus experience . People were friendly and only ladies from my company who were not very old but enough to judge one by just looking at them. They were closely monitoring each and every activity in there.
Tips: Be yourself, Don't panic at all. You just need to stick on your point of  view and never ever contradict any of your statement.
Duration: 15 minutes

Round: Technical Interview
Experience: Had two technical rounds, the first one which went about 1hr 30 mins. Many questions starting from C to Java. In-fact it's better to say the lady wanted to know all what i have done in college. Was even asked about my last semester results and project.
Tips: No way out, just be prepared to the level of any possible question one can ask.

Round: HR Interview
Experience: The HR was busy going through all papers he had. Even not looking at me for once. But i went on answering even to smallest he asked or confirmed. It was good overall but different as to relate someone not even listening you.
Tips: Go on with a good pitch. Using the good highlights from your life and yourself.

General Tips: Never loose heart if you are rejected anytime. As it's for the best&#44; believe me.
Skill Tips: Prepare things well and before time. Try to main a set of handout which would really be helpful while you travelling from one place to another.
Skills: communication , technical, thought process
College Name: GANDHI INSTITUTE OF ENGINEERING AND TECHNOLOGY
Motivation: Being placed during on campus&#44; but not satisfied with package and what i was offered. Came to a place like Bangalore from GIET, Gunupur where life is so fast. It was not easy, mind you a lot people around would de motivate you. But just don't get affected easily ,as to this is what my experience all over this tells. 
I was just stunned when i saw the official website of CGI.
Funny Moments: Was not really funny but would share &#44;as i smile to those now. Not being selected by TCS and my roommate, girls in hostel making fun of  the optimistic approach i had with life.

Interview Preparation Tips

Round: Test
Experience: In the first round there was an online test. Questions were from aptitude, general English and a simple code( very simple if you have programming skills).
Tips: It was purely a knowledge based round so everything depends on your preparation level and a bit confidence.

Round: Technical Interview
Experience: In technical round interview the process was like this...
I entered in room and greeted interviewer and he asked me to sit down. I handed over my resume to him. His first question was tell me about yourself. Then my projects. After that he came on programming, He asked me very basic concept about C++. Questions were like what is polymorphism, What is encapsulation. He also asked program of fibonacci series. After all these question he again looked at my resume and asked me 'why your CGPA is low?' I said that when i was in my first year i had interest in electronics but later when i encountered with programming i decided to have my career in this field so i could not concentrate on my core subjects.
Tips: C++ is '''''must''''' for Virtusa if you are from electronics . I didn't know data structure but c++ was on my fingers. Answer question with confidence.

Round: HR Interview
Experience: HR interview was really cool. Interview asked me about myself, my family, real life applications of my project. After that he came on real stuff. He asked question like why do you want to join virtusa? I said virtusa is this .. virtusa is this.....and many more..and in last i said this is i want to join virtusa. Next question was ' what do think about dowry?'. At first i was surprised to hear this question but i realized that interview only want to check my ability to speak on random topic. I answered the question by criticizing dowry and he was pleased to hear my answer. After one or two general HR question like location preference , he told me that your interview is over please wait outside for result. It was really nice to meet you . Thank you.
Tips: Never stop speaking in HR interview. They only check your ability to speak on random topics and their general HR question. I was continuously speaking ...please do not bother about grammar while speaking ...just speak with confidence(relevant).

General Tips: prepare c , c++ and ability to speak in front of interviewer.
Skills: Basic Coding, Aptitude, 1)communication
College Name: NIT Jalandhar

Interview Preparation Tips

Round: Resume Shortlist
Experience: 4 years og experience

Tell us how to improve this page.

Join Publicis Sapient Let's imagine the future together.

Interview Questions from Similar Companies

Genpact Interview Questions
3.8
 • 3.2k Interviews
DXC Technology Interview Questions
3.7
 • 802 Interviews
Nagarro Interview Questions
4.0
 • 762 Interviews
NTT Data Interview Questions
3.8
 • 627 Interviews
GlobalLogic Interview Questions
3.6
 • 591 Interviews
UST Interview Questions
3.8
 • 517 Interviews
CGI Group Interview Questions
4.0
 • 492 Interviews
View all
Publicis Sapient Software Developer Intern Salary
based on 4 salaries
₹2 L/yr - ₹30 L/yr
71% more than the average Software Developer Intern Salary in India
View more details

Publicis Sapient Software Developer Intern Reviews and Ratings

based on 4 reviews

3.6/5

Rating in categories

3.5

Skill development

4.5

Work-life balance

3.6

Salary

2.5

Job security

3.6

Company culture

3.2

Promotions

3.2

Work satisfaction

Explore 4 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
641 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.8
Compare

CGI Group

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