Tip 1 : prepare for competitive programming
Tip 2 : know about standard algorithm
Tip 3 : must be good with dbms
Tip 1 : must have projects, which you can explain to them
Tip 2 : have things on resume, that you are totally certain about.
Timing: 10AM
Environment: great
Language options: C, C++, Java but not python
Asked about time complexity of algorithm, puzzles, DBMS, cutting edge technologies etc. What are indexes?
If you are given an array {1, 1, 0, 0, 1} then you will have to return the count of maximum one’s you can obtain by flipping anyone chosen sub-array at most once, so here you will clearly choose sub-array from the index 2 to 3 and then flip it's bits. So, the final array comes out to be {1, 1, 1, 1, 1} which contains five ones and so you will return 5.
Asked 1 standard algorithm
Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you create a function in JavaScript?