Tip 1 : Stay Consistent and confident
Tip 2 : Ensure to face as many interviews as possible to get familiar with, understand the requirements of the role, and figure out where you're lagging.
Tip 3 : Practice 15-20 programming questions and 5-10 SQL questions weekly on Coding Ninja, etc
Tip 4 : Create at least two complete projects using DBMS, Rest APIs (implement filtering and pagination at least), and decorators (custom) and deploy if possible.
Tip 1 : Include framework and skills
Tip 2 : Don't put false things on resume



1. A word is a sequence of one or more lowercase characters.
2. Words are separated by a single whitespace character.
For the given string 'A' = “coding ninjas coding ninjas” and 'B' = “data structures and algorithms”, so both the word 'coding' and 'ninjas' are not present in string 'B' and occur two times each, but the word “coding” is lexicographically smaller than the word “ninjas”. So the answer is “coding”.



If a string has 'x' repeated 5 times, replace this "xxxxx" with "x5".
The string is compressed only when the repeated character count is more than 1.
The consecutive count of every character in the input string is less than or equal to 9.
The round was late at night as the interview panel has a member from other time zone as well.
The round was focused on evaluating software engineering skills with core programming skills.
It was conducted over a virtual call.
Create class and implement custom decorator for adding logging to a function. (Learn)



The order in which the groups and members of the groups are printed does not matter.
inputStr = {"eat","tea","tan","ate","nat","bat"}
Here {“tea”, “ate”,” eat”} and {“nat”, “tan”} are grouped as anagrams. Since there is no such string in “inputStr” which can be an anagram of “bat”, thus, “bat” will be the only member in its group.
This was managerial round and started with general introduction to overall experience. The round was at general timings over a virtual call.
The round had discussion over previous role, contribution, experience, ML, open source contribution.
Second Highest Salary. (Practice)



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?

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