Tip 1 : Practice at least 250 Questions
Tip 2 : Do atleast 2 projects
Tip 3 : Improve your communication skill.
Tip 1 : Have some projects on your resume.
Tip 2 : Do not put false things on your resume.
Timing: Morning 11 AM
How was the environment: The interview is on Microsoft Teams
Any other significant activity: No
How the interviewer was: The interviewer was friendly.



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.
I Use Recursion with backtracking.



We cannot use the element at a given index twice.
Try to do this problem in O(N) time complexity.
Brute Force Approach: Use 2 nested for loops.
Efficient App: Use HashMap to store all elements in a single traversal to find the solution.
Timing: Morning 11 AM
How was the environment: The interview is on Microsoft Teams
Any other significant activity: No
How the interviewer was: The interviewer was friendly.



Let the array = [ 4, 2, 1, 5, 3 ]
Let pivot to be the rightmost number.

I write the code for Quick Sort



I use Recursion and Backtracking to solve this problem
What happens when we hit a URL?
What is virtual memory?
Find 3rd Highest Salary (SQL)
Rest API
ACID properties
Tip 1: Read Galvin for OS thoroughly.
Tip 2: Do practice for SQL queries.

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?