Tip 1 : Don't try to get involved in everything, for example, DSA, CP,ML,WebDev. Instead, choose one field and master that.
Tip 2 : Focus majorly on DSA as that would help in clearing the coding test and getting shortlisted in the interview. Then shift the focus on development and other stuff which are additional. In my opinion, if we have ample practice of DSA, are good with OOPS, OS and DBMS concepts and well versed with our resume, we are good to go.
Tip 3 : Don't have too many projects in resume, only have a few good ones and be very thorough with them.
For on campus opportunities, MOST(if not all) focus more on DSA and core concepts than projects and resume.
Tip 1 : Don't have too many projects, only have relevant and good 2 projects and be very thorough with them.
Tip 2 : Interviewers are smart people so it is recommended to not put any false things else you will get caught.



.



If the given list is {1 -> -2 -> 3} (which is sorted on absolute value), the returned list should be {-2 -> 1 -> 3}.
.
it was a mix of data structures, puzzles and core concepts.



1. The input string may contain the same characters, so there will also be the same permutations.
2. The order of permutation does not matter.
First he asked me the exact same problem, which I answered very quickly and then he added multiple conditions and tweaked the problem. I was able to answer most of them with a few hints from the interviewer.



‘?’ – matches any single character
‘*’ – Matches any sequence of characters(sequence can be of length 0 or more)
I struggled initially but was able to solve after a lot of hints.
Consider a rectangular cake with a rectangular section (of any size or orientation) removed from it. Is it possible to divide the cake exactly in half with only one cut?
I was grilled on DBMS concepts. Every word uttered had a counter question so be very careful with whatever you say.

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?