Tip 1: Be confident and calm, with a subtle smile during the interview.
Tip 2: Stay informed about emerging digital technologies.
Tip 3: Work on projects related to tech stacks like C/C++, etc.
Tip 1: Keep it short and crisp (preferably one page).
Tip 2: Mention at least two projects with a brief description.
One hard-level coding question with 50 test cases. The maximum time given was 4 hours. All test cases had to be cleared to proceed further.





1
11
202
3003
Held on the Samsung Knox meeting platform.
Asked a few questions on C/C++ memory management and pointers.
A few leadership questions.



1. INSERT(key, value): Inserts an integer value to the data structure against a string type key if not already present. If already present, it updates the value of the key with the new one. This function will not return anything.
2. DELETE(key): Removes the key from the data structure if present. It doesn't return anything.
3. SEARCH(key): It searches for the key in the data structure. In case it is present, return true. Otherwise, return false.
4. GET(key): It returns the integer value stored against the given key. If the key is not present, return -1.
5. GET_SIZE(): It returns an integer value denoting the size of the data structure.
6. IS_EMPTY(): It returns a boolean value, denoting whether the data structure is empty or not.
1. Key is always a string value.
2. Value can never be -1.
First(Denoted by integer value 1): Insertion to the Data Structure. It is done in a pair of (key, value).
Second(Denoted by integer value 2): Deletion of a key from the Data Structure.
Third(Denoted by integer value 3): Search a given key in the Data Structure.
Fourth(Denoted by integer value 4): Retrieve the value for a given key from the Data Structure.
Fifth(Denoted by integer value 5): Retrieve the size of the Data Structure.
Sixth(Denoted by integer value 6): Retrieve whether the Data Structure is empty or not.

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