Tip 1 : Practice company specific questions
Tip 2 : Prepare Linked list for online assessment round point of view.
Tip 3 : Hash Map, String and Tree are most important topic in Interview.
Tip 4 : Interviewer will give more focus on Projects. So, be confident while explaining your project along with the flow chart of the project.
Tip 1 : Before Interview just go through your Resume and also Be prepared for Behavioural questions.
Tip 2 : Prepare well your projects and mention only those projects in which you are Confident.
Timing-Login time was in between 10AM to 2PM.
Environment was very good and coding platform was also nice.



Input : 1 -> 2 -> 3 -> 4 -> 'NULL' and 'K' = 2
Output: 1 -> 2 -> 4 -> 'NULL'
Explanation:
After removing the second node from the end, the linked list become 1 -> 2 -> 4 -> 'NULL'.

Step1 : Create an another array list (ans) and also a boolean visited array.
Step2 : Traverse from 0 to n. Check every ith element that it is kth element of array or not then,Mark every (i+1)th as true in visited array and insert that ith element from given aray list into the ans.
Step 3 : Again Traverse from 0 to n, add every non visited ith element (vis[i]==false) from the given aray list into ans
Step 4 : Convert the ans aray list into Linked list and return the head of Linked list.
Timing- 3pm to 4pm
On Google meet
Interviewer was very friendly.



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”.
I used linked Hashmap to store character and its frequency to maintain the order of character in linkedlist as in the same fashion of given string. Return the first highest frequency character with frequency.



If the given input string is "Welcome to Coding Ninjas", then you should return "Ninjas Coding to Welcome" as the reversed string has only a single space between two words and there is no leading or trailing space.
Created one string array st and split the given string on the basis of space.Now reversed the Every word in the string and print it.



• Fill any of the jugs entirely with water.
• Empty any of the jugs.
• Pour water from one jug into another till the other jug is full, or the first jug itself is empty.
In order to measure 2 litres from jugs of 4 and 6 litres we can follow the following steps-
• Fill 6-litres jugs to its maximum capacity.
• Pour water from 6-litres jug to the jug with 4-litres capacity.
• Pour water from 6-litres jug to the jug with 4-litres capacity.
Tip 1 : Stay calm and think deeply in all directions.
Timing- 3pm to 3:30 pm
Interviewer was Tech lead in byjus.he was very friendly and guide me like how can you make new features in your project.
This round was totally based on behavioural questions and SDLC so be prepared. Also you should well prepared with your project which you have mentioned in your resume.

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