Tip 1 : Basic Arrays question (Leetcode easy)
Tip 2 : Good knowledge of OOPS and DBMS concepts.
Tip 3 : Basic knowledge of core JavaScript concepts if applying for Frontend specifically React developer position.
Tip 1 : Must add your internship project and make sure you're able to explain the projects you did and any remarkable achievements if any.
Tip 2 : For developer roles make sure to add some good projects that you can easily explain for good 5-10 minutes and be ready for some cross questions regarding the tech stack you choose or any specific framework.
It was conducted early morning, around 9 am.
The entire CSE and IT batch appeared for the 1st round. So it was quite a crowded environment and the test was conducted in batches (questions were completely different though).
I only remember one of three problems asked in this round.



1) A prime number is a number that has only two factors: 1 and the number itself.
2) 1 is not a prime number.
Since the time constraint of 60 minutes was there for 3 problems I knew Sieve of Eratosthenes would do the job here and I coded for the same with an accumulator variable to count the number of prime numbers.
They are conducted in the afternoon after a break.
I had three interviewers sitting in front. One was the tech lead of Frontend, and the other two were from the Database and Machine Learning teams.
I would say the DB guy was quite jolly-minded, as he kept the overall environment light during those 30 minutes.
Wrote the functions for the same in Javascript.
1. For map i simply created an array inside and populated it with the result of callback function applied over each element.
2. For filter i checked the boolean value returned by callback function . If true then only add to the new Array.
3. For reduce i used an accumulator to store the result of callback from each iteration.
Late evening after 2 hours from the second round.
HR was quite friendly and made me understand the work culture over there and the kind of mentors you get.
It was a regular discussion regarding my internship experiences and my significant achievements.
1. How do you handle pressure during work ?
2. Any past achievement that you're proud of ?
Tip 1 : Be confident about your answers.
Tip 2 : The only thing that they check in this round is if you'll fit into their culture, so go through the website of the company once and prepare points accordingly.
Tip 3 : Don't boast a lot, keep it simple and short.

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?