Tip 1 : Read well the job profile, company background and skill requirements and prepare accordingly.
Tip 2 : Whatever topic you are preparing don't just study to finish the topic but study to understand it because interviewers often deep dive and ask questions, make sure you basics are getting cleared.
Tip 3 : Solve Aptitude questions, coding problems as much as possible.
Tip 1 : Write optimal yet powerful summary.
Tip 2 : Highlight your education,internships, projects, certifications.
Tip 3 : Do mention technologies in which you worked on in your internship, projects.
Tip 4 : If you don't have any internship/project(any one will work fine but both are big plus) done go and get some work done and make your hands dirty and then put it in your resume.
Tip 6 : Avoid writing long statements.
Tip 7 : Honesty is the best policy.
Round 1 was a coding round of 60 min which started around 5:30PM in which 2 problem statements were given. The questions were based on Array and linked list. The platform used for test was coding which was user friendly and which use to display number of test cases passed and some test cases were hidden.
This is a visualization of the Circular Linked List, represented by:
1 2 3 4 5 -1
The Circular Linked List before/after deletion may happen to be empty. In that case, only print -1.
All integers in the list are unique.
The order of elements in the resulting array is not important.
Let the array be [1, 2, -3, 4, -4, -5]. On rearranging the array such that all negative numbers appear before all positive numbers we get the resulting array [-3, -5, -4, 2, 4, 1].
This round was of technical interview and they asked me various concepts
They given me 2 table containing names of different cities and told me to apply left join on them.
1) Asked me about the Languages known.
2) OOPS concepts.
3) SQL concepts(joins, acid properties, sets etc) .
4) SQL queries(left join, conditional).
5) Testing fundamentals (white box, black box)
6) SDLC
Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
Which operator is used for exponentiation in Python?