Tip 1 : solve real time codes
Tip 2 : write big queries
Tip 3 : clear your basic fundamentals in operating system and system design parts
Tip 1 : don't put false things
Tip 2 : keep resume short
In this mcq based round there were almost 30 questions including System design, data structures and algorithms, DBMS.
Data structures questions are all about pointers, string, oops and recursion
Tip 1 : clear your basics
Tip 2 : practice more codes
DBMS all about SQL and plsql. Ddl, dml and tcl based SQL MCQ.
Tip 1 : practice more queries
So coming to 2nd round of technical interview where I need to solve 3 codes within 40 minutes, this 3 codes bit easy for me



1. The array consists of only 3 distinct integers 0, 1, 2.
2. The array is non-empty.



Let us consider 'K' is 3, an element at index 4 in the sorted array, can be at indexes 1, 2, 3, 4, 5, 6, 7 in the given array, because the absolute difference of all these indices with 4 is at most 3.



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?
In 3rd round of technical interview, I was given 2 code of hashing algorithm and stacks



1. The sub-array of an array is a continuous part of the array.
2. Consider ‘0’ based indexing.
3. ‘k’ will always be less than or equal to ‘n’.
3. Don’t print anything, just return the integer array ‘count’.



Given ‘N’ = 3, ‘ARR’[] = 3, 2, 1.
The answer will be one because you can stack one over two over 3. Therefore only these can be inserted in the same tower.
So the last round was HR round
y salary discussion happened apart from that interviewer asked me about my previous company and project, and general questions they asked and she gave me also chance to ask questions about samsung company, it's work culture and work life balance these questions i asked

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?