Tip 1 : Solve previously asked questions. It tells you about the level of questions that the company asks. Check glass-door reviews it will help you to know what kind of questions company ask
Tip 2 : Be real during the interview and don’t show off.
Tip 3 : Prepare for theory subjects like Object-Oriented Programming System, Database Management System, Computer networks, etc.
Tip 1 : You should have multiple projects on your resume
Tip 2 : Keep your resume simple.
Tip 3 : Any unwanted information on the resume leaves a bad impact on the interviewer.
Tip 4 : You should be prepared to explain anything that’s written on your resume.
Tip 5 : Keep it of 1 page and 2 pages only
This was coding round and was conducted on Cocubes platform. And in this round we got shortlisted because of our 10th and 12th scores.


If ‘N’ = 3 and ‘K’ = 4. Then all permutations for ‘N’ = 3 are “123”, “132”, “213”, “231”, “312”, “321”. So the 4-th permutation is “231”.


1. Choose any index i (0 <= i < n) and swap characters a[i] and b[i].
2. Choose any index i (0 <= i < n) and swap characters a[i] and a[n-i-1] .
3. Choose any index i (0 <= i < n) and swap characters b[i] and b[n-i-1] .
1. The number of changes you make after the preprocess move does not matter.
2. You cannot apply to preprocess moves to the String B or make any preprocess moves after the first change is made.
This was pen and paper round.This round contain few coding questions in which we have to solve atleast 2 questions correct to clear this round.





If the input string is "abbc", then all the possible palindromic substrings would be: ["a", "b", "b", c", "bb"] and hence, the output will be 5 since we have 5 substrings in total which form a palindrome.
A string is said to be a 'Palindrome' if it is read the same forwards and backwards.
For example, “abba” is a palindrome, but “abbc” is not.
A 'Substring' is a contiguous sequence of characters within a string.
For example, "a", "b", "c", "ab", "bc", "abc" are substrings of "abc".
This round is fully Technical interview which comprised of discussion on projects, internships and solving DSA problems.



Merge Sort Algorithm -
Merge sort is a Divide and Conquer based Algorithm. It divides the input array into two-parts, until the size of the input array is not ‘1’. In the return part, it will merge two sorted arrays a return a whole merged sorted array.

The above illustrates shows how merge sort works.
It is compulsory to use the ‘Merge Sort’ algorithm.

This was last round . The interviewer was very friendly.
Introduce yourself
What do you consider to be your greatest strengths and weaknesses?
Where you see yourself after 5 years?
Will you pursue higher education?
Tell me about your projects mentioned in your resume?
Tip 1 : Have confidence
Tip 2 : Be honest

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