Tip 1 : Students with good practice of java concepts are preferred. So study and code in java.
Tip 2 : Add at least 1 good project in your resume.
Tip 3 : They look for team players. So be confident with your answers and add achievements other than academics in your resume.
Tip 1 : Do not use the term "proficient" in your resume. Because the interviewer asks questions related to that area and if you are unable to answer that then it reflects unpreparedness. Instead, use the word "Intermediate" to depict your level of understanding of a particular skill.
Tip 2 : Add at least one good project in your resume and have good in-depth knowledge of the same. It increases your chances of selection
On the day of the test, the pre-placement talk was conducted in the morning from 9:00 am - 10:00 am. Later in the evening, the test was conducted at 6:00 pm. 10 minutes login window was given and all candidates were supposed to join before 6:10 pm.
It was a 75 minutes test with 2 coding questions and no MCQ's. Since all the students were giving the test from their home, the webcam was on during the entire duration for proctoring.
Around 90 students appeared for the online test and 20 were shortlisted for interviews.



In the below histogram where array/list elements are {2, 1, 5, 6, 2, 3}.
The area of largest rectangle possible in the given histogram is 10.
Tip 1 : I used a dp approach



'ARR[]' = [1, 2]
The size of the array is 2. So, the total number of permutations is 2! = 2. The possible permutations are [1, 2] (the array itself) and [2,1] where the position of element 1 in the original array is swapped with element 2 and vice-versa.
1. All the numbers in the array are unique.
2. You can return the answer in any order.
3. The original array is also a permutation of the given array.
:
This round started at 9:00 am and went till 2:00 pm. 20 candidates cleared the online assessment round to appear for this round (Technical interview round).
This round was also conducted virtually. The interviewer was more interested in the approach and asked several questions on Java. The interview started with an introduction and ended with the feedback of the interview.
20 candidates appeared fo this round and 8 were shortlisted for the final round.
We already had C language then what was the need to create C++?
What are the basic concepts/pillars of object-oriented programming?
Give real-life examples of Inheritance, polymorphism and abstraction.
Tip 1 : Study OOPS
Is Multiple inheritance possible in java?
How is it implemented in java?
Explain the concept of exception handling done in java.
What all projects you did at your internship?
What is the problem your project addressed and how you approached and solved that problem?
What technologies did you work on?
What is the key role of the technologies you used?
What is the difference between truncate, drop and delete?
Difference between UNIQUE and Primary Key. Which of these can be Null?
What all sorting algorithms you know?
What are their complexities?
Where does quick sort fail?
This was the final round - Core Value Interview Round.
8 candidates were shortlisted from the technical round to appear for this round of interview. This round started at 3:00 pm and went till 6:00 pm.
My interview was "Stress Interview". Started with Introduction and interviewer asked me about how I would handle a situation that he gave me.
7 Students cleared this round and received offer from Publicis Sapient.
Tell me about yourself
Tip 1 : Study about the company and profile. And ask relevant questions in the end when the interviewer asks you if you have any questions.
Tip 2 : Prepare answers to the standard questions like " Introduce Yourself".
Tip 3 : Be confident about your answers. Don't get nervous by looking at the interviewer as the interviewer will not give any indication of how they feel about your answer. They face will be emotion-less. Be prepared for this.

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you remove whitespace from the start of a string?