Tip 1: Practice at least 100 questions on arrays and string manipulation.
Tip 2: Learn the concepts of computer networks thoroughly.
Tip 1: Highlight the projects you have worked on.
Tip 2: Highlight only the computer fundamentals subjects in which you have expertise.



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?



Suppose given input is "abacb", then the length of the longest substring without repeating characters will be 3 ("acb").
I was asked computer networks questions, 2 DSA questions, 1 OOPs question and some questions on the project.






Let ‘TREE’ be a binary tree. The lowest common ancestor of two nodes, ‘N1’ and ‘N2’, is defined as the lowest node in ‘TREE’ with ‘N1’ and ‘N2’ as descendants (where we allow a node to be a descendant of itself).

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