Tip 1 : Practice as much as you can for SQL queries.
Tip 2 : Make Fundamentals Strong.
Tip 3 : Having experience in Web development is good.
Tip 1 : Have some projects on your resume
Tip 2 : Do not put false things on your resume.
Timing: 8pm to 11pm.
Contains Basic MCQ questions on Aptitude, English, CS Fundamentals, 2 Coding Questions.



The given singly linked list is 6 -> 5 -> 3 -> 4 -> 7 -> 1 -> 2

The modified linked list should have all even values in starting and odd values in the end.


If the string is āabcdā, then all possible substrings of size two are { āabā, ābcā, ācdā}.
Timing: 2:30pm to 3:30pm
It was a video call Round on Google meet.
2 Interviewers (1st one is Manager, 2nd one is Associate Engineer with 1.5 years of experience).
It contains 2 Basic Coding Questions.
Mostly the interview revolves around the Development part, SQL queries, and Basic CN questions like 3-way hand Shaking, What happened when you write google.com in your browser.


āSā = āaabcdā, āMā = 2, āAā = [0, 1]
After 1st operation i.e, reversing from [0, 4], āSā = ādcbaaā.
After 2nd operation i.e, reversing from [1, 3], āSā = ādabcaā.
Hence, the answer is ādabcaā.
You can use the stack for that or it can be solved by 2 pointers.


If you are asked to find the 7th prime number, itāll be 17 because the first 7 prime numbers are 2, 3, 5, 7, 11, 13, 17.
Try to solve the problem in O(N log log N) + O(N).
Timing: 11:00 am to 11:20 am on Google Meet.
Tell me about yourself.
Tell me about your previous work experiences.

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you remove whitespace from the start of a string?