Tip 1 : Do questions from Leetcode
Tip 2 : Revise basics of any Programming Language
Tip 3 : Go through low level System Design or OOP Design
Tip 1 : Mention your Projects
Tip 2 : Keep your Resume short and simple
The Interviewer started with Basics Java, Then he moved to some questions of Data Structures, asked question aboyt System Design, and finally from Backend and Frontend Technologies like Spring and Angular.
Problem regarding Type Casting
Tip 1 : go through basics of any Programming Language
Given a scenario, I had to design classes and methods by following OOPs Design Pattern
Tip 1 : Go through OOPs Design
Questions on REST APIs, MVC Architecture, Severs etc
Questions on Components and Services from Angular
Tip 1 : Go through the above Technologies
Problem asked from Data Structures, Projects mentioned on Resume and random questions from Resume



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?
Take a dummy node with null value, pointing to head of the LinkedList.
Take a next node pointing to head's next
Reverse the connection of head and dummy node and move all the three nodes

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?