Tip 1 : Be polite with everyone
Tip 2 : Be punctual at your interview. It is mandatory to be on time at a job interview
Tip 3 : Be prepared for your interview.
Tip 1 : Use simple words and action verbs.
Tip 2 : Make Your Contact Info Prominent - You don’t need to include your address on your resume anymore, but you do need to make sure to include a phone number and professional email address as well as other places the hiring manager can find you on the web, like your LinkedIn profile and Twitter handle.



Let the given array be [1,5,4,3,2] we swap index 1 with 4 i.e. 5 -> 2 and 2 with 3 i.e. 4 -> 3 to form the sorted array {1, 2, 3, 4, 5}.
The Interviewer asked me few Questions in this round and it lasted for 60-70 minutes. The questions are related to CS fundamentals
Difference between Mutex and Semaphores
Insertion and update queries for SQL.
Meaning of Virtual and friend keyword.
The Interviewer asked me 1 Coding Questions and few questions related to C++ basics in this round and it lasted for 40-50 minutes.



Consider the two strings 'P' = "abfyg" and 'Q' = "gabfy"
If we cyclically rotate String 'P' to the right once. The resulting string P becomes "gabfy" which is equal to String 'Q'.
Therefore it is possible to convert String 'P' to String 'Q'.
Example like string1=”lohel” and string2 =”hello” so by rotating string1 by 2 places we get string1 equal to string2 and we can return True in that case.
Difference between Macro and inline functions.
What is Smart pointer?
What is the difference between const char * and char *const

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