Tip 1 : Try practical example of each and every topic
Tip 2 : do daily at least one problem solving Questions from online coding platform
Tip 3 : try to create clone application of online platforms like Netflix ,uber ,Amazon ,flip kart etc
Tip 1 : Highlight important keywords in your resume that are related to your Technology
Tip 2 : Don't put things which you are not confident
Technology Knowledge and Problem Solving Capability



Each product can cross the integer limits, so we should take modulo of the operation.
Take MOD = 10^9 + 7 to always stay in the limits.
Can you try solving the problem in O(1) space?
Use two single For loops (Starting from Left and Right respectively)
First loop starts from left till end and will create product array till the length (without any element exclusion).
Second loop starts from end to left and will eliminate the current index product value from the product array for the current index. And It will also store the current index product value in the prod variable to be used in next index usage.
They asked first all basic theory Question on the technology you work and at the end given problem solving question



Consider an array of size six. The elements of the array are { 6, 4, 3, 5, 5, 1 }.
The array should contain elements from one to six. Here, 2 is not present and 5 is occurring twice. Thus, 2 is the missing number (M) and 5 is the repeating number (R).
Can you do this in linear time and constant additional space?
Sort the input array.
Traverse the array and check for missing and repeating.

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?