Tip 1 : revise interview questions for each topic
Tip 2 : be prepared to be asked anything from your resume including projects
Tip 3 : while practising coding, use notepad instead of IDEs
Tip 1 : keep it to the point, 1 page resume is enough for a fresher
Tip 2 : add important links like LinkedIn profile, leetcode profile
2 coding questions
Afternoon test
Proctored



1. Trailing zeros in a number can be defined as the number of continuous suffix zeros starting from the zeroth place of a number.
2. For example, if a number X = 1009000, then the number of trailing zeros = 3 where the zeroth place is 0, the tenth place is 0, the hundredth place is 0.
3. ! means “FACTORIAL”. Factorial of a number is calculated by the product of the integer and all integers below it till 1.
4. Value of 0! is 1.
For a 0 to be present we need 2 and 5 in the product elements
Counted number of 2s ans 5s
Minimum of that would be the answer



Note: Since the number of ways can be very large, return the answer modulo 1000000007.
N=3

We can climb one step at a time i.e. {(0, 1) ,(1, 2),(2,3)} or we can climb the first two-step and then one step i.e. {(0,2),(1, 3)} or we can climb first one step and then two step i.e. {(0,1), (1,3)}.
Knew it would use dp and applied it to solve the question
Afternoon interview
I was asked OOPS, OS, DBMS, DS and Algo questions.
Questions around my project
Questions around my internships
1. What is Paging?
2. What is Segmentation?
Tip 1 : clarify question if you’re not sure
Just after interview, HR asked general questions like whether I am a team player etc
Where do you see after 5 years?

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?