Tip 1 : Learn one programming language extremely thoroughly.
Tip 2 : Practice aptitude and coding questions.
Tip 3 : Do atleast one major project and one minor project.
Tip 1 : One page resume is recommended for freshers.
Tip 2 : Keep your resume short and relevant.
Round 1 : Aptitude + Coding Test
Total 5 sections were there
90 mcqs and 2 coding questions



If the matrix is
0 2 4 1
4 8 3 7
2 3 6 2
9 7 8 3
1 5 9 4
Then answer is 47. As, Alice will collect coins 0+8+3+9+1 = 21 coins. Bob will collect coins 1+7+6+8+4 = 26 coins. Total coins is 21+26 = 47 coins.
Approach :We can generate any number using the combination of powers of 2.
1=2^0
2=2^1
3=2^0+2^1
4=2^2
5=2^2+2^0
The minimum number of denomination required are (log(N) base 2 ) + 1



Technical Round
This round primarily focused on the my technical knowedge and academic projects.



Solved by DP

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?