Tip 1 : Learn DSA but keep revising it.
Tip 2 : Be consistent.
Tip 3 : First explore things, what you like and then once you have decide stick to it.
Tip 1 : Do not add any random things, and whatever is added in your CV, you should have knowledge of that.
Tip 2 : Use some good template to make CV , i used Overleaf .
IT was online test, we were given 2 days to complete the test however the duration of test was 90 mins.



For 'arr' = [ 1, 2, 3, 1, 2]. you need to return 1.
it was first interview round(online), the interviewer was friendly we chit chat initially 10 mins then she asked me some basic problems on string like reverse the string and some basic SQL on delete,update etc.
write a query to update in table "users" where a userId =10, increase his salary to 100K.
Tip 1 : Learn basic SQL + joins
Tip 2 : ask questions like table name, column name etc



If the given string is: STR = "abcde". You have to print the string "edcba".
Try to solve the problem in O(1) space complexity.
IT was last technical round, my current Manager took this round.



If 'N' is 5 and 'K' is 3 and the array is 7, 2, 6, 1, 9
Sorting the array we get 1, 2, 6, 7, 9
Hence the 3rd smallest number is 6.

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?