Tip 1 : Good understanding OOPS
Tip 2 : Practice standard Ds and Algo questions
Tip 3 : Be confident
Tip 1 : Resume should be one page.
Tip 2 : Don't mention those things your not confident of
It was an online coding round at HackerRank.
Consider the array { 1, 1, 0, 2, 0 }.
For the given array the modified array should be {0,0,1,1,2} .
Arrays { 0, 0, 1, 2, 1 } and { 0, 0, 2, 1, 1 } are not the correctly reorganized array even if they have all the zero values pushed to the left as in both the arrays the relative order of non-zero elements is not maintained.
Can you solve the problem in linear time, and constant space?
I have used two pointer approach to solve it
Difference between Process and Thread.
What is multithreading?
I solved it previously, He was checking in my code. I explained him each lin
First 10 minutes started with the Introduction. Then he asked about my projects. He seemed interested in my projects and asked a lot of questions about them.
For arr[ ] = { 10, 20, 30, 40}, matrix A1 = [10 * 20], A2 = [20 * 30], A3 = [30 * 40]
Scalar multiplication of matrix with dimension 10 * 20 is equal to 200.
I give him recursive solution first, then coded dp solution
Design Instagram
1) Study System Design
2) Scale the system accordingly.
Basic questions like ACID properties.
Difference between mysql and sql etc
Why do you want to join the company?
Where do you see yourself in the next 5 years?
What are your strengths and weakness?
Be witty.
Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
Which is a DDL command in SQL?