Tip 1 : Go through interview experiences(platform where you find interview experience:- GFG, Coding Ninjas)
Tip 2 : Do DSA (Solve as many problems)
Tip 3 : Must know about projects that you have mentioned in resume
Tip 1 : Do not put false things on your resume.
Tip 2 : Resume should be in the correct format.
Questions asked by the interviewer:
1. Probability (Medium level)
2. Coding Problem (Easy) (Tips:- first give some brute force approach then move forward to optimized approach)
3. Questions from your projects that you mentioned in your resume.
3 Ants and Triangle
Collision doesn’t happen only in following two cases :
1) All ants move in counterclockwise direction.
2) All ants move in clockwise direction.
Since every ant has two choices (pick either of two edges going through the corner on which ant is initially sitting), there are total 23 possibilities.
Out of 23 possibilities, only 2 don’t cause collision. So, the probability of collision is 6/8 or 3/4 and the probability of non-collision is 2/8 or 1/4.



A substring is a contiguous segment of a string.
Step 1:- First I read the problem carefully
Step 2:- Then I wrote the code(Brute Force method)
Step 3:- Interviewer asked me to optimize the solution.
Step 4:- Then I gave the optimized solution(there is a simple logic behind the problem)

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
Which SQL clause is used to specify the conditions in a query?