Tip 1 : good understanding of data structures and algorithms
Tip 2 : practising previous interview questions
Tip 3 : giving mock interviews
Tip 1 : short resume and need to have good projects
Tip 2 : Resume contains only things i am very good at
Started at morning around 9:00 Am, contains 20 Aptitude questions and 2 Ds and algo questions



'S' = "{}()".
There is always an opening brace before a closing brace i.e. '{' before '}', '(' before ').
So the 'S' is Balanced.
Tip 1: practice ds and Algorithms
Tip 2: have good understanding of logic
Tip 3: don't neglect basic model question for each data structure and algorithms



Tip 1: prepare good with recursion algorithms
Tip 2:dont do 200-300 problems, do proper systematic questions for each topic
Tip 3: clear the basics, have good problem set of dp for practice before exam
Oops and ds and algo
What is abstract?
Explain encapsulation?
Explain method overriding and method overloading?
What is inheritance and polymorphism?
Difference between abstract class and interface?
Tip 1: good grip on oops
Tip 2: revision before interview
Tip 3: self notes preparation



The given linked list is 1 -> 2 -> 3 -> 4-> NULL. Then the reverse linked list is 4 -> 3 -> 2 -> 1 -> NULL and the head of the reversed linked list will be 4.
Can you solve this problem in O(N) time and O(1) space complexity?
Tip 1: mock interview
Tip 2: practice explaining your code
Tip 3: learn pseudo code and try to be calm

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