Tip 1 : Practice previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode. As a bonus you should practice by the interview experiences of the company that you are targetting.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.
Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.
It was a proper DSA Based round. Two problems from Data Structures were asked in this round. The interviewer asked me not to directly go for the optimal solution but to build the optimal solution by starting from the basic one.





N = 12, M = 3 and STR = ‘CODINGNINJAS’

There are three rows (‘M = 3’) in the zig-zag pattern. Row one contains ‘CNN’, row two contains ‘OIGIJS’, and row three contains ‘DNA’. After concatenating the three rows, we get the string ‘CNNOIGIJSDNA’. So, the answer is ‘CNNOIGIJSDNA’.
1. The string ‘STR’ consists of capital letters only (i.e., characters from ‘A-Z’).
This round was basically also based on DSA. I can say that the format for this round was exact same like the previous round. That means Two DSA Problems were given to solve in this round.



If there are any duplicates in the given array we will count only one of them in the consecutive sequence.
For the given 'ARR' [9,5,4,9,10,10,6].
Output = 3
The longest consecutive sequence is [4,5,6].
Can you solve this in O(N) time and O(N) space complexity?


A slot that has been counted as a perfect hit can never count as a pseudo-hit.
Original String = “RGYB” and Guess String = “YGRR”.
.png)
The second slot of both the guess and original matches, hence it’s a perfect hit. The guess string contains yellow, which is also present in the original string but not at the same slot as the guess slot. Hence it’s a pseudo hit. The guess string also contains two red slots, but the original string contains only one red which is also not at the same slot as the guess string; hence it is also a pseudo hit. Therefore total points will be 2+1+1= 4.
General discussions around my personality and then around working locations, preferences, salary, etc.
Introduce yourself
What do you know about SoftSuave?
Why do you want to join us?
What are your strengths?
What will be your reaction if you are asked to work overtime for few days?
What salary pay do you expect?

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