Tip 1 : Practice Data Structure questions as much as you can. Also, be confident during the interview about your solution. For practice, you can prefer Coding Ninjas and Geeks For Geeks.
Tip 2 : Read About Previously asked questions by the company
Tip 1 : Keep it short. Mention the academic and professional projects you've done. Add your educational details properly with the percentage or CGPA obtained.
Tip 2 : Only write those things in the resume which you are confident of and keep practicing.
After the online test was cleared, we started getting interview invites. In this round 2 DSA questions , some questions on computer subjects, projects and past work were asked.



Let the given string be “(()())((”.
Here the valid parentheses substrings are: “()”, “()” and “(()())”. Out of these the longest valid string is “(()())” which has a length 6.
Scan the string from beginning to end.
If current character is '(',
push its index to the stack. If current character is ')' and the
character at the index of the top of stack is '(', we just find a
matching pair so pop from the stack. Otherwise, we push the index of
')' to the stack.
After the scan is done, the stack will only
contain the indices of characters which cannot be matched. Then
let's use the opposite side - substring between adjacent indices
should be valid parentheses.
If the stack is empty, the whole input
string is valid. Otherwise, we can scan the stack to get longest
valid substring as described in step 3.



A mapping from Digits to Letters (just like in Nokia 1100) is shown below. Note that 1 does not map to any letter.

Used backtracking to generate all possible combinations.
Explain Scheduling algorithms?
What is virtual memory?
What is Process Management and Device Management?
What are semaphores?
Tip 1 : Learn basic OS questions
Tip 2 : Go through all the previously asked Questions
In HR interview, he asked me what do I do apart from programming, about my past three years, what are my future plans, Strengths, Struggles.
What do you do apart from programming?
Tell me about your past three years.
What are my future plans and strengths?
What do you know about Publicis Sapient?
Tip 1 : Practice HR questions
Tip 2 : Be confident.
Tip 3 : Ask all your doubts about the company and compensation.

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?