Tip 1 : Practice at least 20 questions from each topic.
Tip 2 : Must have complete Idea of project Written on Resume.
Tip 1 : Write technologies and projects which you are comfortable with.
Tip 2 : Keep it minimalistic.
10 am to 12:30 pm
Online proctoring



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.
simple loop for i to divide by n/5^i and count till n/5^i becomes zero.



The answer could be very large, output answer %(10 ^ 9 + 7).
First applied recursion using reccurance relative (n-1) * ( count(n-1) + count(n-2) ), Optimised further using Dp. Recursion solution was also getting accepted.



For the given string “CodingNinjas”: “Ninja” is a substring while “dinas” is a subsequence.
Applied sliding window and using Hashmap to count unique characters.
It was in afternoon 2pm.
platform was skype.
Write SQL query to fetch common data from two table.



The width of each bar is the same and is equal to 1.
Input: ‘n’ = 6, ‘arr’ = [3, 0, 0, 2, 0, 4].
Output: 10
Explanation: Refer to the image for better comprehension:

You don't need to print anything. It has already been taken care of. Just implement the given function.
Used two prefix sum arrays and for each block calculate water on each block.
Gave example and traversal of BFS and DFS
10 am
Video call
Why you want to join our company?
Where You see Yourself in 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?