Tip 1 : Don't panic for attending interviews, be calm and gradually develop your coding skills.
Tip 2 : Practice logical problems daily.
Tip 3 : Do few real time projects if you are choosing specific domain.
Tip 1 : Have a one page resume
Tip 2 : Do not showcase your unknown skills
The first round was online MCQ followed by a separate coding MCQ and coding question. In the first round, mcq's were related only to aptitude and communication. Upon clearing the same, few were shortlisted and called for the first sub round which is related to programming. Basics of Java and SQL were the major questions. Few questions related to Operating Systems.



Consider ‘arr’ = [1,2,-2,-1], the largest value of ‘K’ is 2, since a negative of 2 is also present in the array. Hence, the answer is 2.

If the given string is:
abcadeecfb
Then after deleting all duplicate occurrences, the string looks like this:
abcdef
Step 1: use the string as per your decided logic.
Step 2: use the slicing and dicing concept to remove the adjacent letters.
Step 3: String with desires result is obtained.
Write an SQL query to fetch records that are present in one table but not in another table.
Tip 1: If SQL you can use MINUS operator.
Tip 2: If MYSQL you can use left join.
Tip 3: Either one with correct implementation will fetch the required result.
Write an SQL query to fetch the employee’s full names and replace the space with ‘-’.
Tip 1: Use the replace query.
Tip 2: Fetch/select the correct column.
It's more kind of a group discussion activity. But, it's entirely related to technical side. We were separated as 5 members for each team and given with a scenario to come up with a solution.
First, I made up my mind to get involved as a team. I initiated the team members to first understand the problem and then we all can discuss on it. Likewise, everyone came up with different ideas. We all discussed about our opinions and finally fixed to a solution and presented it.
This round was a personal HR round where my attitude and communication skills were tested. First, a self introduction. Secondly, few scenario based questions (what will you do if you encounter such kind of situation).
Your strengths and weaknesses
Where do you see yourself in 5 years?

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is recursion?