Tip 1: Practice at least 300 medium to hard coding questions.
Tip 2: Have thorough knowledge about your role in the project.
Tip 3: Prepare one system design question.
Tip 1: Include only your latest project on your resume.
Tip 2: Mention your extracurricular activities on your resume.
There were 2 coding questions: one easy and one medium level, and 30 aptitude MCQ questions.



The given linked list is 1 -> 2 -> 3 -> 4-> NULL. Then the reverse linked list is 4 -> 3 -> 2 -> 1 -> NULL and the head of the reversed linked list will be 4.
Can you solve this problem in O(N) time and O(1) space complexity?



Do not print anything, just return the number of set bits in the binary representation of all integers between 1 and ‘N’.
Started off with an introduction. Then, the interviewer asked about my projects. Moving on, he asked the basics of bit manipulation, and then he asked me 2 DSA problems.







Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is the purpose of the return keyword?