Tip 1 : Practice consistently, even 1 question a day would work but being consistent is important
Tip 2 : Make a schedule and set an achievable target
Tip 3 : Do not over exhaust yourself in the beginning and burn your energy out altogether
Tip 1: Be honest about the things you write on your resume
Tip 2: Make an organized resume and keep it small and to the point.
Tip 3: Do not write in first person or use pronouns at all.
Timing: 12:30PM
2 coding questions were there along with aptitude questions



Given linked list is 1 -> 0 -> 2 -> 1 -> 2.
The sorted list for the given linked list will be 0 -> 1 -> 1 -> 2 -> 2.
Timing - 4PM
Questions on basics of OOPS were asked
Tip 1: answer succinctly
Tip 2: do not over explain if you don't have the knowledge
Tip 3: read about the questions and answers on this topic beforehand from various interview questions available online



String 'S' is NOT case sensitive.
Let S = “c1 O$d@eeD o1c”.
If we ignore the special characters, whitespaces and convert all uppercase letters to lowercase, we get S = “c1odeedo1c”, which is a palindrome. Hence, the given string is also a palindrome.
Timing - 5:15PM
Discussion on why I want to pursue this field
Tip 1: Answer honestly. The interviewer knows when you're lying to them
Questions related to my project
Tip 1: don't lie in your resume
Tip 2: revise throughly what you did in your project
Questions on what knowledge I have about computer technologies
Tip 1: read about various fields involved
Tip 2: know your subject and why you're pursuing that

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?